Views
No views yet
Trained on determination, fueled by suffering, powered by free TPUs.
1{
2 num_heads=12,
3 attention_dim=768,
4 vocab_size=50260,
5 num_blocks=12,
6 ff_dim=2304,
7 dropout_rate=0.1,
8 max_len = 8192,
9 use_fash_attention = False,
10 attn_chunks = 1,
11 emb_init_range = 0.02,
12 use_rope = True,
13 emb_scaling_factor = 1,
14 res_scale = 1
15}1{
2 "peaklr":5e-4,
3 "warmup_percent":0.03,
4 "min_value":1e-8,
5 "training_decay":"cosine",
6 "weight_decay": 0.1,
7 "min_warmup_value":2e-4,
8 "b1": 0.9,
9 "b2": 0.95,
10 "eps": 1e-7
11}3.59

stats.json in the model files.pip install BwETAF==0.5.11import BwETAF
2
3# 🔍 Quick API test
4prompt = "The meaning of life is"
5output = BwETAF.SetUpAPI(prompt, "WICKED4950/BwETAFv2-130M")
6print(output)
7
8# ⬇️ Load from Hugging Face Hub
9model = BwETAF.load_hf("WICKED4950/BwETAFv2-130M")
10
11# 📁 Load from local path
12BwETAF.load_model("path/to/model")
13
14# 💾 Save to local directory
15model.save_model("path/to/save")
16
17# 🔧 Inspect model
18params = model.trainable_variables
19structure = model.model_struct☁️ Colab support and examples coming soon!
3 × model_dimbfloat16 (bf16)float32vocab_size = 50257)| Model Name | Params | Tokens Seen | TPUv2-8 Hours | Val Loss | Context Length |
|---|---|---|---|---|---|
| BwETAFv2-53M | 53M | 1.34B | 3.21 | 3.77 | 2048 |
| BwETAFv2-130M | 130M | 3.01B | 19.32 | 3.59 | 4096 |
fused_computation.1 (if you spot me lurking in any AI-related servers)