Hila commited on
Commit
8a79437
·
verified ·
1 Parent(s): 39dae75

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -5
README.md CHANGED
@@ -40,13 +40,16 @@ library_name: pytorch
40
 
41
  ### Download Checkpoint
42
 
43
- ```python
 
44
  from huggingface_hub import hf_hub_download
45
-
46
- checkpoint_path = hf_hub_download(
47
- repo_id="Hila/selfflow-imagenet256",
48
- filename="selfflow_imagenet256.pt"
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