Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
tags:
|
| 4 |
+
- text-classification
|
| 5 |
+
- custom
|
| 6 |
+
- archflava
|
| 7 |
+
license: mit
|
| 8 |
+
datasets:
|
| 9 |
+
- custom
|
| 10 |
+
pipeline_tag: text-classification
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# ArchFlava Model
|
| 14 |
+
|
| 15 |
+
This is a fine-tuned transformer model trained by Maryah to classify user input into dual outputs: **archetype** and **flava**.
|
| 16 |
+
|
| 17 |
+
Use with the `text-classification` pipeline:
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from transformers import pipeline
|
| 21 |
+
|
| 22 |
+
pipe = pipeline("text-classification", model="your-username/archflava-model")
|
| 23 |
+
pipe("I'm a bold leader, age 17")
|
| 24 |
+
|
| 25 |
+
|