Update app.py
Browse files
app.py
CHANGED
|
@@ -22,15 +22,15 @@ import torch
|
|
| 22 |
pd.set_option("display.max_colwidth", None)
|
| 23 |
|
| 24 |
# Open and read the first file
|
| 25 |
-
with open("
|
| 26 |
content1 = fp1.read()
|
| 27 |
|
| 28 |
# Open and read the second file
|
| 29 |
-
with open("
|
| 30 |
content2 = fp2.read()
|
| 31 |
|
| 32 |
# Open and read the second file
|
| 33 |
-
with open("
|
| 34 |
content3 = fp3.read()
|
| 35 |
|
| 36 |
|
|
|
|
| 22 |
pd.set_option("display.max_colwidth", None)
|
| 23 |
|
| 24 |
# Open and read the first file
|
| 25 |
+
with open("iplteams_info.txt", "r") as fp1:
|
| 26 |
content1 = fp1.read()
|
| 27 |
|
| 28 |
# Open and read the second file
|
| 29 |
+
with open("match_summaries_sentences.txt", "r") as fp2:
|
| 30 |
content2 = fp2.read()
|
| 31 |
|
| 32 |
# Open and read the second file
|
| 33 |
+
with open("formatted_playersinfo.txt", "r") as fp3:
|
| 34 |
content3 = fp3.read()
|
| 35 |
|
| 36 |
|