You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unable to iterate deterministically. I've looked at this page and I've tried to set up the config so it iterates deterministically but the order is still random.
WARNING:tensorflow:AutoGraph could not transform <function _gcd_import at 0x7906b5963400> and will run it as-is.
Cause: Unable to locate the source code of <function _gcd_import at 0x7906b5963400>. Note that functions defined in certain environments, like the interactive Python shell, do not expose their source code. If that is the case, you should define them in a .py source file. If you are certain the code is graph-compatible, wrap the call using @tf.autograph.experimental.do_not_convert. Original error: could not get source code
To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert
WARNING:tensorflow:AutoGraph could not transform <function _gcd_import at 0x7906b5963400> and will run it as-is.
Cause: Unable to locate the source code of <function _gcd_import at 0x7906b5963400>. Note that functions defined in certain environments, like the interactive Python shell, do not expose their source code. If that is the case, you should define them in a .py source file. If you are certain the code is graph-compatible, wrap the call using @tf.autograph.experimental.do_not_convert. Original error: could not get source code
To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert
WARNING:absl:Dataset normalization turned off -- set skip_norm=False to apply normalization.
--- 0 ---
184.0448
177.0222
198.7096
189.02994
183.54613
--- 1 ---
184.0448
177.0222
198.7096
189.02994
183.54613
--- 2 ---
184.0448
198.7096
177.0222
189.02994
183.54613
The text was updated successfully, but these errors were encountered:
The motivation here is to have the validation set iteration be deterministic so the plots and such can be compared. Right now the freeze_trajs argument doesn't actually seem to work, so you can't easily compare the visualizations over the course of training.
Just coming back to say I've given this another go and still can't figure out. Being able to deterministically iterate is also pretty essential for making comparisons between different visualization and analysis scripts, so I'm still very interested in help figuring this out!
I'm unable to iterate deterministically. I've looked at this page and I've tried to set up the config so it iterates deterministically but the order is still random.
Here's my test script.
And the output:
The text was updated successfully, but these errors were encountered: