Mercy-62 commited on
Commit
fa82e16
·
verified ·
1 Parent(s): 23c9681

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -19
README.md CHANGED
@@ -1,22 +1,28 @@
1
  ---
2
- base_model: unsloth/qwen2.5-7b-unsloth-bnb-4bit
3
- tags:
4
- - text-generation-inference
5
- - transformers
6
- - unsloth
7
- - qwen2
8
- - trl
9
- license: apache-2.0
10
  language:
11
  - en
12
- ---
13
-
14
- # Uploaded model
15
-
16
- - **Developed by:** Mercy-62
17
- - **License:** apache-2.0
18
- - **Finetuned from model :** unsloth/qwen2.5-7b-unsloth-bnb-4bit
19
-
20
- This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth)
21
-
22
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
 
2
  language:
3
  - en
4
+ license: apache-2.0
5
+ license_name: apache-2.0
6
+ license_link: https://www.apache.org/licenses/LICENSE-2.0
7
+ library_name: transformers
8
+ tags:
9
+ - code-generation
10
+ - python
11
+ - qwen
12
+ - fine-tuned
13
+ - lora
14
+ - programming
15
+ pipeline_tag: text-generation
16
+ datasets:
17
+ - CodeAlpaca-20k
18
+ - mbpp
19
+ - HumanEval
20
+ base_model: Qwen/Qwen2.5-7B-Instruct
21
+ widget:
22
+ - text: "### Instruction:\nWrite a Python function to reverse a string\n\n### Input:\n\n\n### Response:"
23
+ example_title: "Reverse String"
24
+ - text: "### Instruction:\nImplement binary search algorithm\n\n### Input:\nReturn -1 if element not found\n\n### Response:"
25
+ example_title: "Binary Search"
26
+ - text: "### Instruction:\nCreate a class for a Stack\n\n### Input:\nInclude push, pop, and is_empty methods\n\n### Response:"
27
+ example_title: "Stack Class"
28
+ ---