Instructions to use DeathReaper0965/gpt2-large-code-generator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeathReaper0965/gpt2-large-code-generator with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DeathReaper0965/gpt2-large-code-generator")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DeathReaper0965/gpt2-large-code-generator") model = AutoModelForCausalLM.from_pretrained("DeathReaper0965/gpt2-large-code-generator") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use DeathReaper0965/gpt2-large-code-generator with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DeathReaper0965/gpt2-large-code-generator" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DeathReaper0965/gpt2-large-code-generator", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/DeathReaper0965/gpt2-large-code-generator
- SGLang
How to use DeathReaper0965/gpt2-large-code-generator 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 "DeathReaper0965/gpt2-large-code-generator" \ --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": "DeathReaper0965/gpt2-large-code-generator", "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 "DeathReaper0965/gpt2-large-code-generator" \ --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": "DeathReaper0965/gpt2-large-code-generator", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use DeathReaper0965/gpt2-large-code-generator with Docker Model Runner:
docker model run hf.co/DeathReaper0965/gpt2-large-code-generator
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("DeathReaper0965/gpt2-large-code-generator")
model = AutoModelForCausalLM.from_pretrained("DeathReaper0965/gpt2-large-code-generator")Code Generation using GPT2-Large
This is a GPT2-large model that's further fine-tuned on the Codeparrot dataset with a custom metric focused on code generation.
The Tokenizer is initialized from the GPT2-large and further trained on the same dataset to better align the tokenization for generating code.
Model description
This Model has the same architecture and Parameters as the GPT2-large model. Please refer to this link to know more about the model details.
Intended Use & Limitations
This model is intended to generate code for the required function based on a small description of the output required.
Note: The model is primarily trained with an objective of code generation.
Usage
You can use this model directly to get the summaries:
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
# Load Code Generator LLM and tokenizer from checkpoint
tokenizer = AutoTokenizer.from_pretrained("DeathReaper0965/gpt2_large_code_generator")
model = AutoModelForCausalLM.from_pretrained("DeathReaper0965/gpt2_large_code_generator")
model = model.to("cuda" if torch.cuda.is_available() else "cpu")
inputs = tokenizer("def hello_world():", return_tensors="pt").to("cuda" if torch.cuda.is_available() else "cpu")
outputs = model.generate(**inputs,
max_new_tokens= 30,
num_return_sequences= 1)
print(tokenizer.batch_decode(outputs)[0])
###########OUTPUT###########
def hello_world():
return "Hello World!"
@app.route("/hello_world")
def hello_world():
return "Hello World!"
Designed and Developed with ♥ by Praneet | LinkedIn | GitHub
- Downloads last month
- 11
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DeathReaper0965/gpt2-large-code-generator")