Text Generation
Transformers
Safetensors
English
qwen2
code-generation
python
qwen
unsloth
coding-assistant
conversational
text-generation-inference
Instructions to use prawinrk/VCoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prawinrk/VCoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prawinrk/VCoder") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("prawinrk/VCoder") model = AutoModelForMultimodalLM.from_pretrained("prawinrk/VCoder") 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 Settings
- vLLM
How to use prawinrk/VCoder with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prawinrk/VCoder" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prawinrk/VCoder", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prawinrk/VCoder
- SGLang
How to use prawinrk/VCoder 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 "prawinrk/VCoder" \ --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": "prawinrk/VCoder", "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 "prawinrk/VCoder" \ --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": "prawinrk/VCoder", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use prawinrk/VCoder with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for prawinrk/VCoder to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for prawinrk/VCoder to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prawinrk/VCoder to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="prawinrk/VCoder", max_seq_length=2048, ) - Docker Model Runner
How to use prawinrk/VCoder with Docker Model Runner:
docker model run hf.co/prawinrk/VCoder
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,12 +6,11 @@ tags:
|
|
| 6 |
- python
|
| 7 |
- qwen
|
| 8 |
- unsloth
|
| 9 |
-
- lora
|
| 10 |
-
- gguf
|
| 11 |
- coding-assistant
|
| 12 |
language:
|
| 13 |
- en
|
| 14 |
pipeline_tag: text-generation
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# VCoder
|
|
@@ -116,30 +115,7 @@ Compatible with:
|
|
| 116 |
- Ollama
|
| 117 |
- LM Studio
|
| 118 |
- llama.cpp
|
| 119 |
-
- Open WebUI
|
| 120 |
-
- Jan
|
| 121 |
|
| 122 |
-
### Ollama
|
| 123 |
-
|
| 124 |
-
Create a Modelfile:
|
| 125 |
-
|
| 126 |
-
```text
|
| 127 |
-
FROM ./VCoder.Q8_0.gguf
|
| 128 |
-
```
|
| 129 |
-
|
| 130 |
-
Build:
|
| 131 |
-
|
| 132 |
-
```bash
|
| 133 |
-
ollama create vcoder -f Modelfile
|
| 134 |
-
```
|
| 135 |
-
|
| 136 |
-
Run:
|
| 137 |
-
|
| 138 |
-
```bash
|
| 139 |
-
ollama run vcoder
|
| 140 |
-
```
|
| 141 |
-
|
| 142 |
-
---
|
| 143 |
|
| 144 |
## Training Dataset
|
| 145 |
|
|
@@ -184,4 +160,6 @@ The dataset contains instruction-response pairs focused on Python programming ta
|
|
| 184 |
year={2026},
|
| 185 |
base_model={Qwen2.5-Coder-3B-Instruct}
|
| 186 |
}
|
| 187 |
-
```
|
|
|
|
|
|
|
|
|
| 6 |
- python
|
| 7 |
- qwen
|
| 8 |
- unsloth
|
|
|
|
|
|
|
| 9 |
- coding-assistant
|
| 10 |
language:
|
| 11 |
- en
|
| 12 |
pipeline_tag: text-generation
|
| 13 |
+
library_name: transformers
|
| 14 |
---
|
| 15 |
|
| 16 |
# VCoder
|
|
|
|
| 115 |
- Ollama
|
| 116 |
- LM Studio
|
| 117 |
- llama.cpp
|
|
|
|
|
|
|
| 118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
|
| 120 |
## Training Dataset
|
| 121 |
|
|
|
|
| 160 |
year={2026},
|
| 161 |
base_model={Qwen2.5-Coder-3B-Instruct}
|
| 162 |
}
|
| 163 |
+
```
|
| 164 |
+
Github : https://github.com/prawinrk
|
| 165 |
+
Email : prawinrk2005@gmail.com
|