ynuozhang commited on
Commit ·
55bff5b
1
Parent(s): e66c5e2
update readme
Browse files
README.md
CHANGED
|
@@ -29,8 +29,25 @@ This is the repository for [PeptiVerse: A Unified Platform for Therapeutic Pepti
|
|
| 29 |
## Quick Start
|
| 30 |
- Light-weighted start (basic models, no cuML, read below for details)
|
| 31 |
```bash
|
| 32 |
-
# Ignore all LFS files
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
# Install basic pkgs
|
| 36 |
pip install -r requirements.txt
|
|
|
|
| 29 |
## Quick Start
|
| 30 |
- Light-weighted start (basic models, no cuML, read below for details)
|
| 31 |
```bash
|
| 32 |
+
# Ignore all LFS files, you will see an empty folder first
|
| 33 |
+
git clone --no-checkout https://huggingface.co/ChatterjeeLab/PeptiVerse
|
| 34 |
+
cd PeptiVerse
|
| 35 |
+
|
| 36 |
+
# Enable sparse checkout
|
| 37 |
+
git sparse-checkout init --cone
|
| 38 |
+
|
| 39 |
+
# Choose only selective items to download
|
| 40 |
+
git sparse-checkout set \
|
| 41 |
+
inference.py \
|
| 42 |
+
download_light.py \
|
| 43 |
+
best_models.txt \
|
| 44 |
+
basic_models.txt \
|
| 45 |
+
requirements.txt \
|
| 46 |
+
tokenizer \
|
| 47 |
+
README.md
|
| 48 |
+
|
| 49 |
+
# Now checkout
|
| 50 |
+
GIT_LFS_SKIP_SMUDGE=1 git checkout
|
| 51 |
|
| 52 |
# Install basic pkgs
|
| 53 |
pip install -r requirements.txt
|