datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
cameo_data
CAMEO Dataset for Protein Structure Prediction
This dataset contains protein sequences and structures from CAMEO (Continuous Automated Model EvaluatiOn) for monomer structure prediction tasks.
Dataset Description
CAMEO is a community-wide initiative to continuously evaluate the performance of protein structure prediction methods. This dataset includes 141 protein targets collected from January to April 2025.
Dataset Structure
cameo/
├── sequences.fasta… See the full description on the dataset page: https://huggingface.co/datasets/THU-ATOM/cameo_data.CAMEOScript to download and use the dataset:
from datasets import load_dataset
from huggingface_hub import hf_hub_download
import os
from zipfile import ZipFile
from PIL import Image
# 1. Load products and reviews datasets
products = load_dataset("allietran/CAMEO", "products", split="test")
reviews = load_dataset("allietran/CAMEO", "reviews", split="test")
# 2. Download the images
zip_path = hf_hub_download(repo_id="allietran/CAMEO", filename="images.zip", repo_type="dataset")
# 3. Extract… See the full description on the dataset page: https://huggingface.co/datasets/allietran/CAMEO.CAMEO
Dataset Card for CAMEO
Dataset to accompany the EMNLP'23 paper titled: "Misery Loves Complexity: Exploring Linguistic Complexity in the Context of Emotion Detection".
Dataset Details
50,000 subset from the GoEmotions Dataset automatically annotated with the following linguistic complexity measures:
idt: Incomplete Dependency Theory
dlt: Dependency Locality Theory
nnd: Nested-Nouns Distance
le: Left-embededness
percentage_polysyllable_words: % of polysyllable words… See the full description on the dataset page: https://huggingface.co/datasets/pranaydeeps/CAMEO.
