Instructions to use JackFram/llama-68m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JackFram/llama-68m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="JackFram/llama-68m")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("JackFram/llama-68m") model = AutoModelForCausalLM.from_pretrained("JackFram/llama-68m") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use JackFram/llama-68m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "JackFram/llama-68m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JackFram/llama-68m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/JackFram/llama-68m
- SGLang
How to use JackFram/llama-68m 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 "JackFram/llama-68m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JackFram/llama-68m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "JackFram/llama-68m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JackFram/llama-68m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use JackFram/llama-68m with Docker Model Runner:
docker model run hf.co/JackFram/llama-68m
Comprehensive Evaluation Results & Model Card Update for JackFram/llama-68m
TO: JackFram
DATE: June 3, 2026
SUBJECT: Comprehensive Evaluation Results & Model Card Update for JackFram/llama-68m
I wanted to congratulate you on your work with JackFram/llama-68m. Knowing that this 68M parameter architecture was intentionally trained as a lightweight, base Small Speculative Model for SpecInfer research, it is highly intriguing to see how it performs across standard LLM evaluation frameworks.
I have completed a thorough evaluation suite spanning multiple language, knowledge, and reasoning benchmarks. The results below outline its foundational capabilities and offer a quantified perspective on its performance outside of its primary role in speculative decoding.
Benchmark Evaluation Metrics
| Category | Benchmark | Metric | Score / Value | Status |
|---|---|---|---|---|
| Linguistics & Grammar | BLiMP | Accuracy | 70.57% | Success |
| Commonsense & Reasoning | PIQA | Normalized Accuracy | 59.25% | Success |
| BoolQ | Accuracy | 57.71% | Success | |
| COPA | Accuracy | 53.00% | Success | |
| WinoGrande | Accuracy | 50.59% | Success | |
| HellaSwag | Normalized Accuracy | 29.04% | Success | |
| RACE | Accuracy | 25.36% | Success | |
| CommonsenseQA | Accuracy | 19.82% | Success | |
| Academic & Knowledge | SciQ | Normalized Accuracy | 57.80% | Success |
| ARC-Easy | Normalized Accuracy | 35.98% | Success | |
| OpenBookQA | Normalized Accuracy | 25.60% | Success | |
| MMLU | Accuracy | 22.96% | Success | |
| ARC-Challenge | Normalized Accuracy | 22.87% | Success | |
| Language Modeling | TriviaQA | Accuracy | TriviaQA Standard | Success |
| LAMBADA | Accuracy | 13.24% | Success | |
| C4-Perplexity | Word Perplexity | 205.79 | Success | |
| WikiText-2 | Word Perplexity | 306.79 | Success |
Notes on Failed Tasks: The
ArithmeticandSocialIQAbenchmarks failed during execution due to runtime pipeline incompatibilities, yielding no score. Total evaluation runtime was 44.74 minutes.
Key Takeaways & Recommendation
For a compact model trained primarily on Wikipedia and fractions of the C4 dataset, its strong baseline performance on BLiMP (70.57%), PIQA (59.25%), and SciQ (57.80%) is remarkable. It proves that the model maintains surprisingly robust linguistic and reasoning patterns despite its tiny footprint.
Since your current Hugging Face repository notes that no formal evaluations had been published yet, I highly recommend adding this structured benchmark table to your model card. It will serve as an excellent point of reference for researchers seeking to evaluate small draft models for speculative inference pipelines.
Kudos again on an excellent contribution to efficient serving research! Let me know if you would like to sync on the environment parameters used for this run.
Best regards,
Akshit
Hi Akshit,
Thanks a lot for the evaluation numbers! They are really helpful for the community. I will add the benchmark scores accordingly and acknowledge your contribution, thanks again!