KickItLikeShika commited on
Commit
cc1e866
·
verified ·
1 Parent(s): 7675914

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # qwen-2.5-instruct-sdft-science
2
+ This model is a fine-tuned version of [Qwen/Qwen2.5-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct).
3
+ It has been trained using [TRL](https://github.com/huggingface/trl).
4
+
5
+ This model has been trained using [Self-Distillation Fine-Tuning](https://arxiv.org/abs/2601.19897) on the Released Science dataset.
6
+ Within this repo, you can find `/eval` directory, containing the evaluation results on the Tool Use evaluation split.
7
+ The model has been trained for 300 steps (the best checkopint we have obtained), scoring 64.5% on the evaluation set.
8
+
9
+ Our Reproduction Report of Tool Use: https://github.com/KickItLikeShika/sdft-reproduction-note
10
+
11
+ ## Quick start
12
+
13
+ ```python
14
+ from transformers import pipeline
15
+
16
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
17
+ generator = pipeline("text-generation", model="KickItLikeShika/qwen-2.5-7b-instruct-sdft-science", device="cuda")
18
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
19
+ print(output["generated_text"])
20
+ ```
21
+
22
+ ## Training procedure
23
+ W&B Report Tool Use Reproduction Report
24
+ https://api.wandb.ai/links/egyttsteam/d97ty5d9
25
+
26
+ ### Framework versions
27
+
28
+ - TRL: 0.24.0
29
+ - Transformers: 4.57.1
30
+ - Pytorch: 2.9.0
31
+ - Datasets: 4.3.0
32
+ - Tokenizers: 0.22.2