File size: 3,270 Bytes
73b874a
 
dc14a16
929d595
044ae14
f5f3968
 
 
 
 
 
 
 
 
 
 
 
ad52d8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382ec6f
6dc36b6
 
 
 
 
 
 
 
 
 
 
 
382ec6f
 
6dc36b6
382ec6f
6dc36b6
382ec6f
 
6dc36b6
 
382ec6f
 
 
6dc36b6
382ec6f
 
 
 
6dc36b6
382ec6f
6dc36b6
 
382ec6f
 
6dc36b6
382ec6f
6dc36b6
382ec6f
 
 
 
 
 
6dc36b6
382ec6f
6dc36b6
 
382ec6f
6dc36b6
382ec6f
 
6dc36b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
---
library_name: transformers
base_model:
- FlameF0X/Qwen2-0.2B-pt
license: apache-2.0
datasets:
- Salesforce/wikitext
- roneneldan/TinyStories
- FlameF0X/arXiv-AI-ML
- Skylion007/openwebtext
- flytech/python-codes-25k
- bookcorpus/bookcorpus
- HuggingFaceH4/ultrachat_200k
- openai/gsm8k
- microsoft/orca-math-word-problems-200k
- laion/OIG
- microsoft/wiki_qa
metrics:
- accuracy
model-index:
  - name: FlameF0X/Qwen2-0.2B-it
    results:
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          id: openai/gsm8k
          name: GSM8K
          type: gsm8k
          config: main
          split: test
        metrics:
          - name: Accuracy
            type: accuracy
            value: 2.00
            verified: false
        source:
          name: Local Benchmark
          url: https://huggingface.co/FlameF0X/Qwen2-0.2B-it
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          id: TIGER-Lab/MMLU-Pro
          name: MMLU-Pro
          type: TIGER-Lab/MMLU-Pro
          config: default
          split: test
        metrics:
          - name: Accuracy
            type: accuracy
            value: 4.00
            verified: false
        source:
          name: Local Benchmark
          url: https://huggingface.co/FlameF0X/Qwen2-0.2B-it
---

## Evaluation Results

| Benchmark | Score |
|-----------|-------|
| GSM8K (test) | 2.00% |
| MMLU-Pro (test) | 4.00% |

> Results obtained via local evaluation. Given the model size (0.2B parameters), low benchmark scores are expected.

## Model Usage
```python
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM

model_path = "FlameF0X/Qwen2-0.2B-it"

tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_path,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True
)

messages = [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "Explain how a transformer model works in one sentence."}
]

text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True
)

model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=128,
    do_sample=True,
    temperature=0.7
)

generated_ids = [
    output_ids[len(input_ids):]
    for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]

response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(f"--- Assistant Response ---\n{response}")
```

## Training Data

This model was instruction-tuned on a mixture of:

- `Salesforce/wikitext` β€” General text
- `roneneldan/TinyStories` β€” Short story generation
- `FlameF0X/arXiv-AI-ML` β€” AI/ML research papers
- `Skylion007/openwebtext` β€” Web text
- `flytech/python-codes-25k` β€” Python code
- `bookcorpus/bookcorpus` β€” Books
- `HuggingFaceH4/ultrachat_200k` β€” Instruction following
- `openai/gsm8k` β€” Math reasoning
- `microsoft/orca-math-word-problems-200k` β€” Math word problems
- `laion/OIG` β€” Open instruction generalist
- `microsoft/wiki_qa` β€” Question answering