seniruk commited on
Commit
70986a9
·
verified ·
1 Parent(s): 4376490

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -7,9 +7,14 @@ language:
7
  base_model:
8
  - Qwen/Qwen2.5-Coder-0.5B
9
  pipeline_tag: text-generation
 
 
10
  ---
11
 
12
- ### Finetuned-qwen2.5-coder-0.5B model on
 
 
 
13
 
14
  ```
15
  from llama_cpp import Llama
 
7
  base_model:
8
  - Qwen/Qwen2.5-Coder-0.5B
9
  pipeline_tag: text-generation
10
+ datasets:
11
+ - seniruk/git-diff_to_commit_msg_large
12
  ---
13
 
14
+ ### Finetuned-qwen2.5-coder-0.5B model on 100000 rows of a cutom dataset containing. git-differences and respective commit messages
15
+ ### Each row of the dataset was formatted as below to suit finetuning requirement of Qwen2.5-coder model
16
+ ### '### Instruction:\nGenerate a concise and meaningful commit message based on the provided git diff.\n\n### Git Diff:\n{a given git-difference as in the dataset rows}\n\n### Commit Message:\nAdding the squeezing in the cost fuction<|im_end|>'
17
+ ### Code for inference of the gguf model is given below
18
 
19
  ```
20
  from llama_cpp import Llama