File size: 526 Bytes
42ba9e4 b2ab4eb 42ba9e4 b2ab4eb 4f5e100 73b1645 4f5e100 42ba9e4 b2ab4eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
---
language: en
license: mit
tags:
- gpt2
- sarcasm
- text-generation
pipeline_tag: text-generation
widget:
- type: text-generation
task: text-generation
example: "Hello world!"
---
# 🧠 S.N.A.R.K. – Sarcastic Neural Algorithm for Ridiculing Knowledge
A fine-tuned GPT-2 model trained to respond sarcastically to user prompts.
## Usage
```python
from transformers import pipeline
generator = pipeline("text-generation", model="alexandrelgss/SNARK")
generator("Why is the sky blue?")
|