Florin Marcus
Florin Marcus

Reputation: 1657

I can't find a class API DOC reference for tensorflow

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

Answers (1)

Corbie
Corbie

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

Related Questions