Views
No views yet
| Parameter | Value |
|---|---|
| Parameters | 1,286,155,776 |
| Layers | 30 |
| Hidden Size | 1536 |
| Attention Heads | 12 |
| Head Dimension | 128 |
| Intermediate Size | 6144 |
| Vocabulary | 50,000 (BPE) |
| Max Sequence Length | 128 tokens |
| Activation | SwiGLU |
| Position Encoding | Rotary (RoPE) |
| Normalization | RMSNorm |
| Precision | FP16 / FP32 |
1from huggingface_hub import hf_hub_download
2import torch, json
3from tokenizers import Tokenizer
4
5config_path = hf_hub_download('AveroLabs/Avero-1B-Text', 'config.json')
6tokenizer_path = hf_hub_download('AveroLabs/Avero-1B-Text', 'tokenizer.json')
7weights_path = hf_hub_download('AveroLabs/Avero-1B-Text', 'pytorch_model_state.bin')
8
9cfg = json.load(open(config_path))
10tok = Tokenizer.from_file(tokenizer_path)1wget https://huggingface.co/AveroLabs/Avero-1B-Text/resolve/main/sage-1b-f16.gguf
2./main -m sage-1b-f16.gguf -p "Once upon a time" -n 50| File | Size | Description |
|---|---|---|
pytorch_model_state.bin | 2.4 GB | FP16 model weights |
sage-1b-f16.gguf | 2.4 GB | GGUF format for llama.cpp |
config.json | 1 KB | Model hyperparameters |
tokenizer.json | 12 MB | BPE tokenizer (50K vocab) |
modeling_sage_1b.py | 6 KB | Model architecture code |