Add library_name + rename huggingface-cli to hf in snippet
Browse filesHi 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
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 |
-
|
| 68 |
-
--local-dir ./CogVideoX-Fun-V1.5-5b-InP
|
| 69 |
|
| 70 |
# Download VOID checkpoints
|
| 71 |
-
|
| 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 \
|