added telemetry

This commit is contained in:
Nick Walton
2019-11-19 14:07:31 -07:00
parent b2d8e13ebd
commit 6b819d4b1f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ def play_aidungeon_2():
else:
upload_story = True
print("Initializing AI Dungeon! (This might take a few minutes)")
print("\nInitializing AI Dungeon! (This might take a few minutes)\n")
generator = GPT2Generator()
story_manager = UnconstrainedStoryManager(generator)
print("\n\n\n\n")
+1 -1
View File
@@ -95,7 +95,7 @@ class Story():
f = open(file_name, "w")
f.write(story_json)
f.close()
p = Popen(['gsutil', 'cp', file_name, 'aidungeon2stories'])
p = Popen(['gsutil', 'cp', file_name, 'aidungeon2stories', ">", "/dev/null"])
class StoryManager():