taprosoft commited on
Commit
1784c14
·
unverified ·
1 Parent(s): 9adfc08

fix: update download script URL

Browse files
Files changed (1) hide show
  1. utils.py +3 -2
utils.py CHANGED
@@ -83,8 +83,9 @@ def prepare_env_mineru():
83
 
84
  # download models
85
  os.system(
86
- "wget https://github.com/opendatalab/MinerU/raw/"
87
- "dev/scripts/download_models_hf.py -O download_models_hf.py"
 
88
  )
89
  os.system("python3 download_models_hf.py")
90
 
 
83
 
84
  # download models
85
  os.system(
86
+ "wget https://raw.githubusercontent.com/opendatalab/MinerU/"
87
+ "refs/heads/release-1.3.12/scripts/download_models_hf.py"
88
+ " -O download_models_hf.py"
89
  )
90
  os.system("python3 download_models_hf.py")
91