Upload app.py
Browse files
app.py
CHANGED
|
@@ -39,8 +39,8 @@ VOID_MODEL_ID = os.environ.get("VOID_MODEL_ID", "your-hf-username/VOID")
|
|
| 39 |
VOID_CKPT_FILE = "void_pass1.safetensors"
|
| 40 |
|
| 41 |
SAMPLE_SIZE = (384, 672) # H × W
|
| 42 |
-
MAX_VID_LEN =
|
| 43 |
-
TEMPORAL_WIN =
|
| 44 |
FPS = 12
|
| 45 |
WEIGHT_DTYPE = torch.bfloat16
|
| 46 |
NEG_PROMPT = (
|
|
@@ -240,8 +240,10 @@ with gr.Blocks(title="VOID – Video Object & Interaction Deletion") as demo:
|
|
| 240 |
"""
|
| 241 |
# VOID – Video Object and Interaction Deletion
|
| 242 |
|
|
|
|
|
|
|
| 243 |
Upload a video and its **quadmask**, enter a prompt describing the scene *after* removal,
|
| 244 |
-
and VOID will erase the object along with its physical interactions.
|
| 245 |
|
| 246 |
> Built on **CogVideoX-Fun-V1.5-5B** fine-tuned for interaction-aware video inpainting.
|
| 247 |
"""
|
|
|
|
| 39 |
VOID_CKPT_FILE = "void_pass1.safetensors"
|
| 40 |
|
| 41 |
SAMPLE_SIZE = (384, 672) # H × W
|
| 42 |
+
MAX_VID_LEN = 197
|
| 43 |
+
TEMPORAL_WIN = 85
|
| 44 |
FPS = 12
|
| 45 |
WEIGHT_DTYPE = torch.bfloat16
|
| 46 |
NEG_PROMPT = (
|
|
|
|
| 240 |
"""
|
| 241 |
# VOID – Video Object and Interaction Deletion
|
| 242 |
|
| 243 |
+
[🌐 Project Page](https://void-model.github.io/) | [💻 GitHub](https://github.com/void-model/VOID)
|
| 244 |
+
|
| 245 |
Upload a video and its **quadmask**, enter a prompt describing the scene *after* removal,
|
| 246 |
+
and VOID will erase the object along with its physical interactions (shadows, deformations, secondary motion).
|
| 247 |
|
| 248 |
> Built on **CogVideoX-Fun-V1.5-5B** fine-tuned for interaction-aware video inpainting.
|
| 249 |
"""
|