Views
No views yet
1.4065| File | Size | Description |
|---|---|---|
auramidi_v1.pt | ~194 MB | Full PyTorch checkpoint (Loss 1.40) |
auramidi_v1.onnx | ~166 MB | Monolithic standalone ONNX model for Web/Mobile |
generate_neural.py | — | Autoregressive generation script with Top-K/Top-P sampling |
model_architecture.py | — | PyTorch model architecture and tokenization pipeline |
pip install torch miditok pretty_midi1import torch
2from generate_neural import generate_full_neural_composition
3
4# Generate a complete 4-track neural track
5midi_path = generate_full_neural_composition(
6 genre="synthwave",
7 key="Am",
8 bpm=120,
9 temperature=0.85,
10 top_k=20,
11 top_p=0.90
12)
13
14print(f"Generated neural MIDI: {midi_path}")