Instructions to use eevoire/json-extractor-demo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use eevoire/json-extractor-demo with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir json-extractor-demo eevoire/json-extractor-demo
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
File size: 1,818 Bytes
ac737b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | {
"evaluated_at": "2026-07-02T13:15:31+00:00",
"base_model": "mlx-community/Qwen2.5-0.5B-Instruct-4bit",
"task": "json-extractor-demo",
"adapter": "runs/json-extractor-demo/adapters",
"test_set": "runs/json-extractor-demo/data/test.jsonl",
"decoding": {
"temperature": 0.0,
"max_tokens": 120,
"chat_template_kwargs": {}
},
"metrics": {
"examples": 40,
"exact_match": 1.0,
"json_examples": 40,
"json_validity": 1.0,
"field_accuracy": 1.0,
"mean_latency_s": 0.164
},
"samples": [
{
"expected": "{\"title\": \"Buy a birthday gift\", \"tags\": [\"shopping\", \"tomorrow\"], \"priority\": \"normal\"}",
"generated": "{\"title\": \"Buy a birthday gift\", \"tags\": [\"shopping\", \"tomorrow\"], \"priority\": \"normal\"}"
},
{
"expected": "{\"title\": \"Buy a birthday gift\", \"tags\": [\"shopping\", \"next-week\"], \"priority\": \"normal\"}",
"generated": "{\"title\": \"Buy a birthday gift\", \"tags\": [\"shopping\", \"next-week\"], \"priority\": \"normal\"}"
},
{
"expected": "{\"title\": \"Fix the kitchen tap\", \"tags\": [\"home\", \"friday\"], \"priority\": \"normal\"}",
"generated": "{\"title\": \"Fix the kitchen tap\", \"tags\": [\"home\", \"friday\"], \"priority\": \"normal\"}"
},
{
"expected": "{\"title\": \"Pay the electricity bill\", \"tags\": [\"finance\", \"today\"], \"priority\": \"high\"}",
"generated": "{\"title\": \"Pay the electricity bill\", \"tags\": [\"finance\", \"today\"], \"priority\": \"high\"}"
},
{
"expected": "{\"title\": \"Clean the garage\", \"tags\": [\"home\", \"tomorrow\"], \"priority\": \"normal\"}",
"generated": "{\"title\": \"Clean the garage\", \"tags\": [\"home\", \"tomorrow\"], \"priority\": \"normal\"}"
}
]
}
|