Update README.md
Browse files
README.md
CHANGED
|
@@ -43,10 +43,20 @@ If you prefer conda:
|
|
| 43 |
|
| 44 |
```bash
|
| 45 |
# example only - adjust paths to your cluster
|
| 46 |
-
|
| 47 |
conda create -y -n ESMCBA python=3.10
|
| 48 |
conda activate ESMCBA
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
```
|
| 51 |
|
| 52 |
## 2. Get the code
|
|
|
|
| 43 |
|
| 44 |
```bash
|
| 45 |
# example only - adjust paths to your cluster
|
| 46 |
+
|
| 47 |
conda create -y -n ESMCBA python=3.10
|
| 48 |
conda activate ESMCBA
|
| 49 |
+
|
| 50 |
+
# Core dependencies
|
| 51 |
+
pip install torch==2.6.0 transformers==4.46.3 esm==3.1.3 \
|
| 52 |
+
biopython==1.85 umap-learn==0.5.7 scikit-learn==1.6.1 \
|
| 53 |
+
seaborn==0.13.2 pandas==2.2.3 matplotlib==3.10.1
|
| 54 |
+
|
| 55 |
+
# For downloading model checkpoints from Hugging Face
|
| 56 |
+
pip install -U huggingface_hub
|
| 57 |
+
|
| 58 |
+
# Optional: speed up large file downloads
|
| 59 |
+
pip install -U hf_transfer
|
| 60 |
```
|
| 61 |
|
| 62 |
## 2. Get the code
|