Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
---
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: text
|
@@ -21,4 +23,29 @@ configs:
|
|
21 |
path: data/train-*
|
22 |
- split: test
|
23 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
dataset_info:
|
5 |
features:
|
6 |
- name: text
|
|
|
23 |
path: data/train-*
|
24 |
- split: test
|
25 |
path: data/test-*
|
26 |
+
license: apache-2.0
|
27 |
+
task_categories:
|
28 |
+
- text-classification
|
29 |
+
tags:
|
30 |
+
- llms
|
31 |
+
- nlp
|
32 |
+
- chatbots
|
33 |
+
- prompts
|
34 |
+
pretty_name: TL (Test vs Learn) chatbot prompts
|
35 |
+
size_categories:
|
36 |
+
- n<1K
|
37 |
---
|
38 |
+
|
39 |
+
This dataset contains manually labeled examples used for training and testing [reddgr/tl-test-learn-prompt-classifier](https://huggingface.co/reddgr/tl-test-learn-prompt-classifier), a fine-tuning of DistilBERT that classifies chatbot prompts as either 'test' or 'learn.'
|
40 |
+
|
41 |
+
Prompts labeled as 'test' (1) are those where it can be inferred that the user is intentionally 'challenging' the conversational tool with a complicated question the user might know the answer to, or a subjective question the user makes with the purpose of testing the tool rather than learning from it or obtaining a specific unknown information.
|
42 |
+
|
43 |
+
An alternative naming convention for the labels is 'problem' (test) vs 'instruction' (learn). The earliest versions of the reddgr/tl-test-learn-prompt-classifier model used a zero-shot classification pipeline for those two specific terms: instruction (0) vs problem (1).
|
44 |
+
|
45 |
+
This dataset and the model are part of a project aimed at identifying metrics to quantitatively measure the conversational quality of text generated by large language models (LLMs) and, by extension, any other type of text extracted from a conversational context (customer service chats, social media posts...).
|
46 |
+
|
47 |
+
Relevant Jupyter notebooks and Python scripts that use this dataset and related datasets and models can be found in the following GitHub repository:
|
48 |
+
[reddgr/chatbot-response-scoring-scbn-rqtl](https://github.com/reddgr/chatbot-response-scoring-scbn-rqtl)
|
49 |
+
## Labels:
|
50 |
+
- **0**: Learn (instruction)
|
51 |
+
- **1**: Test (problem)
|