iohadrubin/wikitext-103-raw-v1
Viewer • Updated • 29.7k • 448 • 8
How to use Burman-AI/gpt2wikitext with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Burman-AI/gpt2wikitext") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Burman-AI/gpt2wikitext")
model = AutoModelForCausalLM.from_pretrained("Burman-AI/gpt2wikitext")How to use Burman-AI/gpt2wikitext with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Burman-AI/gpt2wikitext"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Burman-AI/gpt2wikitext",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/Burman-AI/gpt2wikitext
How to use Burman-AI/gpt2wikitext with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Burman-AI/gpt2wikitext" \
--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": "Burman-AI/gpt2wikitext",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "Burman-AI/gpt2wikitext" \
--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": "Burman-AI/gpt2wikitext",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use Burman-AI/gpt2wikitext with Docker Model Runner:
docker model run hf.co/Burman-AI/gpt2wikitext
This model is a fine-tuned version of on a wikitext dataset.
More information needed
More information needed
loss grad_norm learning_rate epoch step 0 9.0711 1.319650 0.000068 0.319489 100 1 7.6569 1.031958 0.000036 0.638978 200 2 7.2724 0.889421 0.000004 0.958466 300
The following hyperparameters were used during training: