Text Generation
Transformers
PyTorch
gpt_bigcode
code
text2text-generation
Eval Results (legacy)
text-generation-inference
Instructions to use codeparrot/starcoder-self-instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use codeparrot/starcoder-self-instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="codeparrot/starcoder-self-instruct")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("codeparrot/starcoder-self-instruct") model = AutoModelForCausalLM.from_pretrained("codeparrot/starcoder-self-instruct") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use codeparrot/starcoder-self-instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "codeparrot/starcoder-self-instruct" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "codeparrot/starcoder-self-instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/codeparrot/starcoder-self-instruct
- SGLang
How to use codeparrot/starcoder-self-instruct 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 "codeparrot/starcoder-self-instruct" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "codeparrot/starcoder-self-instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "codeparrot/starcoder-self-instruct" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "codeparrot/starcoder-self-instruct", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use codeparrot/starcoder-self-instruct with Docker Model Runner:
docker model run hf.co/codeparrot/starcoder-self-instruct
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
| 3 |
datasets:
|
| 4 |
- codeparrot/self-instruct-starcoder
|
| 5 |
pipeline_tag: text2text-generation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
|
|
|
|
| 3 |
datasets:
|
| 4 |
- codeparrot/self-instruct-starcoder
|
| 5 |
pipeline_tag: text2text-generation
|
| 6 |
+
metrics:
|
| 7 |
+
- code_eval
|
| 8 |
+
library_name: transformers
|
| 9 |
+
tags:
|
| 10 |
+
- code
|
| 11 |
+
model-index:
|
| 12 |
+
- name: StarCoder-SelfInstruct
|
| 13 |
+
results:
|
| 14 |
+
- task:
|
| 15 |
+
type: text-generation
|
| 16 |
+
dataset:
|
| 17 |
+
type: openai_humaneval
|
| 18 |
+
name: InstructHumanEval
|
| 19 |
+
metrics:
|
| 20 |
+
- name: pass@1
|
| 21 |
+
type: pass@1
|
| 22 |
+
value: 0.391
|
| 23 |
+
verified: false
|
| 24 |
+
- task:
|
| 25 |
+
type: text-generation
|
| 26 |
+
dataset:
|
| 27 |
+
type: openai_humaneval
|
| 28 |
+
name: HumanEval
|
| 29 |
+
metrics:
|
| 30 |
+
- name: pass@1
|
| 31 |
+
type: pass@1
|
| 32 |
+
value: 0.346
|
| 33 |
+
verified: false
|
| 34 |
---
|
| 35 |
|
| 36 |
|