Text Generation
PEFT
Safetensors
Transformers
qwen2
lora
coding
code-generation
conversational
text-generation-inference
Instructions to use girish00/ConicAI_LLM_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use girish00/ConicAI_LLM_model with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-Coder-0.5B-Instruct") model = PeftModel.from_pretrained(base_model, "girish00/ConicAI_LLM_model") - Transformers
How to use girish00/ConicAI_LLM_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="girish00/ConicAI_LLM_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("girish00/ConicAI_LLM_model") model = AutoModelForCausalLM.from_pretrained("girish00/ConicAI_LLM_model") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use girish00/ConicAI_LLM_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "girish00/ConicAI_LLM_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "girish00/ConicAI_LLM_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/girish00/ConicAI_LLM_model
- SGLang
How to use girish00/ConicAI_LLM_model with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "girish00/ConicAI_LLM_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "girish00/ConicAI_LLM_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "girish00/ConicAI_LLM_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "girish00/ConicAI_LLM_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use girish00/ConicAI_LLM_model with Docker Model Runner:
docker model run hf.co/girish00/ConicAI_LLM_model
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -19,106 +19,64 @@ tags:
|
|
| 19 |
### Model Description
|
| 20 |
|
| 21 |
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
-
This model is a fine-tuned coding assistant built on top of Qwen2.5-Coder using LoRA (Low-Rank Adaptation).
|
| 23 |
-
It is designed to improve performance in:
|
| 24 |
|
| 25 |
-
- Code generation
|
| 26 |
-
- Debugging
|
| 27 |
-
- Code explanation
|
| 28 |
-
- Code optimization
|
| 29 |
|
| 30 |
-
The model also incorporates structured outputs including explanation, confidence, and relevancy signals.
|
| 31 |
-
|
| 32 |
-
---
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
|
|
|
| 35 |
|
|
|
|
| 36 |
|
| 37 |
-
- **
|
| 38 |
-
- **
|
| 39 |
-
- **
|
| 40 |
-
- **Model type:** [Causal Language Model (Code Generation & Debugging)]
|
| 41 |
-
- **Language(s) (NLP):** [Python, general programming concepts]
|
| 42 |
-
- **License:** [Apache 2.0]
|
| 43 |
-
- **Finetuned from model [optional]:** [Qwen/Qwen2.5-Coder-0.5B-Instruct]
|
| 44 |
|
|
|
|
| 45 |
|
|
|
|
| 46 |
|
| 47 |
### Direct Use
|
| 48 |
|
| 49 |
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
|
| 51 |
-
[
|
| 52 |
-
- Explain code logic
|
| 53 |
-
- Optimize code
|
| 54 |
-
- Generate small functions ]
|
| 55 |
|
| 56 |
### Downstream Use [optional]
|
| 57 |
|
| 58 |
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 59 |
|
| 60 |
-
[
|
| 61 |
-
- Educational tools for learning programming
|
| 62 |
-
- AI-powered debugging tools
|
| 63 |
-
]
|
| 64 |
|
| 65 |
### Out-of-Scope Use
|
| 66 |
|
| 67 |
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 68 |
|
| 69 |
-
[
|
| 70 |
-
- Security-sensitive code generation
|
| 71 |
-
- Large-scale system design ]
|
| 72 |
|
| 73 |
## Bias, Risks, and Limitations
|
| 74 |
|
| 75 |
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 76 |
|
| 77 |
-
[
|
| 78 |
-
- May hallucinate fixes for ambiguous inputs
|
| 79 |
-
- Limited to training dataset scope
|
| 80 |
-
- Confidence scores are heuristic (not calibrated)
|
| 81 |
-
]
|
| 82 |
|
| 83 |
### Recommendations
|
| 84 |
|
| 85 |
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 86 |
|
| 87 |
-
|
| 88 |
-
- Use human review for critical applications
|
| 89 |
-
- Combine with test cases for reliability
|
| 90 |
|
| 91 |
## How to Get Started with the Model
|
| 92 |
|
| 93 |
Use the code below to get started with the model.
|
| 94 |
|
| 95 |
-
|
| 96 |
-
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 97 |
-
from peft import PeftModel
|
| 98 |
-
|
| 99 |
-
# Base model
|
| 100 |
-
base_model = "Qwen/Qwen2.5-Coder-0.5B-Instruct"
|
| 101 |
-
|
| 102 |
-
# ConicAI LLM model
|
| 103 |
-
adapter_model = "girish00/ConicAI_LLM_model"
|
| 104 |
-
|
| 105 |
-
# Load tokenizer
|
| 106 |
-
tokenizer = AutoTokenizer.from_pretrained(base_model)
|
| 107 |
-
|
| 108 |
-
# Load base model
|
| 109 |
-
model = AutoModelForCausalLM.from_pretrained(base_model)
|
| 110 |
-
|
| 111 |
-
# Load fine-tuned adapter
|
| 112 |
-
model = PeftModel.from_pretrained(model, adapter_model)
|
| 113 |
-
|
| 114 |
-
# Test prompt
|
| 115 |
-
prompt = "Fix this code: def add(a,b) return a+b"
|
| 116 |
-
|
| 117 |
-
inputs = tokenizer(prompt, return_tensors="pt")
|
| 118 |
-
outputs = model.generate(**inputs, max_new_tokens=200)
|
| 119 |
-
|
| 120 |
-
print(tokenizer.decode(outputs[0]))
|
| 121 |
-
```
|
| 122 |
|
| 123 |
## Training Details
|
| 124 |
|
|
@@ -126,31 +84,20 @@ print(tokenizer.decode(outputs[0]))
|
|
| 126 |
|
| 127 |
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 128 |
|
| 129 |
-
[
|
| 130 |
-
Includes:
|
| 131 |
-
Bug fixing tasks
|
| 132 |
-
Code explanation
|
| 133 |
-
Optimization tasks
|
| 134 |
-
Structured outputs (explanation, confidence, relevancy)]
|
| 135 |
|
| 136 |
### Training Procedure
|
| 137 |
|
| 138 |
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 139 |
-
Method: LoRA fine-tuning
|
| 140 |
-
Framework: Transformers + PEFT
|
| 141 |
|
| 142 |
#### Preprocessing [optional]
|
| 143 |
|
| 144 |
-
|
| 145 |
|
| 146 |
|
| 147 |
#### Training Hyperparameters
|
| 148 |
|
| 149 |
-
- **Training regime:** [
|
| 150 |
-
Epochs: 1–2
|
| 151 |
-
Learning rate: 2e-4
|
| 152 |
-
Max sequence length: 512
|
| 153 |
-
Quantization: 4-bit (for efficient training)] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 154 |
|
| 155 |
#### Speeds, Sizes, Times [optional]
|
| 156 |
|
|
@@ -161,10 +108,6 @@ Quantization: 4-bit (for efficient training)] <!--fp32, fp16 mixed precision, bf
|
|
| 161 |
## Evaluation
|
| 162 |
|
| 163 |
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 164 |
-
Metrics
|
| 165 |
-
Qualitative evaluation (manual testing)
|
| 166 |
-
Relevancy score (embedding similarity)
|
| 167 |
-
Hallucination detection (syntax validation)
|
| 168 |
|
| 169 |
### Testing Data, Factors & Metrics
|
| 170 |
|
|
@@ -178,20 +121,17 @@ Hallucination detection (syntax validation)
|
|
| 178 |
|
| 179 |
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 180 |
|
|
|
|
| 181 |
|
| 182 |
#### Metrics
|
| 183 |
|
| 184 |
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 185 |
|
| 186 |
-
[
|
| 187 |
-
Relevancy score (embedding similarity)
|
| 188 |
-
Hallucination detection (syntax validation)]
|
| 189 |
|
| 190 |
### Results
|
| 191 |
|
| 192 |
-
|
| 193 |
-
Better explanation quality
|
| 194 |
-
Reduced syntax errors
|
| 195 |
|
| 196 |
#### Summary
|
| 197 |
|
|
@@ -207,23 +147,23 @@ Reduced syntax errors
|
|
| 207 |
|
| 208 |
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 209 |
|
|
|
|
| 210 |
|
| 211 |
-
- **Hardware Type:**
|
| 212 |
-
- **Hours used:**
|
| 213 |
- **Cloud Provider:** [More Information Needed]
|
| 214 |
- **Compute Region:** [More Information Needed]
|
| 215 |
-
- **Carbon Emitted:**
|
| 216 |
|
| 217 |
## Technical Specifications [optional]
|
| 218 |
|
| 219 |
### Model Architecture and Objective
|
| 220 |
|
| 221 |
-
[
|
| 222 |
-
Fine-tuning: LoRA adapter]
|
| 223 |
|
| 224 |
### Compute Infrastructure
|
| 225 |
|
| 226 |
-
|
| 227 |
|
| 228 |
#### Hardware
|
| 229 |
|
|
@@ -231,19 +171,12 @@ Fine-tuning: LoRA adapter]
|
|
| 231 |
|
| 232 |
#### Software
|
| 233 |
|
| 234 |
-
[
|
| 235 |
-
PEFT (v0.19.0)
|
| 236 |
-
Datasets]
|
| 237 |
|
| 238 |
## Citation [optional]
|
| 239 |
|
| 240 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 241 |
-
|
| 242 |
-
author = {Girish},
|
| 243 |
-
title = {Coding LLM Model},
|
| 244 |
-
year = {2026},
|
| 245 |
-
publisher = {Hugging Face}
|
| 246 |
-
}
|
| 247 |
**BibTeX:**
|
| 248 |
|
| 249 |
[More Information Needed]
|
|
|
|
| 19 |
### Model Description
|
| 20 |
|
| 21 |
<!-- Provide a longer summary of what this model is. -->
|
|
|
|
|
|
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
+
## Uses
|
| 42 |
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
|
| 45 |
### Direct Use
|
| 46 |
|
| 47 |
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
|
| 49 |
+
[More Information Needed]
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
### Downstream Use [optional]
|
| 52 |
|
| 53 |
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
|
| 55 |
+
[More Information Needed]
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
### Out-of-Scope Use
|
| 58 |
|
| 59 |
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
|
| 61 |
+
[More Information Needed]
|
|
|
|
|
|
|
| 62 |
|
| 63 |
## Bias, Risks, and Limitations
|
| 64 |
|
| 65 |
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
|
| 67 |
+
[More Information Needed]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
|
| 69 |
### Recommendations
|
| 70 |
|
| 71 |
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
|
|
|
|
|
|
| 74 |
|
| 75 |
## How to Get Started with the Model
|
| 76 |
|
| 77 |
Use the code below to get started with the model.
|
| 78 |
|
| 79 |
+
[More Information Needed]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
|
| 81 |
## Training Details
|
| 82 |
|
|
|
|
| 84 |
|
| 85 |
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 86 |
|
| 87 |
+
[More Information Needed]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
|
| 89 |
### Training Procedure
|
| 90 |
|
| 91 |
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
|
|
|
|
|
|
| 92 |
|
| 93 |
#### Preprocessing [optional]
|
| 94 |
|
| 95 |
+
[More Information Needed]
|
| 96 |
|
| 97 |
|
| 98 |
#### Training Hyperparameters
|
| 99 |
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
|
| 102 |
#### Speeds, Sizes, Times [optional]
|
| 103 |
|
|
|
|
| 108 |
## Evaluation
|
| 109 |
|
| 110 |
<!-- This section describes the evaluation protocols and provides the results. -->
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
|
| 112 |
### Testing Data, Factors & Metrics
|
| 113 |
|
|
|
|
| 121 |
|
| 122 |
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
|
| 124 |
+
[More Information Needed]
|
| 125 |
|
| 126 |
#### Metrics
|
| 127 |
|
| 128 |
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
|
| 130 |
+
[More Information Needed]
|
|
|
|
|
|
|
| 131 |
|
| 132 |
### Results
|
| 133 |
|
| 134 |
+
[More Information Needed]
|
|
|
|
|
|
|
| 135 |
|
| 136 |
#### Summary
|
| 137 |
|
|
|
|
| 147 |
|
| 148 |
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
|
| 150 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 151 |
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
- **Cloud Provider:** [More Information Needed]
|
| 155 |
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
|
| 158 |
## Technical Specifications [optional]
|
| 159 |
|
| 160 |
### Model Architecture and Objective
|
| 161 |
|
| 162 |
+
[More Information Needed]
|
|
|
|
| 163 |
|
| 164 |
### Compute Infrastructure
|
| 165 |
|
| 166 |
+
[More Information Needed]
|
| 167 |
|
| 168 |
#### Hardware
|
| 169 |
|
|
|
|
| 171 |
|
| 172 |
#### Software
|
| 173 |
|
| 174 |
+
[More Information Needed]
|
|
|
|
|
|
|
| 175 |
|
| 176 |
## Citation [optional]
|
| 177 |
|
| 178 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 180 |
**BibTeX:**
|
| 181 |
|
| 182 |
[More Information Needed]
|