bluuebunny commited on
Commit
c95f496
·
verified ·
1 Parent(s): e57805e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,9 +15,9 @@ repo_id = "bluuebunny/arxiv_abstract_embedding_mxbai_large_v1_milvus"
15
  repo_type = "dataset"
16
 
17
  # Subfolder in the repo of the dataset where the file is stored
18
- folder_in_repo = "data"
19
 
20
- snapshot_download(repo_id=repo_id, repo_type=repo_type, local_dir=folder_in_repo)
21
 
22
  #######################################################################################
23
 
 
15
  repo_type = "dataset"
16
 
17
  # Subfolder in the repo of the dataset where the file is stored
18
+ local_dir = "."
19
 
20
+ snapshot_download(repo_id=repo_id, repo_type=repo_type, local_dir=local_dir)
21
 
22
  #######################################################################################
23