Update README.md
Browse files
README.md
CHANGED
@@ -1,12 +1,23 @@
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
---
|
5 |
This is a glorious and graceful gift to the open-source community from PyThess meetups, with love.
|
6 |
It’s designed to provide sarcastic non-answers. Use with caution, and don’t trust it.
|
7 |
Do not use it seriously—or at all. Do not expect it to qualify as a “helpful assistant.”
|
8 |
|
9 |
-
Built on top of Llama-3.2-1B
|
10 |
|
11 |
Fine tuned with a dataset with sarcastic short "answers" to questions.
|
12 |
|
@@ -29,4 +40,4 @@ outputs = pipe(
|
|
29 |
max_new_tokens=128
|
30 |
)
|
31 |
print(outputs[0]["generated_text"][-1])
|
32 |
-
```
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
+
tags:
|
4 |
+
- sarcasm
|
5 |
+
- language
|
6 |
+
- llama
|
7 |
+
- funny
|
8 |
+
- comedy
|
9 |
+
license: mit
|
10 |
+
language:
|
11 |
+
- en
|
12 |
+
base_model:
|
13 |
+
- meta-llama/Llama-3.2-1B-Instruct
|
14 |
+
pipeline_tag: text-generation
|
15 |
---
|
16 |
This is a glorious and graceful gift to the open-source community from PyThess meetups, with love.
|
17 |
It’s designed to provide sarcastic non-answers. Use with caution, and don’t trust it.
|
18 |
Do not use it seriously—or at all. Do not expect it to qualify as a “helpful assistant.”
|
19 |
|
20 |
+
Built on top of Llama-3.2-1B-Instruct
|
21 |
|
22 |
Fine tuned with a dataset with sarcastic short "answers" to questions.
|
23 |
|
|
|
40 |
max_new_tokens=128
|
41 |
)
|
42 |
print(outputs[0]["generated_text"][-1])
|
43 |
+
```
|