Infernaught
commited on
Upload README.md
Browse files
README.md
CHANGED
@@ -2,18 +2,18 @@
|
|
2 |
library_name: peft\
|
3 |
Base model: mistralai/Mistral-7B-v0.1\
|
4 |
pipeline_tag: text-generation\
|
5 |
-
--\
|
6 |
-
Description: Topic identification from a news article, with synthetic explanations.\
|
7 |
-
Original dataset: https://huggingface.co/datasets/ag_news\
|
8 |
---\
|
9 |
-
|
10 |
-
|
11 |
---\
|
12 |
-
|
|
|
13 |
---\
|
14 |
-
Sample
|
15 |
---\
|
16 |
-
|
|
|
|
|
17 |
```
|
18 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
19 |
|
|
|
2 |
library_name: peft\
|
3 |
Base model: mistralai/Mistral-7B-v0.1\
|
4 |
pipeline_tag: text-generation\
|
|
|
|
|
|
|
5 |
---\
|
6 |
+
Description: Topic identification from a news article, with synthetic explanations.
|
7 |
+
Original dataset: https://huggingface.co/datasets/ag_news
|
8 |
---\
|
9 |
+
Try querying this adapter for free in Lora Land at https://predibase.com/lora-land!
|
10 |
+
The adapter_category is Explanation and the name is News Topic Identification Explained (ag_news)
|
11 |
---\
|
12 |
+
Sample input: Below is a news article. Please classify it under one of the following classes (World, Business, Sports, Sci/Tech) and provide a reasonable coherent explanation for why the article is classified as such. Please format your response as a JSON payload.\n\n### Article: US poverty rate climbs, along with number lacking health coverage (AFP) AFP - The number of Americans living in poverty or without health insurance grew last year, a government survey showed, adding potential dynamite in the battle for the White House.\n\n### JSON Response
|
13 |
---\
|
14 |
+
Sample output: {"text_label": "World", "explanation": "The article is classified as 'World' because it discusses the poverty rate and lack of health coverage in the United States. Although it is a domestic issue, it has potential implications for the upcoming presidential election, making it relevant to a global audience."}
|
15 |
+
---\
|
16 |
+
Try using this adapter yourself!
|
17 |
```
|
18 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
19 |
|