File size: 1,287 Bytes
5b311bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# Melodies Dataset
This directory contains the training, validation, and test datasets for melody generation.
## Directory Structure
- `train/` (80% of data): Training dataset
- `val/` (10% of data): Validation dataset
- `test/` (10% of data): Test dataset
## File Formats
- MIDI files (.mid)
- Each file follows naming convention: `[genre]_[mood]_[key]_[tempo].mid`
Example: `pop_happy_cmajor_120.mid`
## Genre Categories
- pop/
- jazz/
- classical/
## Metadata Format
Each MIDI file should have corresponding metadata:
- Genre
- Key signature
- Tempo (BPM)
- Mood/emotion
- Time signature
## Data Sources
[To be populated with actual sources]
## Usage
This dataset is used for:
1. Training melody generation models
2. Model evaluation
3. Style transfer experiments
## File Count
- Train: [number] files
- Val: [number] files
- Test: [number] files
## Notes
- All MIDI files are quantized to 16th notes
- Tempo range: 60-180 BPM
- All melodies are monophonic
## Directory Structure
datasets/melodies/
βββ README.md
βββ train/
β βββ pop/
β βββ jazz/
β βββ classical/
βββ val/
β βββ pop/
β βββ jazz/
β βββ classical/
βββ test/
βββ pop/
βββ jazz/
βββ classical/
|