List-of-Differentiable--OPs-and-Non-differentiable-OPs--in-Tensorflow icon indicating copy to clipboard operation
List-of-Differentiable--OPs-and-Non-differentiable-OPs--in-Tensorflow copied to clipboard

How to find the equivalents of python/keras api functions

Open drewm1980 opened this issue 5 years ago • 0 comments

Note for python tensorflow API users... to find the tensorflow equivalent class names, you can search for them in tensorflow/python/ops/array_ops.py, and look for which tensorflow operator it is getting mapped to for your arguments. Often this can be a constant, or not. In my case, where_v2 maps to select_v2, which is probably SelectV2, which shows up in the output.

$ rg Select DIFFERENTIABLE LIST.txt 283:"Select"

README.md 308:"Select" \

DIFFERENTIABLE.TXT 220:"Select" 221:"SelectV2"

There are probably operators that are differentiable, or not, depending on the arguments.

drewm1980 avatar Aug 20 '19 10:08 drewm1980