aashish1904 commited on
Commit
2adef76
·
verified ·
1 Parent(s): 5175254

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ base_model:
5
+ - Qwen/Qwen2.5-0.5B-Instruct
6
+ language:
7
+ - en
8
+ license: apache-2.0
9
+ tags:
10
+ - text-generation-inference
11
+ - transformers
12
+ - unsloth
13
+ - qwen2
14
+ - trl
15
+ - sft
16
+
17
+ ---
18
+
19
+ [![QuantFactory Banner](https://lh7-rt.googleusercontent.com/docsz/AD_4nXeiuCm7c8lEwEJuRey9kiVZsRn2W-b4pWlu3-X534V3YmVuVc2ZL-NXg2RkzSOOS2JXGHutDuyyNAUtdJI65jGTo8jT9Y99tMi4H4MqL44Uc5QKG77B0d6-JfIkZHFaUA71-RtjyYZWVIhqsNZcx8-OMaA?key=xt3VSDoCbmTY7o-cwwOFwQ)](https://hf.co/QuantFactory)
20
+
21
+
22
+ # QuantFactory/Qwen2.5-0.5b-RBase-GGUF
23
+ This is quantized version of [KingNish/Qwen2.5-0.5b-RBase](https://huggingface.co/KingNish/Qwen2.5-0.5b-RBase) created using llama.cpp
24
+
25
+ # Original Model Card
26
+
27
+
28
+ # Qwen 2.5 0.5B Model
29
+
30
+ ## Model Description
31
+
32
+ This model is a compact yet powerful language model trained to answer a variety of questions with impressive quality. Despite its smaller size, it has demonstrated performance comparable to Llama 3.2 1B, and in some cases, it even outperforms it. This model was specifically trained on a 12,800 rows of the Magpie 300k Dataset.
33
+
34
+ ## Performance
35
+
36
+ The Qwen 2.5 model has shown promising results in various tests, including the "strawberry test, Decimal Comparison test" where it successfully provided accurate answers. However, it is important to note that, like many models of its size, it may occasionally produce incorrect answers or flawed reasoning. Continuous improvements and full training are planned to enhance its performance further.
37
+
38
+ ## How to Use
39
+
40
+ To use the Qwen 2.5 model, you can load it using the Hugging Face Transformers library. Here’s a simple example:
41
+
42
+ ```python
43
+ from transformers import AutoModelForCausalLM, AutoTokenizer
44
+
45
+ model_name = "KingNish/Qwen2.5-0.5b-Test-ft"
46
+
47
+ model = AutoModelForCausalLM.from_pretrained(
48
+ model_name,
49
+ torch_dtype="auto",
50
+ device_map="auto"
51
+ )
52
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
53
+
54
+ prompt = "Which is greater 9.9 or 9.11 ??"
55
+ messages = [
56
+ {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
57
+ {"role": "user", "content": prompt}
58
+ ]
59
+ text = tokenizer.apply_chat_template(
60
+ messages,
61
+ tokenize=False,
62
+ add_generation_prompt=True
63
+ )
64
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
65
+
66
+ generated_ids = model.generate(
67
+ **model_inputs,
68
+ max_new_tokens=512
69
+ )
70
+ generated_ids = [
71
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
72
+ ]
73
+
74
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
75
+
76
+ print(response)
77
+ ```
78
+
79
+ ## Future Work
80
+
81
+ I am actively working on improving the Qwen 2.5 model by training it on a larger dataset.
82
+
83
+ # Uploaded model
84
+
85
+ - **Developed by:** KingNish
86
+ - **License:** apache-2.0
87
+ - **Finetuned from model :** Qwen/Qwen2.5-0.5B-Instruct
88
+
89
+ This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
90
+
91
+ [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)