Spaces:
Configuration error
Configuration error
Commit
·
55c2b1c
1
Parent(s):
50c9a34
new
Browse files- .gitignore +2 -1
- README.md +15 -1
- download_all.sh +2 -1
.gitignore
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
annotator/ckpts/**
|
| 2 |
result/**
|
| 3 |
trash/**
|
| 4 |
-
data/**
|
|
|
|
|
|
| 1 |
annotator/ckpts/**
|
| 2 |
result/**
|
| 3 |
trash/**
|
| 4 |
+
data/**
|
| 5 |
+
videogrian_data.tar.gz
|
README.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
Our method is tested using cuda12.1, fp16 of accelerator and xformers on a single L40.
|
| 3 |
|
| 4 |
```bash
|
|
@@ -22,6 +29,13 @@ You may download all data and checkpoints using the following bash command
|
|
| 22 |
bash download_all.sh
|
| 23 |
```
|
| 24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
## 🔥 ST-Modulator Editing
|
| 26 |
|
| 27 |
You could reproduce multi-grained editing results in our teaser by running:
|
|
|
|
| 1 |
+
# VideoGrain: Modulating Space-Time Attention for Multi-Grained Video Editing (ICLR 2025)
|
| 2 |
+
## [<a href="https://knightyxp.github.io/VideoGrain_project_page/" target="_blank">Project Page</a>]
|
| 3 |
+
|
| 4 |
+
[](https://arxiv.org/abs/)
|
| 5 |
+
[](https://huggingface.co/spaces/)
|
| 6 |
+
[](https://mc-e.github.io/project/ReVideo/)
|
| 7 |
+
|
| 8 |
+
## ▶️ Setup Environment
|
| 9 |
Our method is tested using cuda12.1, fp16 of accelerator and xformers on a single L40.
|
| 10 |
|
| 11 |
```bash
|
|
|
|
| 29 |
bash download_all.sh
|
| 30 |
```
|
| 31 |
|
| 32 |
+
## 🔛 Prepare all the data
|
| 33 |
+
|
| 34 |
+
```
|
| 35 |
+
gdown https://drive.google.com/file/d/1dzdvLnXWeMFR3CE2Ew0Bs06vyFSvnGXA/view?usp=drive_link
|
| 36 |
+
tar -zxvf videograin_data.tar.gz
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
## 🔥 ST-Modulator Editing
|
| 40 |
|
| 41 |
You could reproduce multi-grained editing results in our teaser by running:
|
download_all.sh
CHANGED
|
@@ -1,2 +1,3 @@
|
|
| 1 |
cd ./ckpt
|
| 2 |
-
bash download.sh
|
|
|
|
|
|
| 1 |
cd ./ckpt
|
| 2 |
+
bash download.sh
|
| 3 |
+
cd ..
|