Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -77,11 +77,19 @@ Or download the raw FASTA files directly:
|
|
| 77 |
```python
|
| 78 |
from huggingface_hub import hf_hub_download
|
| 79 |
|
|
|
|
| 80 |
train_path = hf_hub_download(
|
| 81 |
repo_id="heispv/nanoplm-uniref50-3M-subset",
|
| 82 |
filename="train.fasta",
|
| 83 |
repo_type="dataset",
|
| 84 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
```
|
| 86 |
|
| 87 |
## Source & License
|
|
|
|
| 77 |
```python
|
| 78 |
from huggingface_hub import hf_hub_download
|
| 79 |
|
| 80 |
+
# Train
|
| 81 |
train_path = hf_hub_download(
|
| 82 |
repo_id="heispv/nanoplm-uniref50-3M-subset",
|
| 83 |
filename="train.fasta",
|
| 84 |
repo_type="dataset",
|
| 85 |
)
|
| 86 |
+
|
| 87 |
+
# Val
|
| 88 |
+
val_path = hf_hub_download(
|
| 89 |
+
repo_id="heispv/nanoplm-uniref50-3M-subset",
|
| 90 |
+
filename="val.fasta",
|
| 91 |
+
repo_type="dataset",
|
| 92 |
+
)
|
| 93 |
```
|
| 94 |
|
| 95 |
## Source & License
|