Yale-LILY/aeslc
Viewer β’ Updated β’ 18.3k β’ 1.35k β’ 19
How to use postbot/distilgpt2-emailgen-V2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="postbot/distilgpt2-emailgen-V2") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("postbot/distilgpt2-emailgen-V2")
model = AutoModelForCausalLM.from_pretrained("postbot/distilgpt2-emailgen-V2")How to use postbot/distilgpt2-emailgen-V2 with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "postbot/distilgpt2-emailgen-V2"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "postbot/distilgpt2-emailgen-V2",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/postbot/distilgpt2-emailgen-V2
How to use postbot/distilgpt2-emailgen-V2 with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "postbot/distilgpt2-emailgen-V2" \
--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/distilgpt2-emailgen-V2",
"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/distilgpt2-emailgen-V2" \
--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/distilgpt2-emailgen-V2",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use postbot/distilgpt2-emailgen-V2 with Docker Model Runner:
docker model run hf.co/postbot/distilgpt2-emailgen-V2
Why write the rest of your email when you can generate it?
from transformers import pipeline
model_tag = "postbot/distilgpt2-emailgen-V2"
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 distilgpt2 on the postbot/multi-emails-100k dataset.
It achieves the following results on the evaluation set:
More information needed
More information needed
TODO
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.9045 | 1.0 | 789 | 2.0006 |
| 1.8115 | 2.0 | 1578 | 1.9557 |
| 1.8501 | 3.0 | 2367 | 1.9110 |
| 1.7376 | 4.0 | 3156 | 1.9126 |
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 24.59 |
| ARC (25-shot) | 20.99 |
| HellaSwag (10-shot) | 26.78 |
| MMLU (5-shot) | 25.53 |
| TruthfulQA (0-shot) | 46.51 |
| Winogrande (5-shot) | 52.01 |
| GSM8K (5-shot) | 0.0 |
| DROP (3-shot) | 0.31 |