12

In many tensorflow tutorials (example) "towers" are mentioned without a definition. What is meant by that?

VividD
  • 636
  • 7
  • 18

2 Answers2

8

According to tensorflow documentation about CNN,

The first abstraction we require is a function for computing inference and gradients for a single model replica. In the code we term this abstraction a "tower".

To get the relevant context and more, check this.

Hima Varsha
  • 2,316
  • 14
  • 34
1

I found the following definition from ML glossary here intuitive:

Tower - A component of a deep neural network that is itself a deep neural network without an output layer.

hinson
  • 11
  • 1