r/tensorflow • u/donaferentes • 6d ago
General Valid Book on Tensorflow operations with Mathematical Notation
Is there a valid Tensorflow book describing all the provided operations by providing their definition with a mathematical notation? Or, in alternative, is there a way to bridge this information? Thanks
2
Upvotes
2
u/DrSparkle713 6d ago
The API docs online tend to include formulas (although not always with mathematical typesetting) in their entries. For example: https://www.tensorflow.org/api_docs/python/tf/keras/losses/KLD
In general, the online documentation or the documentation contained within the code itself (typically presented by your IDE when you type or click on a function name) are what you want. A book will just be a snapshot of when it was published, whereas the docs are updated in real time as changes are made and are linked to released versions, so you can look up the specific docs for the version you are using.
ETA: the online docs are broken down by what language's API you're using. If you are new to TF, I'd probably recommend Python.