Gustavosta/Stable-Diffusion-Prompts
Viewer • Updated • 81.9k • 13.7k • 523
How to use pszemraj/tiny-gpt2-magicprompt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="pszemraj/tiny-gpt2-magicprompt") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("pszemraj/tiny-gpt2-magicprompt")
model = AutoModelForCausalLM.from_pretrained("pszemraj/tiny-gpt2-magicprompt")How to use pszemraj/tiny-gpt2-magicprompt with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "pszemraj/tiny-gpt2-magicprompt"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "pszemraj/tiny-gpt2-magicprompt",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/pszemraj/tiny-gpt2-magicprompt
How to use pszemraj/tiny-gpt2-magicprompt with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "pszemraj/tiny-gpt2-magicprompt" \
--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": "pszemraj/tiny-gpt2-magicprompt",
"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 "pszemraj/tiny-gpt2-magicprompt" \
--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": "pszemraj/tiny-gpt2-magicprompt",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use pszemraj/tiny-gpt2-magicprompt with Docker Model Runner:
docker model run hf.co/pszemraj/tiny-gpt2-magicprompt
Generate/augment your prompt, stable diffusion style. Enter a new dimension of creativity
This model is a fine-tuned version of sshleifer/tiny-gpt2 on the Gustavosta/Stable-Diffusion-Prompts dataset. It achieves the following results on the evaluation set:
???
refer to the Gustavosta/Stable-Diffusion-Prompts dataset.
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 10.8201 | 0.96 | 16 | 10.8191 |
| 10.8167 | 1.96 | 32 | 10.8145 |
| 10.8117 | 2.96 | 48 | 10.8095 |
| 10.8058 | 3.96 | 64 | 10.8025 |
| 10.7997 | 4.96 | 80 | 10.7989 |
| 10.7959 | 5.96 | 96 | 10.7947 |
| 10.7934 | 6.96 | 112 | 10.7925 |
| 10.7924 | 7.96 | 128 | 10.7919 |
| 10.7921 | 8.96 | 144 | 10.7918 |
| 10.792 | 9.96 | 160 | 10.7918 |