Instructions to use REKS1337/ExtraAI-75M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use REKS1337/ExtraAI-75M with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf REKS1337/ExtraAI-75M:F16 # Run inference directly in the terminal: llama cli -hf REKS1337/ExtraAI-75M:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf REKS1337/ExtraAI-75M:F16 # Run inference directly in the terminal: llama cli -hf REKS1337/ExtraAI-75M:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf REKS1337/ExtraAI-75M:F16 # Run inference directly in the terminal: ./llama-cli -hf REKS1337/ExtraAI-75M:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf REKS1337/ExtraAI-75M:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf REKS1337/ExtraAI-75M:F16
Use Docker
docker model run hf.co/REKS1337/ExtraAI-75M:F16
- LM Studio
- Jan
- vLLM
How to use REKS1337/ExtraAI-75M with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "REKS1337/ExtraAI-75M" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "REKS1337/ExtraAI-75M", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/REKS1337/ExtraAI-75M:F16
- Ollama
How to use REKS1337/ExtraAI-75M with Ollama:
ollama run hf.co/REKS1337/ExtraAI-75M:F16
- Unsloth Desktop
- Docker Model Runner
How to use REKS1337/ExtraAI-75M with Docker Model Runner:
docker model run hf.co/REKS1337/ExtraAI-75M:F16
- Lemonade
How to use REKS1337/ExtraAI-75M with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull REKS1337/ExtraAI-75M:F16
Run and chat with the model
lemonade run user.ExtraAI-75M-F16
List all available models
lemonade list
- Atomic Chat
ExtraAI-75M
ExtraAI is a 75,012,480-parameter, English-only decoder Transformer trained from random initialization. Its 32k byte-level BPE tokenizer is also trained from scratch; no pretrained model or pretrained tokenizer is used.
Architecture: 11 layers, width 640, 10 attention heads, SwiGLU width 1728,
RMSNorm, RoPE, PyTorch scaled-dot-product causal attention, tied embeddings, and
a 1024-token context. Exported after optimizer step 4,000. Both the original
Safetensors weights and a llama.cpp-compatible ExtraAI-75M-F16.gguf are included.
Training data (77,520 train conversations):
- agentic-ptb/grok-data
- 11-47/god_agent_grok4.4_cot_traces_20k
- WithinUsAI/Grok_4.4_Distilled
The training code applies a lightweight English filter and exact-text deduplication, then performs causal pretraining followed by assistant-only supervised training. Dataset licenses and the suitability of distilled outputs for your intended use must be checked independently before redistribution or commercial use.
Inference
from huggingface_hub import snapshot_download
import sys
path = snapshot_download("REKS1337/ExtraAI-75M")
sys.path.insert(0, path)
from extraai_train import load_for_inference, generate_text
model, tokenizer = load_for_inference(path, device="cuda")
print(generate_text(model, tokenizer, "Explain why the sky is blue."))
This small model was trained under a strict single-session compute budget. Treat its answers as experimental: it can hallucinate, reproduce dataset biases, and should not be used for high-stakes decisions.
llama.cpp / GGUF
llama-cli -m ExtraAI-75M-F16.gguf -cnv --jinja -p "Explain why the sky is blue."
The bundled GGUF is F16 (approximately 150 MiB) and uses tied token/output
embeddings. It can later be quantized with llama-quantize if a smaller file is
needed.
- Downloads last month
- 206