Created
November 8, 2019 04:56
-
-
Save analyticsindiamagazine/7d69559765f0729fefe1656009204664 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#A function to log the training process | |
def run(run_dir, hparams): | |
with tf.summary.create_file_writer(run_dir).as_default(): | |
hp.hparams(hparams) | |
rmse = train_test_model(hparams) | |
tf.summary.scalar(METRIC_RMSE, rmse, step=10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment