CoolFace
Datasetpublic

VAST-AI/AniGen-Sample-Dataset

AniGen Sample Data This directory is a compact example subset of the AniGen training dataset. What Is Included 10 examples 10 unique raw assets Full cross-modal files for each example A subset metadata.csv with 10 rows The retained directory layout follows the core structure of the reference test set: raw/ renders/ renders_cond/ skeleton/ voxels/ features/ metadata.csv statistics.txt latents/ (encoded by the trained slat auto-encoder) ss_latents/ (encoded by… See the full description on the dataset page: https://huggingface.co/datasets/VAST-AI/AniGen-Sample-Dataset.

sourceHugging Facemitupdated 5mo agoView on Hugging Face
1likes724downloads
README.md57 linesDownload Raw Back to root
1---2license: mit3pretty_name: AniGen Sample Data4size_categories:5  - n<1K6tags:7  - 3d8  - image9configs:10  - config_name: default11    default: true12    data_files:13      - split: train14        path: samples.csv15---16 17# AniGen Sample Data18 19This directory is a compact example subset of the AniGen training dataset.20 21## What Is Included22 23- 10 examples24- 10 unique raw assets25- Full cross-modal files for each example26- A subset `metadata.csv` with 10 rows27 28The retained directory layout follows the core structure of the reference test set:29 30```text31raw/32renders/33renders_cond/34skeleton/35voxels/36features/37metadata.csv38statistics.txt39 40latents/ (encoded by the trained slat auto-encoder)41ss_latents/  (encoded by the trained ss auto-encoder)42```43 44## How To Read One Example45 46Each row in `metadata.csv` corresponds to one example identifier in the `sha256` column. In practice this value is the sample key used across modalities.47 48For a row with sample key `<file_identifier>`:49 50- raw asset: `local_path` field, for example `raw/<raw_file>`51- rendered views: `renders/<file_identifier>/`52- conditional rendered views: `renders_cond/<file_identifier>/`53- skeleton files: `skeleton/<file_identifier>/`54- voxel files: `voxels/<file_identifier>.ply` and `voxels/<file_identifier>_skeleton.ply`55- image feature: `features/dinov2_vitl14_reg/<file_identifier>.npz`56- mesh latents: files under `latents/*/<file_identifier>.npz`57- structure latents: files under `ss_latents/*/<file_identifier>.npz`