CoolFace
30 shown

datasets

Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.

Clear all
01jinmang2 /ucf_crime# Real-world Anomaly Detection in Surveillance Videos Surveillance videos are able to capture a variety of realistic anomalies. In this paper, we propose to learn anomalies by exploiting both normal and anomalous videos. To avoid annotating the anomalous segments or clips in training videos, which is very time consuming, we propose to learn anomaly through the deep multiple instance ranking framework by leveraging weakly labeled training videos, i.e. the training labels (anomalous or normal) are at video-level instead of clip-level. In our approach, we consider normal and anomalous videos as bags and video segments as instances in multiple instance learning (MIL), and automatically learn a deep anomaly ranking model that predicts high anomaly scores for anomalous video segments. Furthermore, we introduce sparsity and temporal smoothness constraints in the ranking loss function to better localize anomaly during training. We also introduce a new large-scale first of its kind dataset of 128 hours of videos. It consists of 1900 long and untrimmed real-world surveillance videos, with 13 realistic anomalies such as fighting, road accident, burglary, robbery, etc. as well as normal activities. This dataset can be used for two tasks. First, general anomaly detection considering all anomalies in one group and all normal activities in another group. Second, for recognizing each of 13 anomalous activities. Our experimental results show that our MIL method for anomaly detection achieves significant improvement on anomaly detection performance as compared to the state-of-the-art approaches. We provide the results of several recent deep learning baselines on anomalous activity recognition. The low recognition performance of these baselines reveals that our dataset is very challenging and opens more opportunities for future work. # Problem & Motivation One critical task in video surveillance is detecting anomalous events such as traffic accidents, crimes or illegal activities. Generally, anomalous events rarely occur as compared to normal activities. Therefore, to alleviate the waste of labor and time, developing intelligent computer vision algorithms for automatic video anomaly detection is a pressing need. The goal of a practical anomaly detection system is to timely signal an activity that deviates normal patterns and identify the time window of the occurring anomaly. Therefore, anomaly detection can be considered as coarse level video understanding, which filters out anomalies from normal patterns. Once an anomaly is detected, it can further be categorized into one of the specific activities using classification techniques. In this work, we propose an anomaly detection algorithm using weakly labeled training videos. That is we only know the video-level labels, i.e. a video is normal or contains anomaly somewhere, but we do not know where. This is intriguing because we can easily annotate a large number of videos by only assigning video-level labels. To formulate a weakly-supervised learning approach, we resort to multiple instance learning. Specifically, we propose to learn anomaly through a deep MIL framework by treating normal and anomalous surveillance videos as bags and short segments/clips of each video as instances in a bag. Based on training videos, we automatically learn an anomaly ranking model that predicts high anomaly scores for anomalous segments in a video. During testing, a longuntrimmed video is divided into segments and fed into our deep network which assigns anomaly score for each video segment such that an anomaly can be detected. # Method Our proposed approach (summarized in Figure 1) begins with dividing surveillance videos into a fixed number of segments during training. These segments make instances in a bag. Using both positive (anomalous) and negative (normal) bags, we train the anomaly detection model using the proposed deep MIL ranking loss. https://www.crcv.ucf.edu/projects/real-world/method.png # UCF-Crime Dataset We construct a new large-scale dataset, called UCF-Crime, to evaluate our method. It consists of long untrimmed surveillance videos which cover 13 realworld anomalies, including Abuse, Arrest, Arson, Assault, Road Accident, Burglary, Explosion, Fighting, Robbery, Shooting, Stealing, Shoplifting, and Vandalism. These anomalies are selected because they have a significant impact on public safety. We compare our dataset with previous anomaly detection datasets in Table 1. For more details about the UCF-Crime dataset, please refer to our paper. A short description of each anomalous event is given below. Abuse: This event contains videos which show bad, cruel or violent behavior against children, old people, animals, and women. Burglary: This event contains videos that show people (thieves) entering into a building or house with the intention to commit theft. It does not include use of force against people. Robbery: This event contains videos showing thieves taking money unlawfully by force or threat of force. These videos do not include shootings. Stealing: This event contains videos showing people taking property or money without permission. They do not include shoplifting. Shooting: This event contains videos showing act of shooting someone with a gun. Shoplifting: This event contains videos showing people stealing goods from a shop while posing as a shopper. Assault: This event contains videos showing a sudden or violent physical attack on someone. Note that in these videos the person who is assaulted does not fight back. Fighting: This event contains videos displaying two are more people attacking one another. Arson: This event contains videos showing people deliberately setting fire to property. Explosion: This event contains videos showing destructive event of something blowing apart. This event does not include videos where a person intentionally sets a fire or sets off an explosion. Arrest: This event contains videos showing police arresting individuals. Road Accident: This event contains videos showing traffic accidents involving vehicles, pedestrians or cyclists. Vandalism: This event contains videos showing action involving deliberate destruction of or damage to public or private property. The term includes property damage, such as graffiti and defacement directed towards any property without permission of the owner. Normal Event: This event contains videos where no crime occurred. These videos include both indoor (such as a shopping mall) and outdoor scenes as well as day and night-time scenes. https://www.crcv.ucf.edu/projects/real-world/dataset_table.png https://www.crcv.ucf.edu/projects/real-world/method.pngvideo-classification10M<n<100M19 likes2.9k downloads8mo agoHugging Face02mteb /ucf-crimetabular1K<n<10K0 likes2.6k downloads4mo agoHugging Face03jinmang2 /ucf-crime-tencrop-i3d2 likes1.9k downloads3y agoHugging Face04myzhao1999 /ucf-crime-clip-features0 likes1.8k downloads2y agoHugging Face05Kavindu1124 /ucf-crime-processed-features0 likes1.1k downloads26d agoHugging Face06AllenXeon /ucf_crime UCF-Crime Dataset (WebDataset Format) 이 데이터셋은 UCF-Crime 데이터셋을 Hugging Face datasets 라이브러리의 스트리밍 기능을 위해 WebDataset(TAR Sharding) 형식으로 변환한 버전입니다. 100GB 이상의 대규모 비디오 데이터를 효율적으로 로드할 수 있습니다. from datasets import load_dataset # Anomaly Detection 설정 로드 dataset = load_dataset("your_id/ucf_crime", "anomaly_detection", split="train", streaming=True) for sample in dataset: video_path = sample["mp4"] label = sample["json"]["event"] print(f"Video loaded: {video_path}, Label:… See the full description on the dataset page: https://huggingface.co/datasets/AllenXeon/ucf_crime.video-classification10M<n<100M0 likes515 downloads1mo agoHugging Face07backseollgi /UCF-Crimehf download backseollgi/UCF-Crime --repo-type dataset --local-dir . cat UCF_Crimes.zip.part_* > UCF_Crimes.zip unzip UCF_Crimes.zip 0 likes378 downloads1y agoHugging Face08jinmang2 /ucf_crime_tencrop_i3d_seg32Train : TenCrop + I3D_8X8_R50(pytorchvideo) + Segment(32) Test : TenCrop + I3D_8X8_R50(pytorchvideo) 0 likes343 downloads3y agoHugging Face09tanziro /bangla-crime-investigation-patterns-v2 Bangla Crime Investigation Patterns V2 This dataset is an anonymized, structured extraction from 1,078 public Bangla crime-investigation video transcripts. It was built to support machine-learning and LLM research on crime-pattern information extraction, case summarization, event sequencing, entity/relationship extraction, and Bengali investigative-report analysis. The public release does not include raw full transcripts. It contains short redacted evidence snippets linked to… See the full description on the dataset page: https://huggingface.co/datasets/tanziro/bangla-crime-investigation-patterns-v2.tabulartext-classification10K<n<100K0 likes320 downloads4mo agoHugging Face10shahadalll /UCF-crime-binary # UCF Video Dataset This is a video dataset structured for training, validation, and testing purposes. ## Structure - `train/normal`: Normal videos for training - `train/abnormal`: Abnormal videos for training - `test/normal`: Normal videos for testing - `test/abnormal`: Abnormal videos for testing - `val/normal`: Normal videos for validation - `val/abnormal`: Abnormal videos for validation ## Usage This dataset can be loaded using the Hugging Face… See the full description on the dataset page: https://huggingface.co/datasets/shahadalll/UCF-crime-binary.videon<1K0 likes269 downloads2y agoHugging Face11etornam /ufc-crime-videostext1K<n<10K0 likes264 downloads2mo agoHugging Face12backseollgi /UCF_Crime_ICML_annotationhf download backseollgi/UCF_Crime_ICML_annotation --repo-type dataset --local-dir . --exclude README.md --exclude .gitattributes 0 likes262 downloads9mo agoHugging Face13xiaoyaoxinyi /ucf-crime0 likes199 downloads5mo agoHugging Face14community-datasets /crime_and_punish Dataset Card for "crime_and_punish" Dataset Summary Supported Tasks and Leaderboards More Information Needed Languages More Information Needed Dataset Structure Data Instances crime-and-punish Size of downloaded dataset files: 1.21 MB Size of the generated dataset: 1.27 MB Total amount of disk used: 2.47 MB An example of 'train' looks as follows. { "line": "CRIME AND PUNISHMENT\n" } Data Fields The… See the full description on the dataset page: https://huggingface.co/datasets/community-datasets/crime_and_punish.text10K<n<100K5 likes163 downloads2y agoHugging Face15qiouzao /UCF-Crime0 likes157 downloads8mo agoHugging Face16kraina /chicago_crimeDataset title: Chicago Crime Dataset. Dataset authors: Julia Moska, Oleksii Furman, Kacper Kozaczko, Szymon Leszkiewicz, Jakub Polczyk, Piotr Gramacki, Piotr Szymański - Wrocław University of Science and Technology Data authors: The data comes from the CLEAR (Citizen Law Enforcement Analysis and Reporting) system of the Chicago Police Department. Data creation and/or collection date: From January 2020 to December 2022. A subset from the year 2022 was utilized for the benchmark. Research… See the full description on the dataset page: https://huggingface.co/datasets/kraina/chicago_crime.0 likes146 downloads4mo agoHugging Face17backseollgi /lavad_ucf_crime_featureshf download backseollgi/lavad_ucf_crime_features --repo-type dataset --local-dir . unzip ucf_crime.zip 0 likes133 downloads10mo agoHugging Face18jason1966 /abbas829_global-organized-crime-index-20212025 Global Organized Crime Index (2021–2025) Global Organized Crime Index dataset for year 2021, 2023 & 2025 Dataset Info Source: Kaggle Original Size: 0.04 MB Kaggle Downloads: 47 Files: 1 Files global_oc_index.csv Mirrored from Kaggle tabularn<1K0 likes128 downloads6mo agoHugging Face19zwn22 /NC_CrimeThe dataset, compiled from public police incident reports across various cities in North Carolina, covers a period from the early 2000s through to 2024. It is intended to facilitate the study of crime trends and patterns.33 likes127 downloads3y agoHugging Face20kraina /philadelphia_crimeDataset title: Philadelphia Crimes Dataset. Dataset authors: Julia Moska, Oleksii Furman, Kacper Kozaczko, Szymon Leszkiewicz, Jakub Polczyk, Piotr Gramacki, Piotr Szymański - Wrocław University of Science and Technology Data authors: The data originates from the OpenDataPhilly portal and is provided under the City of Philadelphia license. Collection date: The utilized subset of data is from the year 2023. Research methodology and tools used for data acquisition: The dataset contains reported… See the full description on the dataset page: https://huggingface.co/datasets/kraina/philadelphia_crime.0 likes124 downloads4mo agoHugging Face21backseollgi /HIVAU-70k_UCF-crime 다운받아서 압축해제 후 사용하세요 현재위치에 다운 hf download backseollgi/HIVAU-70k_UCF-crime --repo-type dataset --local-dir . cat ucf-crime.tar.part_* | tar -xvf - 0 likes123 downloads1y agoHugging Face22build-small-hackathon /ux-crime-scene-traces 🔎 UX Crime Scene — Investigation Traces Real agent traces from UX Crime Scene, a film-noir detective that investigates UI screenshots as crime scenes — built for the Build Small Hackathon (Gradio × Hugging Face). Each row is one real investigation: the input screenshot the user dropped, and the raw structured verdict Qwen2.5-VL-7B returned — the crimes it found, the bounding box of each guilty element, the testimony, the severity, and the final grade. The set spans different… See the full description on the dataset page: https://huggingface.co/datasets/build-small-hackathon/ux-crime-scene-traces.imagen<1K0 likes122 downloads4mo agoHugging Face23ThePolyMath /UCF-Crime-Datasetvideon<1K0 likes100 downloads2y agoHugging Face24duongve /UCF_crime_extract_eventvideon<1K0 likes96 downloads2y agoHugging Face25jhumbl /police-crime-london Street-level crime, outcomes and stop & search — London Every crime and anti-social-behaviour incident recorded by London's two territorial police forces (the Metropolitan Police Service and City of London Police) since December 2010, with case outcomes and stop & search records, as published on data.police.uk. Full history is reconstructed from data.police.uk's permanent monthly archive zips, each month taken from the newest zip that contains it (the most-revised version).… See the full description on the dataset page: https://huggingface.co/datasets/jhumbl/police-crime-london.text10M<n<100M0 likes84 downloads19d agoHugging Face26hibana2077 /UCF-Crime-Dataset UCF Crime Dataset About Dataset The dataset contains extracted images from the UCF crime dataset used for Real-world Anomaly Detection in Surveillance Videos Content The dataset contains images extracted from every video from the UCF Crime Dataset. Every 10th frame is extracted from each full-length video and combined for every video in that class. All the images are of size 64*64 and in .png format The dataset has a total of 14 Classes : 1. Abuse 2. Arrest 3.… See the full description on the dataset page: https://huggingface.co/datasets/hibana2077/UCF-Crime-Dataset.video-classification2 likes79 downloads1y agoHugging Face27NewSonnet /uof-grapheme-crime-scenes UOF Grapheme Segmentation Scenes v2 Synthetic extended-grapheme cases with escaped input, cluster targets, code-point counts, UTF-8 byte counts, and cursor/backspace step estimates. Segmentation uses the regex \X reference with version 2025.11.3. Cluster strings are stored in escaped form so that combining marks, joiners, variation selectors, and supplementary-plane characters remain inspectable in JSON. Release contract Generator: uof-frontier-v2.0.0 Regex… See the full description on the dataset page: https://huggingface.co/datasets/NewSonnet/uof-grapheme-crime-scenes.tabular1K<n<10K0 likes74 downloads11d agoHugging Face28trentmkelly /dread-crime-forum Dread Forum Archive A near-complete capture of public content from Dread, a Reddit-style discussion forum hosted as a Tor hidden service. Dread is one of the longest-running darknet community forums and a primary site for discussion of darknet markets, operational security, cryptocurrency, and related topics. The archive covers content posted between April 2018 and September 2025 and is structured as three Parquet-backed splits: posts, comments, and users (with parsed PGP key… See the full description on the dataset page: https://huggingface.co/datasets/trentmkelly/dread-crime-forum.tabulartext-classification1M<n<10M1 likes69 downloads4mo agoHugging Face29aymansharara /CrimeX CRIMEX v1 — LA Incident Behavioral Intelligence Dataset 📌 Overview CRIMEX v1 is a large-scale enriched criminal incident dataset derived from the Los Angeles Open Crime Data. It transforms raw incident records into a behavioral intelligence dataset by adding multiple feature layers: Temporal intelligence Behavioral profiling Contextual risk signals Graph-inspired features Data quality and explainability metrics The dataset is designed for machine learning, crime… See the full description on the dataset page: https://huggingface.co/datasets/aymansharara/CrimeX.tabular1M<n<10M0 likes68 downloads5mo agoHugging Face30hcshen0916 /crime_judgement0 likes66 downloads1y agoHugging Face

Listings come live from the Hugging Face Hub API. CoolFace does not host these files.