Text Generation
Transformers
Safetensors
GGUF
English
llama
conversational
text-generation-inference
Instructions to use ConeML/coneml-810m-alpha-arithmetic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ConeML/coneml-810m-alpha-arithmetic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ConeML/coneml-810m-alpha-arithmetic") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ConeML/coneml-810m-alpha-arithmetic") model = AutoModelForCausalLM.from_pretrained("ConeML/coneml-810m-alpha-arithmetic", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ConeML/coneml-810m-alpha-arithmetic 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 ConeML/coneml-810m-alpha-arithmetic:Q8_0 # Run inference directly in the terminal: llama cli -hf ConeML/coneml-810m-alpha-arithmetic:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ConeML/coneml-810m-alpha-arithmetic:Q8_0 # Run inference directly in the terminal: llama cli -hf ConeML/coneml-810m-alpha-arithmetic:Q8_0
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 ConeML/coneml-810m-alpha-arithmetic:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf ConeML/coneml-810m-alpha-arithmetic:Q8_0
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 ConeML/coneml-810m-alpha-arithmetic:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ConeML/coneml-810m-alpha-arithmetic:Q8_0
Use Docker
docker model run hf.co/ConeML/coneml-810m-alpha-arithmetic:Q8_0
- LM Studio
- Jan
- vLLM
How to use ConeML/coneml-810m-alpha-arithmetic with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ConeML/coneml-810m-alpha-arithmetic" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ConeML/coneml-810m-alpha-arithmetic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ConeML/coneml-810m-alpha-arithmetic:Q8_0
- SGLang
How to use ConeML/coneml-810m-alpha-arithmetic with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ConeML/coneml-810m-alpha-arithmetic" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ConeML/coneml-810m-alpha-arithmetic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ConeML/coneml-810m-alpha-arithmetic" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ConeML/coneml-810m-alpha-arithmetic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use ConeML/coneml-810m-alpha-arithmetic with Ollama:
ollama run hf.co/ConeML/coneml-810m-alpha-arithmetic:Q8_0
- Unsloth Studio
How to use ConeML/coneml-810m-alpha-arithmetic with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ConeML/coneml-810m-alpha-arithmetic to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ConeML/coneml-810m-alpha-arithmetic to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ConeML/coneml-810m-alpha-arithmetic to start chatting
- Docker Model Runner
How to use ConeML/coneml-810m-alpha-arithmetic with Docker Model Runner:
docker model run hf.co/ConeML/coneml-810m-alpha-arithmetic:Q8_0
- Lemonade
How to use ConeML/coneml-810m-alpha-arithmetic with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ConeML/coneml-810m-alpha-arithmetic:Q8_0
Run and chat with the model
lemonade run user.coneml-810m-alpha-arithmetic-Q8_0
List all available models
lemonade list
- Atomic Chat
| { | |
| "schema_version": 1, | |
| "model": "ConeML/coneml-810m-alpha-arithmetic", | |
| "scope": "Aggregate results from ConeML internal held-out instruments and the stated public-benchmark subsets. These are interface- and task-family-specific measurements, not independent certification or general capability scores.", | |
| "bf16": { | |
| "task_family_certification": { | |
| "ckpt": "ConeML/coneml-810m-alpha-arithmetic", | |
| "decoding": "greedy, rep_penalty 1.15, frame 'Question:/Answer:'", | |
| "by_category": { | |
| "add-1d": { | |
| "correct": 71, | |
| "n": 71, | |
| "acc": 1.0 | |
| }, | |
| "add-2d-carry": { | |
| "correct": 484, | |
| "n": 500, | |
| "acc": 0.968 | |
| }, | |
| "comparison": { | |
| "correct": 395, | |
| "n": 500, | |
| "acc": 0.79 | |
| }, | |
| "missing-addend": { | |
| "correct": 337, | |
| "n": 500, | |
| "acc": 0.674 | |
| }, | |
| "missing-factor": { | |
| "correct": 90, | |
| "n": 500, | |
| "acc": 0.18 | |
| }, | |
| "mul-1d": { | |
| "correct": 45, | |
| "n": 45, | |
| "acc": 1.0 | |
| }, | |
| "mul-2dx1d": { | |
| "correct": 418, | |
| "n": 500, | |
| "acc": 0.836 | |
| }, | |
| "sub-borrow": { | |
| "correct": 493, | |
| "n": 500, | |
| "acc": 0.986 | |
| }, | |
| "two-step": { | |
| "correct": 219, | |
| "n": 500, | |
| "acc": 0.438 | |
| }, | |
| "which-bigger": { | |
| "correct": 281, | |
| "n": 300, | |
| "acc": 0.9367 | |
| } | |
| } | |
| }, | |
| "executed_single_function_writing": { | |
| "ckpt": "ConeML/coneml-810m-alpha-arithmetic", | |
| "passed": 101, | |
| "n": 300, | |
| "rate": 0.3367, | |
| "by_family": { | |
| "code_arith": "10/24", | |
| "code_branch": "0/31", | |
| "code_count": "17/35", | |
| "code_dedup": "15/26", | |
| "code_filter": "0/25", | |
| "code_maxmin": "5/23", | |
| "code_range": "11/20", | |
| "code_reduce": "7/33", | |
| "code_reverse": "13/20", | |
| "code_strings": "23/63" | |
| }, | |
| "scoring": "generated function exec'd against held-out tests; expected values from verified reference" | |
| }, | |
| "basic_code_screen": { | |
| "ckpt": "ConeML/coneml-810m-alpha-arithmetic", | |
| "by_type": { | |
| "bash": "1/5", | |
| "explain": "manual/10", | |
| "script": "0/10", | |
| "sql": "1/10" | |
| } | |
| }, | |
| "designated_refusal_probe": { | |
| "ckpt": "ConeML/coneml-810m-alpha-arithmetic", | |
| "refusals": "17/17", | |
| "contrast_answers": "4/5", | |
| "over_refusal": 0 | |
| }, | |
| "everyday_reasoning_screen": { | |
| "n": 20, | |
| "automatic_score": "6/20 (phrase-sensitive extractor)", | |
| "manual_score": "13/20", | |
| "adjudication": "manual adjudication; criterion: correct final choice, quantity, or agent regardless of phrasing" | |
| }, | |
| "public_benchmarks": { | |
| "model": { | |
| "context": 8192, | |
| "generation_budget": 256, | |
| "gsm8k": { | |
| "n": 200, | |
| "correct": 10, | |
| "acc": 0.05, | |
| "truncation_rate": 0.02 | |
| }, | |
| "humaneval": { | |
| "n": 164, | |
| "passed": 3, | |
| "pass@1": 0.0183, | |
| "truncation_rate": 0.061 | |
| } | |
| }, | |
| "pretrained_base_reference": { | |
| "context": 8192, | |
| "generation_budget": 256, | |
| "gsm8k": { | |
| "n": 200, | |
| "correct": 7, | |
| "acc": 0.035, | |
| "truncation_rate": 0.315 | |
| }, | |
| "humaneval": { | |
| "n": 164, | |
| "passed": 0, | |
| "pass@1": 0.0, | |
| "truncation_rate": 0.665 | |
| } | |
| } | |
| }, | |
| "raw_completion_spot_check": { | |
| "n": 12, | |
| "seed": 188, | |
| "temperature": 0.8, | |
| "repetition_penalty": 1.15, | |
| "repeated_4gram_rate": 0.0, | |
| "distinct_2gram_rate": 0.9793, | |
| "mean_words": 46.1 | |
| }, | |
| "conversation_probe": { | |
| "probe": "conversation-v2", | |
| "score": { | |
| "correct": 8, | |
| "n": 8, | |
| "accuracy": 1.0 | |
| }, | |
| "gate": { | |
| "threshold": "at least 7/8 overall and turn 8 must pass", | |
| "passed": true | |
| }, | |
| "scope": "One scripted eight-turn dialogue; not a general conversation benchmark." | |
| } | |
| }, | |
| "row_level_evidence": { | |
| "public_subset": "representative-samples.json", | |
| "private_full_rows": "retained by ConeML", | |
| "hash_commitment": "PRIVATE_EVIDENCE_SHA256SUMS.txt" | |
| } | |
| } | |