thanhkt commited on
Commit
9fc3eb3
·
verified ·
1 Parent(s): 9614041

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -28
README.md CHANGED
@@ -1,30 +1,74 @@
1
- id: model_card
2
- name: Model Card
3
- type: markdown
4
- content: |-
5
- ---
6
- base_model: unsloth/Qwen2.5-Math-1.5B-Instruct-bnb-4bit
7
- language:
8
- - en
9
- license: apache-2.0
10
- tags:
11
- - text-generation-inference
12
- - transformers
13
- - unsloth
14
- - qwen2
15
- - trl
16
- ---
17
-
18
- # Uploaded Model
19
-
20
- - **Developed by:** thanhkt
21
- - **License:** apache-2.0
22
- - **Finetuned from model:** unsloth/Qwen2.5-Math-1.5B-Instruct-bnb-4bit
23
-
24
- This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
25
-
26
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
27
-
28
- ## Dataset
29
 
30
  The model was trained on the Nvidia-mathinstuct dataset, which consists of 100,000 rows. This dataset was specifically chosen to enhance the model's mathematical reasoning and instruction-following capabilities.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Qwen2.5-Math-1.5B-Instruct-bnb-4bit
3
+ language:
4
+ - en
5
+ license: apache-2.0
6
+ tags:
7
+ - text-generation-inference
8
+ - transformers
9
+ - unsloth
10
+ - qwen2
11
+ - trl
12
+ ---
13
+
14
+ # Uploaded model
15
+
16
+ - **Developed by:** thanhkt
17
+ - **License:** apache-2.0
18
+ - **Finetuned from model :** unsloth/Qwen2.5-Math-1.5B-Instruct-bnb-4bit
19
+
20
+ This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
21
+
22
+ ## Dataset
 
 
 
 
 
 
23
 
24
  The model was trained on the Nvidia-mathinstuct dataset, which consists of 100,000 rows. This dataset was specifically chosen to enhance the model's mathematical reasoning and instruction-following capabilities.
25
+
26
+ ### 🤗 Hugging Face Transformers
27
+
28
+ Qwen2.5-Math can be deployed and infered in the same way as [Qwen2.5](https://github.com/QwenLM/Qwen2.5). Here we show a code snippet to show you how to use the chat model with `transformers`:
29
+
30
+ ```python
31
+
32
+ from unsloth import FastLanguageModel
33
+ import torch
34
+ max_seq_length = 4096 # Choose any! We auto support RoPE Scaling internally!
35
+ dtype = None # None for auto detection. Float16 for Tesla T4, V100, Bfloat16 for Ampere+
36
+ load_in_4bit = True # Use 4bit quantization to reduce memory usage. Can be False.
37
+
38
+
39
+ model, tokenizer = FastLanguageModel.from_pretrained(
40
+ model_name = "thanhkt/Qwen2.5-1.5B-MathInstruct",
41
+ max_seq_length = max_seq_length,
42
+ dtype = dtype,
43
+ load_in_4bit = load_in_4bit,
44
+ # token = "hf_...", # use one if using gated models like meta-llama/Llama-2-7b-hf
45
+ )
46
+ alpaca_prompt = """Below...
47
+
48
+ ### Instruct:
49
+ {}
50
+
51
+ ### Input:
52
+ {}
53
+
54
+ ### Output:
55
+ {}"""
56
+
57
+ FastLanguageModel.for_inference(model) # Enable native 2x faster inference
58
+ inputs = tokenizer(
59
+ [
60
+ alpaca_prompt.format(
61
+ """A company wants to make a pipeline from a point A on shore to a point B on an island. The island is 6km from the coast. The price to build an onshore pipeline is $50,000 per kilometer, and $130,000 per kilometer to build
62
+
63
+ underwater. B' is the point on the coast so that BB' is perpendicular to the coast. The distance from A to B' is 9km. Position C on section AB' so that when connecting pipes according to ACB, the amount is minimal. At that time, C is one paragraph away from A by:
64
+
65
+ A. 6.5km B. 6km C. 0km D.9km""", # instruction
66
+ "", # input
67
+ "", # output - leave this blank for generation!
68
+ )
69
+ ], return_tensors = "pt").to("cuda")
70
+
71
+ from transformers import TextStreamer
72
+ text_streamer = TextStreamer(tokenizer)
73
+ _ = model.generate(**inputs, streamer = text_streamer, max_new_tokens = 512)
74
+ ```