updated path
Browse files
app.py
CHANGED
|
@@ -19,7 +19,7 @@ dropout = 0.0
|
|
| 19 |
vocab = 101
|
| 20 |
# ------------
|
| 21 |
|
| 22 |
-
with open('/
|
| 23 |
text = f.read()
|
| 24 |
|
| 25 |
chars = sorted(list(set(text)))
|
|
|
|
| 19 |
vocab = 101
|
| 20 |
# ------------
|
| 21 |
|
| 22 |
+
with open('./Kanye West Lyrics.txt','r',encoding='utf-8') as f:
|
| 23 |
text = f.read()
|
| 24 |
|
| 25 |
chars = sorted(list(set(text)))
|