Last active
July 3, 2018 14:18
-
-
Save WillKoehrsen/8fbe52177b6775fe5fffeba41f76583c 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
# Write to the csv file ('a' means append) | |
of_connection = open(out_file, 'a') | |
writer = csv.writer(of_connection) | |
writer.writerow([loss, params, iteration, n_estimators, run_time]) | |
of_connection.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment