# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("TinyPixel/elm-test")
model = AutoModelForCausalLM.from_pretrained("TinyPixel/elm-test")Quick Links
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 43.74 |
| ARC (25-shot) | 53.16 |
| HellaSwag (10-shot) | 78.98 |
| MMLU (5-shot) | 47.04 |
| TruthfulQA (0-shot) | 39.51 |
| Winogrande (5-shot) | 74.35 |
| GSM8K (5-shot) | 7.51 |
| DROP (3-shot) | 5.65 |
- Downloads last month
- 1,062
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="TinyPixel/elm-test")