-
-
Save icebeam7/1a657740b6829abf96bcd38ee69d1fcf to your computer and use it in GitHub Desktop.
This file contains 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
print ("Training...") | |
iteration = trainer.train_project(project.id) | |
while (iteration.status != "Completed"): | |
iteration = trainer.get_iteration(project.id, iteration.id) | |
print ("Training status: " + iteration.status) | |
print ("Waiting 25 seconds...") | |
time.sleep(25) | |
print("Training complete") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment