Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
# Over++: Generative Video Compositing for Layer Interaction Effects
|
| 5 |
+
|
| 6 |
+
[Paper](arxiv.org/abs/2512.19661) | [Project page](https://overplusplus.github.io/)
|
| 7 |
+
|
| 8 |
+
## Overview
|
| 9 |
+
|
| 10 |
+
This Hugging Face repository contains the transformer weights for the model used in the CogVideo pipeline [here](https://github.com/aigc-apps/VideoX-Fun).
|
| 11 |
+
|
| 12 |
+
You can load the transformer weights using the command below:
|
| 13 |
+
```
|
| 14 |
+
python inference/cogvideox_fun/predict_v2v.py \
|
| 15 |
+
--config.experiment.save_foreground=True \
|
| 16 |
+
--config.experiment.save_path="output_temp" \
|
| 17 |
+
--config.data.data_rootdir="examples" \
|
| 18 |
+
--config.experiment.run_seqs="boy-water,pexles_car_drift" \
|
| 19 |
+
--config.experiment.skip_if_exists=False \
|
| 20 |
+
--config.data.dilate_width=0 \
|
| 21 |
+
--config.video_model.guidance_scale=6 \
|
| 22 |
+
--config.video_model.transformer_path="PATH/TO/CHECKPOINTS/diffusion_pytorch_model.safetensors"
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
For more details, please refer to the GitHub repository [here](https://github.com/luchaoqi/overplusplus?tab=readme-ov-file#single-gpu-inference)
|