CoolFace
Modelpublic

Fox-AI-by-teolm30/fox1.4

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
1likes61downloads
Model Card

๐ŸฆŠ 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

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

Python

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

bash
ollama run hf.co/teolm30/fox1.4