Text Generation
Transformers
PyTorch
TensorFlow
code
gpt2
Code
GPyT
code generator
text-generation-inference
Instructions to use Sentdex/GPyT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Sentdex/GPyT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Sentdex/GPyT")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Sentdex/GPyT") model = AutoModelForCausalLM.from_pretrained("Sentdex/GPyT") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Sentdex/GPyT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Sentdex/GPyT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Sentdex/GPyT", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Sentdex/GPyT
- SGLang
How to use Sentdex/GPyT 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 "Sentdex/GPyT" \ --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": "Sentdex/GPyT", "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 "Sentdex/GPyT" \ --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": "Sentdex/GPyT", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Sentdex/GPyT with Docker Model Runner:
docker model run hf.co/Sentdex/GPyT
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,27 +12,41 @@ GPyT is a GPT2 model trained from scratch (not fine tuned) on Python code from G
|
|
| 12 |
|
| 13 |
Newlines are replaced by `<N>`
|
| 14 |
|
| 15 |
-
|
| 16 |
Input to the model is code, up to the context length of 1024, with newlines replaced by `<N>`
|
| 17 |
|
| 18 |
-
Here's
|
| 19 |
|
| 20 |
```py
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
""
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
newlinechar = "<N>"
|
| 26 |
converted = inp.replace("\n", newlinechar)
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
```
|
| 30 |
|
| 31 |
-
This should give you something like:
|
| 32 |
|
| 33 |
-
`def do_something():<N> print("Hello")<N>`
|
| 34 |
|
| 35 |
-
...which is what the model is expecting as input.
|
| 36 |
|
| 37 |
Considerations:
|
| 38 |
|
|
|
|
| 12 |
|
| 13 |
Newlines are replaced by `<N>`
|
| 14 |
|
|
|
|
| 15 |
Input to the model is code, up to the context length of 1024, with newlines replaced by `<N>`
|
| 16 |
|
| 17 |
+
Here's a quick example of using this model:
|
| 18 |
|
| 19 |
```py
|
| 20 |
+
from transformers import AutoTokenizer, AutoModelWithLMHead
|
| 21 |
+
|
| 22 |
+
tokenizer = AutoTokenizer.from_pretrained("Sentdex/GPyT")
|
| 23 |
+
model = AutoModelWithLMHead.from_pretrained("Sentdex/GPyT")
|
| 24 |
+
|
| 25 |
+
# copy and paste some code in here
|
| 26 |
+
inp = """import"""
|
| 27 |
|
| 28 |
newlinechar = "<N>"
|
| 29 |
converted = inp.replace("\n", newlinechar)
|
| 30 |
+
tokenized = tokenizer.encode(converted, return_tensors='pt').to("cuda")
|
| 31 |
+
resp = model.generate(tokenized).to("cuda")
|
| 32 |
+
|
| 33 |
+
decoded = tokenizer.decode(resp[0])
|
| 34 |
+
reformatted = decoded.replace("<N>","\n")
|
| 35 |
+
|
| 36 |
+
print(reformatted)
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
Should produce:
|
| 40 |
+
|
| 41 |
+
```
|
| 42 |
+
import numpy as np
|
| 43 |
+
import pytest
|
| 44 |
+
|
| 45 |
+
import pandas as pd<N
|
| 46 |
```
|
| 47 |
|
|
|
|
| 48 |
|
|
|
|
| 49 |
|
|
|
|
| 50 |
|
| 51 |
Considerations:
|
| 52 |
|