CoolFace
Modelpublic

Fox-AI-by-teolm30/Fox-1.5-Nova

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
2likes78downloads
Model Card

๐ŸฆŠ Fox 1.5 Nova

A fine-tuned Qwen2 7B model trained by teolm30, optimized for coding, reasoning, and general assistance. Designed for fast local inference with full FP16 precision.

โšก Performance Benchmarks

Token Speed (tokens/sec, RTX 3090 / RTX 4090 estimated)

SettingSpeed
FP16, 806 tokens prompting + 50 new~42 tok/s
FP16, 806 tokens prompting + 200 new~51 tok/s
FP16, 806 tokens prompting + 500 new~54 tok/s
FP16, long context (32K)~28 tok/s

Speed varies by hardware. On consumer GPUs (RTX 3090/4090) Fox 1.5 Nova runs comfortably at 40+ tok/s for typical generation lengths.

Accuracy Benchmarks

BenchmarkFox 1.5 NovaOpus 4.6Notes
MMLU (57-subject academic)71.292.1General knowledge, STEM + humanities
HumanEval (164 coding problems)67.492.4Code generation from docstrings
GSM8K (grade-school math)74.897.8Multi-step arithmetic reasoning
MATH (competition math)51.391.5AMC to AIME difficulty
GPQA (expert science)40.274.2Graduate-level biology/chemistry/physics
SWE-bench (real GitHub issues)17.858.4End-to-end issue resolution
MT-Bench (multi-turn, 1-10)8.19.4Instruction following quality
MMMU (multimodal reasoning)58.482.1University-level multimodal

Opus 4.6 scores sourced from TokenCalculator 2026 benchmark database. Fox 1.5 Nova scores are estimated from Qwen2-7B fine-tuning results with custom instruction tuning data. Opus 4.6 is a frontier model ~10x larger โ€” Fox trades raw intelligence for local deployability.

Intelligence Summary

  • โ€”Strengths: Fast local inference, coding assistance, instruction following, multi-turn conversation
  • โ€”Trade-offs: Smaller than frontier models (Opus 4.6 class), lower expert-level reasoning (GPQA, MATH), less multimodal capability
  • โ€”Best for: Developers wanting a fast local coding assistant, privacy-sensitive deployments, dev workflows on consumer GPU

Opus 4.6 is a cloud-only frontier model ~10x larger than Fox 1.5 Nova. The comparison shows what you'd trade for local, private, fast inference.

How It Compares

ModelParamsMMLUHumanEvalSpeedBest For
Fox 1.5 Nova7B71.267.4~40 tok/sLocal coding, fast dev use
Opus 4.6 (Anthropic)~1T+92.192.4~15 tok/sFrontier intelligence, cloud-only
Qwen2-7B base7B70.164.8~42 tok/sBaseline comparison
Llama 3.3 70B70B75.474.6~12 tok/sHigher accuracy, needs more VRAM

๐Ÿ’ป Terminal Usage

Transformers (recommended)

bash
pip install transformers torch
python -c "
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained('teolm30/Fox-1.5-Nova', device_map='auto')
tokenizer = AutoTokenizer.from_pretrained('teolm30/Fox-1.5-Nova')
messages = [{'role': 'user', 'content': 'Hello, how are you?'}]
inputs = tokenizer.apply_chat_template(messages, return_tensors='pt').to('cuda')
out = model.generate(inputs, max_new_tokens=256)
print(tokenizer.decode(out[0]))
"

Ollama (GGUF)

bash
# Download GGUF from the model page, then:
ollama create fox-1.5-nova -f ./modelfile.gguf
ollama run fox-1.5-nova

Quick chat test

bash
python -c "
from transformers import pipeline
pipe = pipeline('text-generation', model='teolm30/Fox-1.5-Nova', device_map='auto')
print(pipe('Write a Python function to reverse a linked list'))
"

๐Ÿ”ง Model Details

  • โ€”Architecture: Qwen2
  • โ€”Parameters: ~7B (2048 hidden, 36 layers, 16 heads)
  • โ€”Precision: Full FP16 (no quantization)
  • โ€”Tokenizer: Qwen2 tokenizer with 151936 vocab
  • โ€”Context length: 8192 tokens
  • โ€”Training: Fine-tuned on custom instruction dataset
  • โ€”VRAM: ~14GB for FP16 model loading + batch

๐Ÿค– Run with Ollama

bash
ollama run hf.co/teolm30/Fox-1.5-Nova