ram36 commited on
Commit
2d46866
·
verified ·
1 Parent(s): 003f9c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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("/content/iplteams_info.txt", "r") as fp1:
26
  content1 = fp1.read()
27
 
28
  # Open and read the second file
29
- with open("/content/match_summaries_sentences.txt", "r") as fp2:
30
  content2 = fp2.read()
31
 
32
  # Open and read the second file
33
- with open("/content/formatted_playersinfo.txt", "r") as fp3:
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