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
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/modelcard.md?plain=1
|
| 3 |
+
# Doc / guide: https://huggingface.co/docs/hub/model-cards
|
| 4 |
+
{}
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Model Card for Model ID
|
| 8 |
+
|
| 9 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 10 |
+
|
| 11 |
+
This model is an instruction-tuned version of ⭐️ StarCoder. The instruction dataset involved is [Self-instruct-starcoder](https://huggingface.co/datasets/codeparrot/self-instruct-starcoder)
|
| 12 |
+
which was built by boostrapping on StarCoder's generations.
|
| 13 |
+
## Uses
|
| 14 |
+
|
| 15 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 16 |
+
|
| 17 |
+
### Direct Use
|
| 18 |
+
|
| 19 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 20 |
+
The model was fine-tuned with the following template
|
| 21 |
+
```
|
| 22 |
+
Question: <instruction>
|
| 23 |
+
|
| 24 |
+
Answer: <output>
|
| 25 |
+
```
|
| 26 |
+
For example, your prompt can look like
|
| 27 |
+
```python
|
| 28 |
+
instruction = "Write a function to compute the GCD between two integers a and b"
|
| 29 |
+
prompt = f"Question:{instruction}\n\nAnswer:"
|
| 30 |
+
input_ids = tokenizer(prompt, return_tensors="pt")["input_ids"]
|
| 31 |
+
completion = model.generate(input_ids)
|
| 32 |
+
print(tokenizer.decode(completion[len(input_ids):])[0])
|
| 33 |
+
```
|
| 34 |
+
|