Instructions to use baotoan2002/GPT-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use baotoan2002/GPT-2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="baotoan2002/GPT-2")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("baotoan2002/GPT-2") model = AutoModelForCausalLM.from_pretrained("baotoan2002/GPT-2") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use baotoan2002/GPT-2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "baotoan2002/GPT-2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "baotoan2002/GPT-2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/baotoan2002/GPT-2
- SGLang
How to use baotoan2002/GPT-2 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 "baotoan2002/GPT-2" \ --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": "baotoan2002/GPT-2", "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 "baotoan2002/GPT-2" \ --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": "baotoan2002/GPT-2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use baotoan2002/GPT-2 with Docker Model Runner:
docker model run hf.co/baotoan2002/GPT-2
Story Generation Using GPT-2 in Hugging Face
This repository provides an example of how to use the GPT-2 language model in Hugging Face for story generation tasks. GPT-2 is a powerful natural language processing model that can generate human-like text, and Hugging Face is a popular open-source library for working with NLP models.
Requirements
- Python 3.6 or higher
- Hugging Face transformers library
- PyTorch or TensorFlow
Installation
- Clone this repository: git clone
https://github.com/BaoToan1704/Deep-Learning/Final%20Project - Navigate to the repository directory:
cd Final Project - Install the required libraries:
pip install -r requirements.txt
Usage
- Download the GPT-2 pre-trained model:
python download_model.py - Edit the
Gpt_2_to_generate_stories.ipynbfile to include your desired prompt and generate settings. - Run the
Gpt_2_to_generate_stories.ipynb fileto generate text:python Gpt_2_to_generate_stories.ipynb
Customization
You can customize the GPT-2 model and the text generation settings by editing the Gpt_2_to_generate_stories.ipynb file. For example, you can change the prompt text, the number of tokens to generate, the temperature setting for the model, and more.
References
- Hugging Face Transformers library:
https://github.com/huggingface/transformers - GPT-2 model by me:
https://huggingface.co/baotoan2002/GPT-2 - OpenAI GPT-2 model:
https://openai.com/models/gpt-2/
License
This repository is licensed under the [openrail] License. See the LICENSE file for details.
Acknowledgments
- Special thanks to the Hugging Face team for their excellent work on the Transformers library.
- Thanks to OpenAI for providing the pre-trained GPT-2 model.
- Downloads last month
- 3