tongyujun commited on
Commit
29d4a28
·
verified ·
1 Parent(s): 4c25b54

Update docs/INSTALL.md

Browse files
Files changed (1) hide show
  1. docs/INSTALL.md +10 -0
docs/INSTALL.md CHANGED
@@ -21,6 +21,10 @@ pip install torch==1.11.0+cu113 torchvision==0.12.0+cu113 torchaudio==0.11.0 --e
21
  ```bash
22
  # Clone PromptSRC code base
23
  git clone https://github.com/PRIS-CV/Subspace-Prompting
 
 
 
 
24
 
25
  cd Subspace_Prompting/
26
  # Install requirements
@@ -42,3 +46,9 @@ pip install -r requirements.txt
42
  # Install this library (no need to re-build if the source code is modified)
43
  python setup.py develop
44
  ```
 
 
 
 
 
 
 
21
  ```bash
22
  # Clone PromptSRC code base
23
  git clone https://github.com/PRIS-CV/Subspace-Prompting
24
+ # or
25
+ # Use huggingface code base (including weights)
26
+ pip install -U huggingface_hub
27
+ huggingface-cli download --resume-download tongyujun/Subspace_Prompting
28
 
29
  cd Subspace_Prompting/
30
  # Install requirements
 
46
  # Install this library (no need to re-build if the source code is modified)
47
  python setup.py develop
48
  ```
49
+
50
+ * Install additional package.
51
+ ```bash
52
+ # For evaluation
53
+ pip install openpyxl
54
+ ```