Emu Edit
commited on
Commit
•
c4ade86
1
Parent(s):
31c2a6d
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: prompt
|
@@ -22,3 +25,57 @@ configs:
|
|
22 |
- split: test
|
23 |
path: data/test-*
|
24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
pretty_name: Movie Gen Video Benchmark
|
5 |
dataset_info:
|
6 |
features:
|
7 |
- name: prompt
|
|
|
25 |
- split: test
|
26 |
path: data/test-*
|
27 |
---
|
28 |
+
|
29 |
+
# Dataset Card for the Movie Gen Benchmark
|
30 |
+
[Movie Gen](https://ai.meta.com/research/movie-gen/) is a cast of foundation models that generates high-quality, 1080p HD videos with different aspect ratios and synchronized audio.
|
31 |
+
Here, we introduce our evaluation benchmark "Movie Gen Bench Video Bench", as detailed in the [Movie Gen technical report](https://ai.meta.com/static-resource/movie-gen-research-paper) (Section 3.5.2).
|
32 |
+
|
33 |
+
To enable fair and easy comparison to Movie Gen for future works on these evaluation benchmarks, we additionally release the non cherry-picked generated videos from Movie Gen on Movie Gen Video Bench.
|
34 |
+
|
35 |
+
## Dataset Summary
|
36 |
+
Movie Gen Video Bench consists of 1003 prompts that cover all the different testing aspects/concepts:
|
37 |
+
|
38 |
+
1. human activity (limb and mouth motion, emotions, etc.)
|
39 |
+
2. animals
|
40 |
+
3. nature and scenery
|
41 |
+
4. physics (fluid dynamics, gravity, acceleration, collisions, explosions, etc.)
|
42 |
+
5. unusual subjects and unusual activities.
|
43 |
+
Besides a comprehensive coverage of different key testing aspects, the prompts also have a good coverage of high/medium/low motion levels at the same time.
|
44 |
+
|
45 |
+
|
46 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/604f82d33050a33ebb17ef65/C4Qc-4OdYRI3Oghah7fWv.png)
|
47 |
+
|
48 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/604f82d33050a33ebb17ef65/IJY9GUgGGRs5dDGMF2jgs.png)
|
49 |
+
|
50 |
+
## Dataset Splits
|
51 |
+
We are releasing two versions of the benchmark:
|
52 |
+
1. Test (test): This version includes only the prompts, making it easier to download and use the benchmark.
|
53 |
+
2. Test with Generations (test_with_generations): This version includes both the prompts and the Movie Gen model’s outputs, allowing for comparative evaluation against the Movie Gen model.
|
54 |
+
|
55 |
+
## Usage
|
56 |
+
|
57 |
+
```python
|
58 |
+
from datasets import load_dataset
|
59 |
+
|
60 |
+
# to download only the prompts
|
61 |
+
dataset = load_dataset("facebook/moviegen_video", split="test")
|
62 |
+
print(dataset[0])
|
63 |
+
|
64 |
+
# to download the prompts and movie gen generations
|
65 |
+
dataset = load_dataset("facebook/moviegen_video", split="test")
|
66 |
+
print(dataset[0])
|
67 |
+
|
68 |
+
# to display a video and a prompt on jupyter notebook
|
69 |
+
import mediapy
|
70 |
+
|
71 |
+
example = dataset[0]
|
72 |
+
with open("tmp.mp4", "wb") as f:
|
73 |
+
f.write(example["video"])
|
74 |
+
|
75 |
+
video = mediapy.read_video("tmp.mp4")
|
76 |
+
print(example["prompt"])
|
77 |
+
mediapy.show_video(video)
|
78 |
+
```
|
79 |
+
|
80 |
+
## Licensing Information
|
81 |
+
Licensed with [CC-BY-NC](https://github.com/facebookresearch/MovieGenBench/blob/main/LICENSE) License.
|