How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "PingVortex/Youtube-shorts-comment-generator"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "PingVortex/Youtube-shorts-comment-generator",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/PingVortex/Youtube-shorts-comment-generator
Quick Links

Youtube shorts comment generator

Model Details

  • Parameters: 82M (DistilGPT2 architecture)
  • Training Data: 1,475,500 YouTube Shorts comments

Usage Example

from transformers import pipeline

brainrot = pipeline('text-generation', model='PingVortex/Youtube-shorts-comment-generator')

output = brainrot("When you see a Sigma edit:", max_length=50)
print(output[0]['generated_text'])

Sample output:
"When you see a Sigma edit: 😂😂😂😂 The white one on the last pic?😂😂😂😅😅😅😊😊😊😅😮😮😅"

Training Info

  • Epochs: 1
  • Batch Size: 8
  • Hardware: Google Colab T4 GPU
  • Training Time: ~2 hours
  • Loss: 0.24
Downloads last month
12
Safetensors
Model size
81.9M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for PingVortex/Youtube-shorts-comment-generator

Finetuned
(1477)
this model
Quantizations
1 model

Dataset used to train PingVortex/Youtube-shorts-comment-generator