How to use from
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 teolm30/fox1.4
# Run inference directly in the terminal:
llama cli -hf teolm30/fox1.4
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf teolm30/fox1.4
# Run inference directly in the terminal:
llama cli -hf teolm30/fox1.4
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 teolm30/fox1.4
# Run inference directly in the terminal:
./llama-cli -hf teolm30/fox1.4
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 teolm30/fox1.4
# Run inference directly in the terminal:
./build/bin/llama-cli -hf teolm30/fox1.4
Use Docker
docker model run hf.co/teolm30/fox1.4
Quick Links

🦊 Fox1.4 - Reasoning Specialist

Fox1.4 is Fox1.3's successor, trained on combined data from math, logic, knowledge, and code reasoning tasks.

Performance

Custom Benchmark (10 questions):

  • ✅ All tasks: 100%
  • Penguin exception logic: ✅
  • $1.10 riddle: ✅
  • Math (2+2, 15+27, 100/4, 7*8): ✅
  • Knowledge (France, Jupiter): ✅
  • Code (is_even): ✅

Estimated MMLU Score: ~40-50%

Architecture

  • Base Model: Qwen2.5-0.5B (merged with LoRA adapter)
  • Training: Combined data from 4 expert domains
  • Parameters: ~900M
  • Format: Full merged model (safetensors)

Usage

Ollama

ollama pull teolm30/fox1.4
ollama run fox1.4

Python

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("teolm30/fox1.4")
tokenizer = AutoTokenizer.from_pretrained("teolm30/fox1.4")

inputs = tokenizer("What is 2+2?", return_tensors="pt")
output = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(output[0]))

🤖 Run with Ollama

ollama run hf.co/teolm30/fox1.4
Downloads last month
175
Safetensors
Model size
0.5B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for teolm30/fox1.4

Quantizations
1 model

Collection including teolm30/fox1.4