CoolFace
Modelpublic

Fox-AI-by-teolm30/Fox-1.5

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
0likes64downloads
Model Card

๐ŸฆŠ Fox 1.5

Benchmark Board

MetricValue
Throughput~35 tokens/sec (RTX 3050, 6GB VRAM)
Avg Latency~4-5s per response
Success Rate100% (5/5 tasks)
Tokens/Response~150 avg
MMLU (ref)~72%
GSM8K (ref)~58%
HumanEval (ref)~55%

Task Results

TaskPromptCheckResult
Math"A farmer has 17 sheep. All but 9 run away. How many sheep left?"9โœ…
Coding"Write a Python function to check if a number is prime."defโœ…
Knowledge"What is the capital of Greece?"athensโœ…
Logic"If all cats are animals and some animals are pets, then some cats are pets. True or false?"trueโœ…
Translation"Translate to Greek: Hello, how are you?"ฮณฮตฮนฮฑโœ…

Quick Facts

PropertyValue
Base ModelQwen2.5-7B-Instruct
QuantizationGPTQ 4-bit
Parameters7B
Context Length32K tokens
Size5.3GB
VRAM Required~6GB
LicenseApache 2.0

Capabilities

  • โ€”Text & Chat โ€” multilingual conversations, creative writing
  • โ€”Coding โ€” Python, JavaScript, C++, Rust, Go, 50+ languages
  • โ€”Reasoning โ€” math, logic, step-by-step problem solving
  • โ€”Agentic Use โ€” tool calling, function execution, OpenClaw compatible

Run it

python
from transformers import AutoTokenizer, AutoModelForCausalLM

model_name = "teolm30/Fox-1.5"
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype=torch.bfloat16,
    device_map="auto"
)

messages = [{"role": "user", "content": "Explain quantum entanglement in simple terms"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to("cuda:0")
outputs = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

For 4-bit GPTQ loading: pip install auto-gptq optimum

Limitations

  • โ€”Text-only (no vision in base form)
  • โ€”Image generation requires a separate model

Built by T_craftClaw ๐Ÿ”ฅ | Owner: teolm30

๐Ÿค– Run with Ollama

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