Yale-LILY/aeslc
Viewer β’ Updated β’ 18.3k β’ 1.35k β’ 19
How to use postbot/gpt2-medium-emailgen with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="postbot/gpt2-medium-emailgen") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("postbot/gpt2-medium-emailgen")
model = AutoModelForCausalLM.from_pretrained("postbot/gpt2-medium-emailgen")How to use postbot/gpt2-medium-emailgen with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "postbot/gpt2-medium-emailgen"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "postbot/gpt2-medium-emailgen",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/postbot/gpt2-medium-emailgen
How to use postbot/gpt2-medium-emailgen with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "postbot/gpt2-medium-emailgen" \
--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": "postbot/gpt2-medium-emailgen",
"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 "postbot/gpt2-medium-emailgen" \
--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": "postbot/gpt2-medium-emailgen",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use postbot/gpt2-medium-emailgen with Docker Model Runner:
docker model run hf.co/postbot/gpt2-medium-emailgen
Why write the entire email when you can generate (most of) it?
from transformers import pipeline
model_tag = "postbot/gpt2-medium-emailgen"
generator = pipeline(
'text-generation',
model=model_tag,
)
prompt = """
Hello,
Following up on the bubblegum shipment."""
result = generator(
prompt,
max_length=64,
do_sample=False,
early_stopping=True,
) # generate
print(result[0]['generated_text'])
This model is a fine-tuned version of gpt2-medium on the postbot/multi-emails-100k dataset. It achieves the following results on the evaluation set:
More information needed
aeslc datasetThe following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.8701 | 1.0 | 789 | 1.8378 |
| 1.5065 | 2.0 | 1578 | 1.6176 |
| 1.1873 | 3.0 | 2367 | 1.5840 |
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 25.97 |
| ARC (25-shot) | 26.45 |
| HellaSwag (10-shot) | 34.31 |
| MMLU (5-shot) | 24.1 |
| TruthfulQA (0-shot) | 43.96 |
| Winogrande (5-shot) | 50.43 |
| GSM8K (5-shot) | 0.0 |
| DROP (3-shot) | 2.53 |