aniruddhr04 commited on
Commit
89fc4dc
·
verified ·
1 Parent(s): 362ca61

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -3
README.md CHANGED
@@ -1,3 +1,63 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen2.5-Coder-3B-Instruct
4
+ tags:
5
+ - merge-conflict-resolution
6
+ - code
7
+ - qwen
8
+ - qwen2.5
9
+ - coding-assistant
10
+ - git
11
+ - version-control
12
+ - developer-tools
13
+ - code-generation
14
+ - conflict-resolution
15
+ pipeline_tag: text-generation
16
+ library_name: transformers
17
+ language:
18
+ - en
19
+ ---
20
+
21
+ # 🌬️ Breeze-3B: AI-Powered Git Merge Conflict Resolution
22
+
23
+ **Breeze-3B** is a specialized coding model fine-tuned on [Qwen/Qwen2.5-Coder-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct) to automatically resolve Git merge conflicts with reasoning and context awareness.
24
+
25
+ ## 🚀 Key Features
26
+
27
+ - **Intelligent Resolution**: Analyzes merge conflicts and provides reasoned solutions
28
+ - **Multi-Language Support**: Works across Python, JavaScript, Java, C++, and more
29
+ - **Preserves Code Quality**: Maintains general coding capabilities while specializing in conflict resolution
30
+ - **Multiple Deployment Options**: Cloud inference, local GGUF, and Ollama support
31
+ - **Lightweight**: Only 3B parameters - runs efficiently on consumer hardware
32
+
33
+ ## 📊 Model Details
34
+
35
+ | Property | Value |
36
+ |----------|-------|
37
+ | **Base Model** | Qwen/Qwen2.5-Coder-3B-Instruct |
38
+ | **Training Data** | 7,165 curated merge conflicts from ConGra dataset |
39
+ | **Fine-tuning Method** | LoRA (rank-8 adapters) |
40
+ | **Parameters** | 3B |
41
+ | **Quantization** | Q4_K_M GGUF available |
42
+ | **License** | Apache 2.0 |
43
+
44
+ ### Local Inference
45
+ ```python
46
+ from llama_cpp import Llama
47
+
48
+ llm = Llama(model_path="breeze-3b.Q4_K_M.gguf")
49
+ response = llm(f"Resolve this merge conflict:\n\n{conflict}")
50
+ print(response["choices"][0]["text"])
51
+ ```
52
+ ### Ollama Inference
53
+ ``` bash
54
+ ollama run hf.co/SoarAILabs/breeze-3b
55
+ ````
56
+
57
+ ## Features
58
+
59
+ - Resolves merge conflicts with reasoning
60
+ - Supports multiple programming languages
61
+ - No catastrophic forgetting of general coding skills
62
+ - Works with both cloud and local inference
63
+