-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing callbacks #92
Labels
bug
Something isn't working
Comments
Actually, above, we can see that
Then, a
The first argument of the original function is passed:
|
For
Tracking |
This was referenced Dec 4, 2023
khatchad
added a commit
to ponder-lab/ML
that referenced
this issue
Dec 4, 2023
khatchad
added a commit
to ponder-lab/ML
that referenced
this issue
Dec 4, 2023
This was referenced Dec 4, 2023
khatchad
added a commit
that referenced
this issue
Dec 6, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Missing
Strategy.run()
Called here: https://github.com/mead-ml/mead-baseline/blob/5d7632bb151c2d09501ebf49f36ba8c4204df4c8/mead/api_examples/pretrain_discrim_tf.py#L414.
The callback function
_replicated_train_step()
is defined here: https://github.com/mead-ml/mead-baseline/blob/5d7632bb151c2d09501ebf49f36ba8c4204df4c8/mead/api_examples/pretrain_discrim_tf.py#L394-L405.But, we don't see it in the call graph. The method reference should be:
< PythonLoader, Lscript pretrain_discrim_tf.py/train/_replicated_train_step, do()LRoot; >
. The call graph nodes: https://gist.github.com/khatchad/ab56e3be454103829275c7507999b7d1Regression
There are some callbacks defined in
tensorflow.xml
, as well as others. I see the return values are specified, but I wonder if adding the callback summary will also consider the given function argument as invoked:ML/com.ibm.wala.cast.python.ml/data/tensorflow.xml
Lines 758 to 766 in 1b1ffac
ML/com.ibm.wala.cast.python.ml/data/tensorflow.xml
Lines 778 to 787 in 1b1ffac
The ones there are for estimators (looks like there's two definitions). I wonder if we just need to add more for, e.g., TF2 APIs. I found these docs for the estimator.
The text was updated successfully, but these errors were encountered: