We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I see that in your code there is this part:
early_stopping1 = tf.contrib.estimator.stop_if_no_decrease_hook( estimator, metric_name='loss_1', max_steps_without_decrease=5, min_steps=0 ) early_stopping2 = tf.contrib.estimator.stop_if_no_decrease_hook( estimator, metric_name='loss_2', max_steps_without_decrease=5, min_steps=0 ) early_stopping3 = tf.contrib.estimator.stop_if_lower_hook( estimator, metric_name='loss_1', threshold=10, eval_dir=None, min_steps=0, run_every_secs=60,
run_every_steps=None )
May I ask what is it used for ? Because I do not see those variables being used anywhere in the code. Thank you very much.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I see that in your code there is this part:
May I ask what is it used for ? Because I do not see those variables being used anywhere in the code. Thank you very much.
The text was updated successfully, but these errors were encountered: