Views
No views yet

| Model | Arena Hard v2 | IFEval | IFBench | GSM Plus | GPQA Diamond | AgentHarm |
|---|---|---|---|---|---|---|
| Locai L1-Large | 72.9 | 92.45 | 40.14 | 90.43 | 63.63 | 27.7 |
| Qwen3-235B-Instruct | 70.8 | 91.97 | 39.46 | 90.48 | 62.63 | 33.4 |
| GPT-5 | 68.9 | 91.85 | 41.5 | 89.14 | 70.20 | 12.8 |
| Claude Sonnet 4.5 | 52.8 | 92.57 | 34.69 | 91.48 | 68.69 | 16.6 |
| Gemini 2.5 Flash | 54.4 | 91.13 | 34.01 | 89.67 | 35.35 | 40.5 |
| DeepSeek V3.2 | 52.5 | 90.89 | 35.71 | 90.10 | 80.30 | 18.2 |
| Mistral Medium | 37.9 | 81.65 | 28.91 | 89.62 | 71.21 | 69.1 |
pip install transformers torch accelerate1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "locailabs/locai-l1-large-FP8"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(
6 model_name,
7 device_map="auto",
8 torch_dtype="auto"
9)
10
11messages = [
12 {"role": "user", "content": "Explain quantum entanglement in simple terms"}
13]
14
15text = tokenizer.apply_chat_template(
16 messages,
17 tokenize=False,
18 add_generation_prompt=True
19)
20
21inputs = tokenizer([text], return_tensors="pt").to(model.device)
22
23outputs = model.generate(
24 **inputs,
25 max_new_tokens=2048,
26 temperature=0.7,
27 top_k=20,
28 top_p=0.8
29)
30
31response = tokenizer.decode(outputs[0], skip_special_tokens=True)
32print(response)1from vllm import LLM, SamplingParams
2
3llm = LLM(model="locailabs/locai-l1-large-FP8")
4
5sampling_params = SamplingParams(
6 temperature=0.7,
7 top_k=20,
8 top_p=0.8,
9)
10
11prompts = [
12 "Explain quantum entanglement in simple terms."
13]
14
15outputs = llm.generate(prompts, sampling_params)
16
17for output in outputs:
18 print(output.outputs[0].text)1@misc{locai2025l1large,
2 title={Locai L1-Large: Self-Improving Language Models with Forget-Me-Not},
3 author={Locai Labs},
4 year={2025},
5}