Update app.py
Browse files
app.py
CHANGED
@@ -59,10 +59,18 @@ demo = gr.Interface(
|
|
59 |
|
60 |
if __name__ == "__main__":
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
print('Loading data...')
|
63 |
with open('English_Lyrics_Ordered_Sets_Small_1358353.pickle', 'rb') as f:
|
64 |
lyrics_set_final = pickle.load(f)
|
|
|
65 |
print('Done!')
|
|
|
66 |
|
67 |
|
68 |
demo.launch()
|
|
|
59 |
|
60 |
if __name__ == "__main__":
|
61 |
|
62 |
+
PDT = timezone('US/Pacific')
|
63 |
+
|
64 |
+
print('=' * 70)
|
65 |
+
print('App start time: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now(PDT)))
|
66 |
+
print('=' * 70)
|
67 |
+
|
68 |
print('Loading data...')
|
69 |
with open('English_Lyrics_Ordered_Sets_Small_1358353.pickle', 'rb') as f:
|
70 |
lyrics_set_final = pickle.load(f)
|
71 |
+
print('=' * 70)
|
72 |
print('Done!')
|
73 |
+
print('=' * 70)
|
74 |
|
75 |
|
76 |
demo.launch()
|