ryushinn commited on
Commit
5d77709
·
verified ·
1 Parent(s): be53668

Add Moving MNIST test split as Hugging Face dataset

Browse files
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Moving MNIST (test split)
3
+ task_categories:
4
+ - video-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - moving-mnist
9
+ - video
10
+ - synthetic
11
+ - grayscale
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # Moving MNIST (test split)
17
+
18
+ This dataset is the classic **Moving MNIST** benchmark test set released by Nitish Srivastava et al. for sequence prediction and video representation learning.
19
+
20
+ - Source file: `mnist_test_seq.npy`
21
+ - Original source: https://www.cs.toronto.edu/~nitish/unsupervised_video/
22
+ - Content: 10,000 sequences, each 20 frames long
23
+ - Frame size: 64x64, grayscale
24
+ - Data type: `uint8`
25
+
26
+ ## Dataset structure
27
+
28
+ This Hugging Face dataset stores one sequence per row:
29
+
30
+ - Split: `test`
31
+ - Number of rows: `10000`
32
+ - Feature schema:
33
+ - `video`: `Array3D(shape=(20, 64, 64), dtype='uint8')`
34
+
35
+ Each `video` item is a full sequence of 20 frames.
36
+
37
+ ## How the original data was created
38
+
39
+ The original Moving MNIST sequences are synthetic videos formed by placing MNIST digit sprites into a 64x64 canvas and moving them with constant velocity and elastic wall bounces. In this specific benchmark file, each sequence contains **two moving digits** over 20 time steps.
40
+
41
+ The released benchmark file (`mnist_test_seq.npy`) is arranged as:
42
+
43
+ - Raw shape: `(20, 10000, 64, 64)` = `(time, sequence, height, width)`
44
+
45
+ For this Hugging Face conversion, it is reorganized conceptually into per-example rows:
46
+
47
+ - Per-example shape: `(20, 64, 64)`
48
+
49
+ ## Citation
50
+
51
+ If you use this dataset, please cite the original paper:
52
+
53
+ ```bibtex
54
+ @inproceedings{srivastava2015unsupervised,
55
+ title={Unsupervised Learning of Video Representations using LSTMs},
56
+ author={Srivastava, Nitish and Mansimov, Elman and Salakhutdinov, Ruslan},
57
+ booktitle={International Conference on Machine Learning (ICML)},
58
+ year={2015}
59
+ }
60
+ ```
61
+
62
+ And optionally reference the project page distributing the benchmark file:
63
+
64
+ - https://www.cs.toronto.edu/~nitish/unsupervised_video/
dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["test"]}
test/data-00000-of-00002.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21f7cb620d88afd257db30c32f78181e9061b1d7b73662fa79c081b51a0838e2
3
+ size 435622184
test/data-00001-of-00002.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54b9628fb232dba28e3d14f9ee7ee2b8eff12ca41c501e1d6a9dd09126299e7f
3
+ size 435622184
test/dataset_info.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "builder_name": "generator",
3
+ "citation": "",
4
+ "config_name": "default",
5
+ "dataset_name": "generator",
6
+ "dataset_size": 871240000,
7
+ "description": "",
8
+ "download_size": 0,
9
+ "features": {
10
+ "video": {
11
+ "shape": [
12
+ 20,
13
+ 64,
14
+ 64
15
+ ],
16
+ "dtype": "uint8",
17
+ "_type": "Array3D"
18
+ }
19
+ },
20
+ "homepage": "",
21
+ "license": "",
22
+ "size_in_bytes": 871240000,
23
+ "splits": {
24
+ "train": {
25
+ "name": "train",
26
+ "num_bytes": 871240000,
27
+ "num_examples": 10000,
28
+ "shard_lengths": [
29
+ 6000,
30
+ 4000
31
+ ],
32
+ "dataset_name": "generator"
33
+ }
34
+ },
35
+ "version": {
36
+ "version_str": "0.0.0",
37
+ "major": 0,
38
+ "minor": 0,
39
+ "patch": 0
40
+ }
41
+ }
test/state.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00002.arrow"
5
+ },
6
+ {
7
+ "filename": "data-00001-of-00002.arrow"
8
+ }
9
+ ],
10
+ "_fingerprint": "4b1a3b9c6545886a",
11
+ "_format_columns": null,
12
+ "_format_kwargs": {},
13
+ "_format_type": null,
14
+ "_output_all_columns": false,
15
+ "_split": "train"
16
+ }