Seetha commited on
Commit
ac2c26e
·
1 Parent(s): ddbec57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -9
app.py CHANGED
@@ -66,10 +66,11 @@ import webbrowser
66
  from streamlit.components.v1 import html
67
  import streamlit.components.v1 as components
68
  from PyPDF2 import PdfReader
 
69
  import io
 
70
 
71
-
72
-
73
  #device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
74
 
75
  # from git import Repo
@@ -471,13 +472,10 @@ def main():
471
  # Write JSON to file
472
  with open('ch.json', 'w') as f:
473
  json.dump(json_data, f)
474
- upload_file(
475
- path_or_fileobj=f,
476
- path_in_repo="ch.json",
477
- repo_id="Seetha/IMA-pipeline-streamlit",
478
- repo_type="datasets",
479
- token="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",
480
- )
481
 
482
  csv_file = "predictions.csv"
483
  json_file = "smalljson.json"
 
66
  from streamlit.components.v1 import html
67
  import streamlit.components.v1 as components
68
  from PyPDF2 import PdfReader
69
+ #from huggingface_hub import HfApi
70
  import io
71
+ from huggingface_hub import Repository
72
 
73
+ #api = HfApi()
 
74
  #device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
75
 
76
  # from git import Repo
 
472
  # Write JSON to file
473
  with open('ch.json', 'w') as f:
474
  json.dump(json_data, f)
475
+ repo.git_pull()
476
+ repo.git_add("ch.json")
477
+ repo.git_commit(commit_message="add ch.json :)")
478
+ repo.push()
 
 
 
479
 
480
  csv_file = "predictions.csv"
481
  json_file = "smalljson.json"