Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +32 -3
- alv_tokenizer-2.0.1-py3-none-any.whl +0 -0
- melody_model.safetensors +3 -0
- melody_model_config.json +17 -0
- plugin.png +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
plugin.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 🎼 Aurora Melody Model
|
| 2 |
+
|
| 3 |
+
**AI-powered melody generation with VST plugin integration**
|
| 4 |
+
|
| 5 |
+

|
| 6 |
+
|
| 7 |
+
## 📁 Files Included
|
| 8 |
+
|
| 9 |
+
- `melody_model.safetensors` - Pre-trained melody generation model
|
| 10 |
+
- `melody_model_config.json` - Model configuration and hyperparameters
|
| 11 |
+
- `alv_tokenizer-2.0.1-py3-none-any.whl` - MIDI tokenization package
|
| 12 |
+
|
| 13 |
+
## 📊 Model Specifications
|
| 14 |
+
|
| 15 |
+
- **Architecture**: Transformer-based melody generation
|
| 16 |
+
- **Vocabulary Size**: 45,093 tokens
|
| 17 |
+
- **Model Dimensions**: 1,280 embedding size, 20 attention heads
|
| 18 |
+
- **Layers**: 24 transformer layers
|
| 19 |
+
- **Max Sequence Length**: 300 tokens
|
| 20 |
+
- **Format**: SafeTensors
|
| 21 |
+
|
| 22 |
+
## 🔗 Backend Integration
|
| 23 |
+
|
| 24 |
+
For complete backend implementation and VST plugin integration, see:
|
| 25 |
+
**https://github.com/WebChatAppAi/Aurora-Labs**
|
| 26 |
+
|
| 27 |
+
The backend repository contains:
|
| 28 |
+
- Model inference engine
|
| 29 |
+
- VST plugin bridge
|
| 30 |
+
- FastAPI server
|
| 31 |
+
- DAW integration
|
| 32 |
+
- Real-time generation capabilities
|
alv_tokenizer-2.0.1-py3-none-any.whl
ADDED
|
Binary file (19.7 kB). View file
|
|
|
melody_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcaf6ce35c131533c2ec4744918ceb28a482b5033b9b9d3f5c4a11967d0fc724
|
| 3 |
+
size 2352365368
|
melody_model_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"vocab_size": 45093,
|
| 3 |
+
"d_model": 1280,
|
| 4 |
+
"n_heads": 20,
|
| 5 |
+
"n_layers": 24,
|
| 6 |
+
"d_ff": 5120,
|
| 7 |
+
"max_seq_len": 300,
|
| 8 |
+
"dropout": 0.1,
|
| 9 |
+
"learning_rate": 0.0002,
|
| 10 |
+
"weight_decay": 0.01,
|
| 11 |
+
"warmup_steps": 1000,
|
| 12 |
+
"gradient_clip_val": 1.0,
|
| 13 |
+
"bos_token": 0,
|
| 14 |
+
"eos_token": 1,
|
| 15 |
+
"pad_token": 2,
|
| 16 |
+
"val_loss": 2.6841174858372385
|
| 17 |
+
}
|
plugin.png
ADDED
|
Git LFS Details
|