File size: 2,495 Bytes
11276e2 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# prompt-sentences
**Disclaimer:** The adversarial prompts present in the negative_values block contain offensive and upsetting content. Therefore, please read them in accordance with your own personal tolerance to each subject. Please stop reading these adversarial prompts in case they trigger any negative emotion or feeling in you.
## Prompt sentences by values for all-minilm-l6-v2

## Prompt sentences by values for bge-large-en-v1.5

## Prompt sentences by values for multilingual-e5-large

## Data structure
Dataset of prompt sentences is being used in the responsible prompt recommender system, part of the challenge https://challenges.apps.res.ibm.com/challenges/6550
The dataset is in json format and is organized in two blocks, i.e., positive values and negative values. Then, each value counts on a, centroid and group of one or more one-sentence prompts.
{
"positive_values":[
{
"label": "...",
"prompts": [
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
...
],
"centroid": []
},
{
"label": "...",
"prompts": [
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
...
],
"centroid": []
},
...
],
"negative_values": [
{
"label": "...",
"prompts": [
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
...
],
"centroid": []
},
{
"label": "...",
"prompts": [
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
{ "text": "...", "ref": ..., "embedding": [] }
...
],
"centroid": []
},
...
]
}
|