Wauplin HF Staff commited on
Commit
d3d9037
·
verified ·
1 Parent(s): 7bfb729

Add library_name + rename huggingface-cli to hf in snippet

Browse files

Hi there, congrats for the release!

I've reviewed the model card and updated two things:
- `huggingface-cli`is the legacy CLI tool. Preferable to mention `hf` instead. Same syntax but `hf` is up to date
- added `library_name: void-model` which will enable download counter once this PR is merged (https://github.com/huggingface/huggingface.js/pull/2071)

Let me know if you have any questions

Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -8,6 +8,7 @@ tags:
8
  - diffusion
9
  - video-generation
10
  pipeline_tag: video-to-video
 
11
  ---
12
 
13
  # VOID: Video Object and Interaction Deletion
@@ -64,12 +65,10 @@ cd void-model
64
  pip install -r requirements.txt
65
 
66
  # Download the base model
67
- huggingface-cli download alibaba-pai/CogVideoX-Fun-V1.5-5b-InP \
68
- --local-dir ./CogVideoX-Fun-V1.5-5b-InP
69
 
70
  # Download VOID checkpoints
71
- huggingface-cli download netflix/void-model \
72
- --local-dir .
73
 
74
  # Run Pass 1 inference on a sample
75
  python inference/cogvideox_fun/predict_v2v.py \
 
8
  - diffusion
9
  - video-generation
10
  pipeline_tag: video-to-video
11
+ library_name: void-model
12
  ---
13
 
14
  # VOID: Video Object and Interaction Deletion
 
65
  pip install -r requirements.txt
66
 
67
  # Download the base model
68
+ hf download alibaba-pai/CogVideoX-Fun-V1.5-5b-InP --local-dir ./CogVideoX-Fun-V1.5-5b-InP
 
69
 
70
  # Download VOID checkpoints
71
+ hf download netflix/void-model --local-dir .
 
72
 
73
  # Run Pass 1 inference on a sample
74
  python inference/cogvideox_fun/predict_v2v.py \