Views
No views yet
1110 and historical source commit 36b3287e5d6a59c81d49eb92769e4a9fb571d8e8, matching the start of W&B run 6nf8goau. The weights are untrained FP32 values produced before XLA/FSDP wrapping.| Parameter | Value |
|---|---|
| Parameters | ~0.15B |
| Layers | 12 |
| Hidden Size | 768 |
| Attention Heads | 12 |
| Vocab Size | 8192 |
| Prediction Steps | 10 |
1from transformers import AutoModel, AutoConfig
2
3# Load with trust_remote_code for custom model
4model = AutoModel.from_pretrained(
5 "TuKoResearch/AuriStream100M_10Pred_BigAudioDataset_500k-randinit",
6 trust_remote_code=True,
7)
8
9# Or load config first
10config = AutoConfig.from_pretrained("TuKoResearch/AuriStream100M_10Pred_BigAudioDataset_500k-randinit", trust_remote_code=True)