The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
π΅ LEMM Training Data Repository
Central storage for all LEMM training artifacts:
- LoRA Adapters - User-trained model adaptations
- Training Datasets - Prepared and curated audio datasets
Part of the LEMM (Let Everyone Make Music) project.
π Repository Structure
lemmdata/
βββ loras/ # LoRA Adapters (ZIP files)
β βββ jazz-v1.zip # Example: Jazz style adapter
β βββ metal-data1.zip # Example: Metal style adapter
β βββ ...
β
βββ datasets/ # Training Datasets (ZIP files)
βββ gtzan_prepared.zip # Example: GTZAN dataset
βββ user_dataset_123.zip # Example: User-uploaded dataset
βββ ...
π¨ LoRA Adapters (loras/)
Each LoRA is packaged as a ZIP file containing:
final_model.pt- Trained LoRA weights (PyTorch checkpoint)config.yaml- Training hyperparameters and settingsmetadata.json- Training statistics, timestamps, dataset infoREADME.md- Documentation and usage instructions
How to Use
Download in LEMM:
- Go to LEMM Space
- Navigate to "LoRA Management" tab
- Click "Sync from HuggingFace"
- Select LoRA from dropdown
- Use in generation or continue training
Download via Code:
from huggingface_hub import hf_hub_download
import zipfile
# Download LoRA ZIP
zip_path = hf_hub_download(
repo_id="Gamahea/lemmdata",
repo_type="dataset",
filename="loras/jazz-v1.zip"
)
# Extract
with zipfile.ZipFile(zip_path, 'r') as zipf:
zipf.extractall("./my_loras/jazz-v1")
π Training Datasets (datasets/)
Each dataset is packaged as a ZIP file containing:
dataset_info.json- Metadata (size, format, split ratios)train/- Training audio filesval/- Validation audio files
Supported Formats
- Audio: WAV, MP3, FLAC, OGG
- Sample Rate: 44.1kHz or 48kHz recommended
- Channels: Mono or Stereo
How to Use
Download in LEMM:
- Go to LEMM Space
- Navigate to "Training" tab
- Click "Import Dataset" β "From HuggingFace"
- Select dataset
- Use for training
Download via Code:
from huggingface_hub import hf_hub_download
import zipfile
# Download dataset ZIP
zip_path = hf_hub_download(
repo_id="Gamahea/lemmdata",
repo_type="dataset",
filename="datasets/gtzan_prepared.zip"
)
# Extract
with zipfile.ZipFile(zip_path, 'r') as zipf:
zipf.extractall("./my_datasets/gtzan_prepared")
π Contributing
Upload LoRA
Train a LoRA in LEMM Space:
- Prepare or select a dataset
- Configure training parameters
- Start training
- LoRA automatically packaged as ZIP and uploaded to
loras/{your-lora-name}.zip
Upload Dataset
Prepare a dataset and export:
- Upload audio files to LEMM
- Use dataset preparation tools
- Export as prepared dataset
- Dataset packaged as ZIP and uploaded to
datasets/{your-dataset-name}.zip
π Naming Conventions
LoRA Names
- Format:
{style}-{variant}_{version} - Examples:
jazz-bebop_v1rock-heavy_v2classical-piano_v1
Dataset Names
- Format:
{source}_{description} - Examples:
gtzan_prepareduser_dataset_1702987654opensinger_vocals
π Authentication
Read Access: Public (no authentication required)
Write Access: Requires HuggingFace token
- Only LEMM Space can upload
- User-trained artifacts auto-upload
- Token managed via HF Space secrets
π Related Resources
- LEMM Space: https://huggingface.co/spaces/Gamahea/lemm-test-100
- GitHub Repo: https://github.com/Gamahea/Angen
- DiffRhythm2: Music generation model with vocals
- MuQ-MuLan: Music style encoding
π Training Best Practices
LoRA Training
- Dataset Size: 100+ clips minimum
- LoRA Rank: 8-32 for most styles
- Learning Rate: 1e-4 to 1e-3
- Epochs: 20-50 depending on dataset
Dataset Preparation
- Clip Length: 10-30 seconds
- Audio Quality: Clean, well-produced
- Consistency: Similar genre/style
- Diversity: Varied within target style
π License
MIT License - Free to use, modify, and share.
All contributed LoRAs and datasets inherit this license unless otherwise specified.
π·οΈ Tags
music-generation lora diffrhythm2 audio training-data datasets models lemm
Last Updated: December 2025
Repository: https://huggingface.co/datasets/Gamahea/lemmdata
LEMM Space: https://huggingface.co/spaces/Gamahea/lemm-test-100
- Downloads last month
- 76