july98 commited on
Commit
237fc4e
·
verified ·
1 Parent(s): 6cebbae

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - Video
7
+ ---
8
+
9
+ # Atypical Dataset
10
+
11
+ A curated video dataset capturing atypical, anomalous, and visually unconventional human activities. Sourced from real-world, synthetic, and artistic domains, it enables research into out-of-distribution video understanding.
12
+
13
+ ## Overview
14
+
15
+ The **Atypical** video dataset introduces a diverse collection of short video clips that significantly diverge from everyday behavior and appearance. Unlike standard datasets that focus on typical human actions and natural scenes, **Atypical** emphasizes the rare, the surreal, and the unexpected—drawing from both real-life occurrences and fictional or synthetic creations.
16
+
17
+ ## Key Features
18
+
19
+ - **Behavioral Anomalies:** Includes clips of unintentional behavior, accidents, and social norm violations.
20
+ - **Visual Deviation:** Features surreal synthetic renderings, sci-fi environments, and staged theatrical content.
21
+ - **Genre Diversity:** Integrates real-world, cinematic, animated, and artificial domains.
22
+ - **Fine-grained Segmentation:** Clips are manually segmented into 2–10 seconds to ensure diversity and focus.
23
+ - **Multi-source Compilation:** Videos are sampled from multiple publicly available datasets and online sources, curated with consistent formatting and labeling.
24
+
25
+ ## Data Composition
26
+
27
+ ### Unintentional & Abnormal
28
+
29
+ - **Sources:**
30
+ - [Oops Dataset](https://github.com/eric-epstein/oops-dataset)
31
+ - [UCSD Ped2](http://www.svcl.ucsd.edu/projects/anomaly/dataset.htm)
32
+ - [CUHK Avenue](https://www.cse.cuhk.edu.hk/leojia/projects/detectabnormal/dataset.html)
33
+ - [UCF-Crime](https://www.crcv.ucf.edu/projects/real-world-anomaly-detection-in-surveillance-videos/)
34
+
35
+ These videos showcase anomalous activities like accidents, social violations, and unexpected events.
36
+
37
+ ### Surreal
38
+
39
+ - **Source:**
40
+ - [SURREAL Dataset](https://www.di.ens.fr/willow/research/surreal/)
41
+ Photorealistic synthetic human renderings performing various motions.
42
+
43
+ ### Sci-fi, Animation, Theatre
44
+
45
+ - **Source:**
46
+ - Public YouTube videos, including:
47
+ - Sci-fi film trailers with futuristic or supernatural elements
48
+ - Cinematic animations with stylized visuals
49
+ - Stage performances with exaggerated theatrical expressions
50
+
51
+ ## Data Preprocessing
52
+
53
+ - **Temporal Segmentation:**
54
+ Long videos were manually segmented into 2–10 second clips to isolate key moments and remove redundancy.
55
+
56
+ - **Content Filtering:**
57
+ Non-relevant or noisy content (e.g., intros, subtitles, logos) was excluded to focus on core visual semantics.
58
+
59
+ - **Resolution Normalization:**
60
+ All clips were resized to a consistent format (e.g., 720p) and re-encoded using standard codecs (H.264, MP4) for compatibility.
61
+
62
+ - **Metadata Annotation:**
63
+ Each clip includes metadata describing the source type (e.g., `anomaly`, `surreal`, `sci-fi`), duration, and original dataset/video ID for traceability.
64
+
65
+ ## Download This Repo
66
+
67
+ You can use the following code to download the entire dataset:
68
+
69
+ ```python
70
+ from huggingface_hub import snapshot_download
71
+
72
+ repo_id = "your_username/atypical_video_dataset"
73
+
74
+ snapshot_download(repo_id=repo_id, repo_type="dataset", token={your_token})