Update README.md
Browse files
README.md
CHANGED
|
@@ -40,13 +40,16 @@ library_name: pytorch
|
|
| 40 |
|
| 41 |
### Download Checkpoint
|
| 42 |
|
| 43 |
-
```
|
|
|
|
| 44 |
from huggingface_hub import hf_hub_download
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
)
|
|
|
|
|
|
|
| 50 |
```
|
| 51 |
and follow the instructions in our repository: https://github.com/black-forest-labs/Self-Flow
|
| 52 |
|
|
|
|
| 40 |
|
| 41 |
### Download Checkpoint
|
| 42 |
|
| 43 |
+
```
|
| 44 |
+
python -c "
|
| 45 |
from huggingface_hub import hf_hub_download
|
| 46 |
+
hf_hub_download(
|
| 47 |
+
repo_id='Hila/Self-Flow',
|
| 48 |
+
filename='selfflow_imagenet256.pt',
|
| 49 |
+
local_dir='./checkpoints'
|
| 50 |
)
|
| 51 |
+
print('Downloaded!')
|
| 52 |
+
"
|
| 53 |
```
|
| 54 |
and follow the instructions in our repository: https://github.com/black-forest-labs/Self-Flow
|
| 55 |
|