fmegahed commited on
Commit
52cdc07
1 Parent(s): 7197416

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -16,10 +16,10 @@ import requests
16
  import urllib.request
17
  import shutil
18
 
19
- url = 'https://raw.githubusercontent.com/fmegahed/tavr_paper/main/data/example_data2.csv'
20
- download = requests.get(url).content
21
 
22
- ex_data =pd.read_csv(io.StringIO(download.decode('utf-8')))
23
  ex_data = ex_data.to_numpy()
24
  ex_data = ex_data.tolist()
25
 
 
16
  import urllib.request
17
  import shutil
18
 
19
+ # url = 'https://raw.githubusercontent.com/fmegahed/tavr_paper/main/data/example_data2.csv'
20
+ # download = requests.get(url).content
21
 
22
+ ex_data =pd.read_csv('example_data2.csv')
23
  ex_data = ex_data.to_numpy()
24
  ex_data = ex_data.tolist()
25