Reputation: 1657
I am struggling to find the API for a particular class in tensorflow. For example, I am interested in finding the specs for this class:
tensorflow.python.framework.ops.EagerTensor
Sorry if this sounds as a stupid question.
Upvotes: 0
Views: 19
Reputation: 1066
Tensorflow is not that well documented yet. The docs are generated from the comments (the project is hosted at GitHub) and in your case, there are none.
For insights like that, you will have to read the source code.
Upvotes: 1