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