Open
Description
After reviewing tf.*
methods, It seems that we miss a lot of generated functions that are available in other classes like gen_ops
, ops
, variable_scope
, control_flow_ops
.
From my understanding, the classes mentioned above are generated.
But during generation, the @tf_export
attribute was ignored.
@tf_export
provides us with information about where this method should be available, for example:
in_top_k
should be available as tf.math.in_top_k
and tf.nn.in_top_k
.
In summary, there are around 30%
missing methods that can be fairly easily generated.
Copy-pasting code from python almost always ends up broken because of the amount of missing APIs.