Views
No views yet

| Field | Value |
|---|---|
| Parameters | 75,054,720 |
| Architecture | Llama-style decoder-only Transformer |
| Layers | 12 |
| Hidden size | 640 |
| Intermediate size | 1728 |
| Attention heads | 10 |
| KV heads | 5 |
| Context length | 4096 tokens |
| Vocabulary size | 32,000 |
| Tokenizer | Custom byte-level BPE |
| Training tokens | ~27B tokens |
| Precision | BF16 training, safetensors release |
| Model type | Base causal LM |
| Training Cost | 103.31$(PLEASE LIKE THIS IS SO EXPENSIVE) |
| Training GPU | RTX Pro 6000 |

1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM
3
4repo = "BananaMind/BananaMind-1.5-Base"
5
6device = "cuda" if torch.cuda.is_available() else "cpu"
7dtype = torch.float16 if torch.cuda.is_available() else torch.float32
8
9tok = AutoTokenizer.from_pretrained(repo, trust_remote_code=False)
10
11model = AutoModelForCausalLM.from_pretrained(
12 repo,
13 trust_remote_code=False,
14 dtype=dtype,
15).to(device)
16
17model.eval()
18
19prompt = "The color of the sky is blue. The color of a banana is"
20inputs = tok(prompt, return_tensors="pt").to(device)
21
22with torch.no_grad():
23 out = model.generate(
24 **inputs,
25 max_new_tokens=16,
26 do_sample=True,
27 temperature=0.7,
28 top_p=0.9,
29 pad_token_id=tok.eos_token_id,
30 eos_token_id=tok.eos_token_id,
31 )
32
33print(tok.decode(out[0], skip_special_tokens=True))1temperature = 0.7
2top_p = 0.9
3max_new_tokens = 641do_sample = False
2max_new_tokens = 8| Model | HellaSwag | ARC-Easy | ARC-Challenge | PIQA | ArithMark-2.0 | Average |
|---|---|---|---|---|---|---|
| BananaMind-1.5-Base | 30.91% | 42.38% | 23.98% | 60.55% | 26.68% | 36.90% |
| Gemma 3 IT 270M | 37.70% | - | - | 66.20% | - | - |
| Zupra-1.6-Instruct-Ultra-Exp | 29.66% | 34.41% | 25.51% | 59.74% | 30.44% | 35.95% |
| KeyLM 75M | 29.66% | 35.73% | 23.98% | 60.50% | 25.80% | 35.13% |
| GPT-2 124M | 31.26% | 39.35% | 22.35% | 62.08% | 26.48% | 36.30% |


1@misc{bananamind15base,
2 title = {BananaMind-1.5-Base},
3 author = {BananaMind},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/BananaMind/BananaMind-1.5-Base}}
7}