Shape of Tensor - Python for Integrated Circuits - - An Online Book - |
||||||||
Python for Integrated Circuits http://www.globalsino.com/ICs/ | ||||||||
Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix | ||||||||
================================================================================= The shape of a tensor indicates the number of values in each dimension: Two conventions for shapes of images tensors are: The TensorFlow machine-learning framework places the color-depth axis at the end: (samples, height, width, color_depth). Theano places the color depth axis right after the batch axis: (samples, color_depth, height, width). The Keras framework provides support for both formats. ============================================
|
||||||||
================================================================================= | ||||||||
|
||||||||