Datasets:
The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset Card for Animations Dataset
Dataset Summary
This dataset contains 50,849 animations with their associated metadata and source images. Each animation consists of multiple frames composed of simple sketch-level drawings, text elements, and potentially embedded images. The dataset provides complete information about each animation, including frame components, source images, timing between frames, and canvas settings. This makes it suitable for various tasks such as animation analysis, generation, and modification.
Languages
The dataset is primarily monolingual:
- English (en): Any text elements within animations are predominantly in English.
Dataset Structure
Data Files
The dataset is stored as Parquet files with ZSTD compression:
train-00000.parquetthroughtrain-00003.parquet- Total: 4 shards, ~4.2 GB compressed
Data Fields
Each row in the Parquet files contains the following columns:
| Column | Type | Description |
|---|---|---|
id |
string |
Unique identifier (UUID) for the animation |
settings |
string |
JSON object containing canvas configuration |
dtimes |
list[int64] |
Time delays between frames in milliseconds |
frames_data |
string |
JSON array describing each frame's elements |
images |
list[binary] |
PNG images used in the animation (decoded bytes) |
Settings Object
The settings JSON contains:
canvas_width,canvas_height: Dimensions of the animation canvasfillcolor: Background color of the canvas (if specified)default_font: Default font used for text elementsdefault_font_size: Default font size
Frames Data Structure
The frames_data JSON is an array of arrays, where each inner array represents a frame's elements:
type_for_loader: Element type (e.g., "text", "image")data: Object containing element properties:type: Element typecenterx,centery: Position coordinates on the canvastext: Text content (for text elements)font,size: Font propertiesrotate_angle,angle: Rotation propertiesstrokeColor,fillColor,textColor: Color propertiessrc: Index into theimagesarray (for image elements)
children_data: Array of child elements (if any)
Data Splits
| Split | Number of Examples |
|---|---|
train |
50,849 |
- Downloads last month
- 32