Views
No views yet

“何が綴られていたのか、私たちの文明では到底理解できない”
(所阐述的内容超出了我们文明的理解范围)
— sasakure.UK
1
2# Use a pipeline as a high-level helper
3
4from transformers import pipeline
5
6messages = [
7 {"role": "user", "content": "Who are you?"},
8]
9pipe = pipeline("text-generation", model="Minami-su/Amara-o1-7B-Qwen")
10pipe(messages)
11
12
13# Load model directly
14
15from transformers import AutoTokenizer, AutoModelForCausalLM
16
17tokenizer = AutoTokenizer.from_pretrained("Minami-su/Amara-o1-7B-Qwen")
18model = AutoModelForCausalLM.from_pretrained("Minami-su/Amara-o1-7B-Qwen")| Model | Arena-Hard | AlpacaEval 2.0 |
|---|---|---|
| DeepSeek-V2.5-0905 | 76.2 | 50.5 |
| Qwen2.5-72B-Instruct | 81.2 | 49.1 |
| LLaMA-3.1 405B | 69.3 | 40.5 |
| Amara-o1-7B-Qwen | ? | 42.12 |
| GPT-4o-0513 | 80.4 | 51.1 |
| Claude-Sonnet-3.5-1022 | 85.2 | 52.0 |
| DeepSeek-V3 | 85.5 | 70.0 |