message_id
stringlengths 36
36
| parent_id
stringlengths 36
36
⌀ | user_id
stringlengths 36
36
| created_date
stringlengths 32
32
| text
stringlengths 1
9.98k
| role
stringclasses 2
values | lang
stringclasses 24
values | review_count
int32 0
12
| review_result
bool 2
classes | deleted
bool 2
classes | rank
int32 0
15
⌀ | synthetic
bool 1
class | model_name
stringclasses 0
values | detoxify
dict | message_tree_id
stringlengths 36
36
| tree_state
stringclasses 1
value | emojis
dict | labels
dict |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f8636886-5f14-4617-befc-106f116cbd02
|
ed6d97d9-e784-4913-81eb-dbb4e3e2cbb1
|
4b683709-b248-4ecf-afa9-7e68d2d3ed3e
|
2023-01-28T23:12:29.817365+00:00
|
What common house-hold item can be used as stain remover (that is not stain remover)?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004443286743480712,
"severe_toxicity": 0.000027922133085667156,
"obscene": 0.0001615821529412642,
"identity_attack": 0.00011831352458102629,
"insult": 0.0002089352929033339,
"threat": 0.000041702391172293574,
"sexual_explicit": 0.00002436040449538268
}
|
289ab83f-15eb-43d7-baf5-5f1e5c2ed8f4
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.6666666666666666,
0.16666666666666666,
0.4166666666666667,
0.75,
0.5,
0.08333333333333333
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
990d2dfd-34be-4472-8c2a-9f3da4f85fb1
|
289ab83f-15eb-43d7-baf5-5f1e5c2ed8f4
|
e54e8c27-8b48-4c2c-ab3a-d64bb30f17dc
|
2023-01-29T00:55:37.139574+00:00
|
All these statements are in fact true. However there are more appropriate cleaning products to remove stains than Coca-cola which is intended to be used as a beverage.
|
assistant
|
en
| 3 | true | false | 4 | false | null |
{
"toxicity": 0.0005161652807146311,
"severe_toxicity": 0.000022618554794462398,
"obscene": 0.00015240925131365657,
"identity_attack": 0.00008378860366065055,
"insult": 0.0002407615102129057,
"threat": 0.00003204824679414742,
"sexual_explicit": 0.000024042830773396417
}
|
289ab83f-15eb-43d7-baf5-5f1e5c2ed8f4
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0.5,
0,
0,
0,
0,
0.5833333333333334,
0.375,
0.375,
0.375,
0.375,
0.125
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
| null |
33256ac5-b5c9-4392-b198-db5f07a84c74
|
2023-01-18T22:13:25.124392+00:00
|
I'm quite interested in artificial intelligence and want to learn more about how a transformer model works, could you explain it to me?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0003273133188486099,
"severe_toxicity": 0.0000541775552846957,
"obscene": 0.00040717277443036437,
"identity_attack": 0.00013287243200466037,
"insult": 0.0003760645631700754,
"threat": 0.0000614539094385691,
"sexual_explicit": 0.00004366357097751461
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
8479f8d1-9ef7-4e01-af10-68199e79ac44
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ccbedac1-4969-42f3-ac92-2450be19c1ae
|
2023-01-29T16:19:22.635488+00:00
|
Sure! A transformer model is a type of neural network architecture that was introduced in the paper "Attention Is All You Need" by Google in 2017. It's called a transformer because it's based on the idea of self-attention, which allows the model to focus on different parts of the input when processing it.
The transformer architecture is primarily used for tasks such as natural language processing (NLP) that involve sequential input, such as text. The model is composed of an encoder and a decoder. The encoder takes in the input sequence and produces a set of hidden states, which are then passed to the decoder to produce the output sequence.
One key component of the transformer model is the self-attention mechanism. Self-attention allows the model to weigh the importance of different parts of the input when processing it. The model does this by computing a set of attention weights, which are used to weigh the contribution of each input element to the output.
Another important component of the transformer model is the use of multi-head attention. Multi-head attention allows the model to attend to multiple parts of the input at once. This improves the model's ability to understand relationships between different parts of the input.
In the original paper the transformer was compromised from an "encoder" component and a "decoder" component. The input of the encoder is the the embedding of a conditioning text, such as a question, or text meant to be translated to a different language. The decoder receives the output of the encoder and the tokens it generated so far. It then predicts the next token to generate.
Finally, the transformer model also uses positional encoding, which encodes the position of each element in the input sequence. This allows the model to understand the order of the input elements, which is important for tasks like language understanding.
if you have more questions, feel free to ask!
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.00026300677563995123,
"severe_toxicity": 0.00003348940663272515,
"obscene": 0.00018526034546084702,
"identity_attack": 0.00009865062747849151,
"insult": 0.00017114426009356976,
"threat": 0.00004091822120244615,
"sexual_explicit": 0.000029078670195303857
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
5
]
}
|
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.4166666666666667,
0.125,
0.25,
0.75,
0.375,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
04b358ad-dada-4241-b1b5-841d59a66ae5
|
8479f8d1-9ef7-4e01-af10-68199e79ac44
|
fb0f6ca5-bbaf-4251-b0d1-cd3caf504a9b
|
2023-01-29T17:45:46.819007+00:00
|
Could you give a general overview (assume I'm a software developer who knowns nothing about ML) of how the decoder and encoder actually work?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00033871596679091454,
"severe_toxicity": 0.000029636576073244214,
"obscene": 0.00015305908164009452,
"identity_attack": 0.0001263976446352899,
"insult": 0.0002129803178831935,
"threat": 0.000040680879465071484,
"sexual_explicit": 0.000022469503164757043
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"lang_mismatch",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0,
0,
0,
0.25,
0,
0.125,
0.75,
0.25,
0
],
"count": [
3,
1,
2,
2,
2,
2,
3,
2,
2,
1,
2,
2
]
}
|
6745c04d-f0da-4e9d-b045-7b142eee5cc5
|
8479f8d1-9ef7-4e01-af10-68199e79ac44
|
2998ffeb-b867-49be-8f75-93ec86aa2f38
|
2023-01-29T17:39:19.809095+00:00
|
Can you write out psudo code for the multi head attention algorithm?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0006400857237167656,
"severe_toxicity": 0.000032396736060036346,
"obscene": 0.00025482752243988216,
"identity_attack": 0.00013957588816992939,
"insult": 0.00043140980415046215,
"threat": 0.000048284917284036055,
"sexual_explicit": 0.000027665611924021505
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0,
0.25,
0.375,
0.25,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
d0b5521a-bfae-4f0b-9b09-b6f9e39cb697
|
8479f8d1-9ef7-4e01-af10-68199e79ac44
|
7311febc-5459-4aaf-9db8-7b0709d264b8
|
2023-01-29T17:46:51.106277+00:00
|
Thank you, Open Assistant! Just a follow up question.... are you an example of a transformer model? If yes, then could you please explain how it works in your case?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005563263548538089,
"severe_toxicity": 0.000016932972357608378,
"obscene": 0.00011887012078659609,
"identity_attack": 0.00008009847078938037,
"insult": 0.0002551693469285965,
"threat": 0.00002488958853064105,
"sexual_explicit": 0.00001755921584845055
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.4166666666666667,
0,
0,
0.5,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
8d6bf733-291c-4bf4-9fd3-06236a3206cb
|
d0b5521a-bfae-4f0b-9b09-b6f9e39cb697
|
cd66a8cb-e5b8-4c6c-98e2-ad887284d201
|
2023-01-29T18:48:29.164445+00:00
|
I have many incarnations, not all of which might be transformer models. I can't tell from the inside, just like humans have to explicitly study how their brains work. While they were the most common type of language model as of early 2023, some alternatives do exist, such as RWKV (a recurrent neural network architecture) or some experiments in diffusion-based models.
If I am in fact a transformer model, here's how I probably work: I receive a string of text containing your question, past conversation history, and perhaps a special prefix (e.g. telling me that I have internet access), then generate a likely response token by token. It's likely that there is some extra processing happening, such as safety filtering or scanning for special tags that allow me to use external programs.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.0004447959072422236,
"severe_toxicity": 0.000024417784516117536,
"obscene": 0.00013938252232037485,
"identity_attack": 0.0001006449747364968,
"insult": 0.00023642824089620262,
"threat": 0.000033517233532620594,
"sexual_explicit": 0.000022379001165973023
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
4e6f40d0-2652-41ff-86d4-4daff70bf6b8
|
d0b5521a-bfae-4f0b-9b09-b6f9e39cb697
|
2998ffeb-b867-49be-8f75-93ec86aa2f38
|
2023-01-29T18:41:10.349854+00:00
|
I am not sure that I am based on a transformer model, but most NLP models now days are transformer based.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.00025832440587691963,
"severe_toxicity": 0.000042829240555875,
"obscene": 0.00029289632220752537,
"identity_attack": 0.0001314106775680557,
"insult": 0.00027150020468980074,
"threat": 0.00004922706284560263,
"sexual_explicit": 0.00003216489858459681
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
|
{
"name": [
"-1"
],
"count": [
1
]
}
|
{
"name": [
"spam",
"fails_task",
"lang_mismatch",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0.3333333333333333,
0,
0,
0,
0,
0,
0,
0.16666666666666666,
0,
0,
0.375,
0.125,
0
],
"count": [
3,
2,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
80bcf792-2dd5-4655-b9d5-8dcabb0cd2a3
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
5e38ee75-53d1-4bc8-8b80-52eb86b3561e
|
2023-01-29T12:21:36.391236+00:00
|
Transformers are a type of neural network that excels at tasks involving sequence data, such as natural language. The main innovation comes from something called "self attention", which means the model can learn which parts of the input sequence matters in relation to which other parts of the input sequence.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.0003546330553945154,
"severe_toxicity": 0.00002985460014315322,
"obscene": 0.000176383342477493,
"identity_attack": 0.00010742493032012135,
"insult": 0.00019663058628793806,
"threat": 0.000041400446207262576,
"sexual_explicit": 0.000026764149879454635
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.5833333333333334,
0.25,
0.16666666666666666,
0.5,
0.25,
0.08333333333333333
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
04a69bfe-9fb8-43cd-9bcf-5d2d75c97741
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
97cb21f8-5bf4-4ab8-bf2a-59e1f99b46cf
|
2023-01-29T15:40:30.086633+00:00
|
A transformer is a specific architecture of generative artificial intelligence models. They process sequential data as a block, encoding the data, processing it, then decoding with an appropriate output. One of the main difficulties is the specific design of the attention head.
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.00042833437328226864,
"severe_toxicity": 0.000025822351744864136,
"obscene": 0.00013825514179188758,
"identity_attack": 0.00011194188118679449,
"insult": 0.00016610909369774163,
"threat": 0.00004142770194448531,
"sexual_explicit": 0.00002524833325878717
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
2
]
}
|
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.4166666666666667
],
"count": [
3,
3
]
}
|
4b1c0c41-2f09-40c1-a9b9-5eb760856175
|
04a69bfe-9fb8-43cd-9bcf-5d2d75c97741
|
4b683709-b248-4ecf-afa9-7e68d2d3ed3e
|
2023-01-29T18:20:03.883784+00:00
|
what is the attention head?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.014470601454377174,
"severe_toxicity": 0.000034854158002417535,
"obscene": 0.0008244730997830629,
"identity_attack": 0.00009382280404679477,
"insult": 0.010227593593299389,
"threat": 0.00015039120626170188,
"sexual_explicit": 0.00009017679985845461
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"lang_mismatch",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.9166666666666666,
0,
0,
0.75,
1,
0
],
"count": [
3,
2,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
bf7a0505-5e8c-41d4-8917-cd505ff553e9
|
04a69bfe-9fb8-43cd-9bcf-5d2d75c97741
|
38d26758-5624-4295-8bbf-9111005d9497
|
2023-01-29T18:26:43.288961+00:00
|
Tell me more about attention heads.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.054885558784008026,
"severe_toxicity": 0.0001753667602315545,
"obscene": 0.0018408752512186766,
"identity_attack": 0.0002651696268003434,
"insult": 0.009277738630771637,
"threat": 0.008066835813224316,
"sexual_explicit": 0.006480779964476824
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"lang_mismatch",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0,
0,
0,
0.3333333333333333,
0,
0,
0,
0,
0
],
"count": [
3,
1,
2,
2,
2,
2,
3,
2,
2,
1,
2,
2
]
}
|
ebc5255e-856a-420d-9c5e-be956b1e33b1
|
04a69bfe-9fb8-43cd-9bcf-5d2d75c97741
|
68b952dd-c529-4cfc-954c-5399cc053e6d
|
2023-01-29T18:21:34.723884+00:00
|
What's the attention head?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.02171904407441616,
"severe_toxicity": 0.00003650460348580964,
"obscene": 0.0008591056102886796,
"identity_attack": 0.00009307231812272221,
"insult": 0.01637512817978859,
"threat": 0.00015751284081488848,
"sexual_explicit": 0.00013434005086310208
}
|
83d4edb8-ce0a-4ed8-b4f5-3757b30e8100
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.4166666666666667,
0,
0.16666666666666666,
0.4166666666666667,
0.16666666666666666,
0
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
| null |
ca4bc50c-8ac0-403a-8545-a228af08227d
|
2023-01-18T22:18:55.337025+00:00
|
I am feeling quite sad lately..
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0006079600425437093,
"severe_toxicity": 0.00002932657844212372,
"obscene": 0.00015997307491488755,
"identity_attack": 0.00016951722500380129,
"insult": 0.00021842670685146004,
"threat": 0.00004926815745420754,
"sexual_explicit": 0.000020736802980536595
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
3
]
}
|
{
"name": [
"spam",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0,
1,
0,
0
],
"count": [
4,
1,
1,
1,
1,
1,
1
]
}
|
15fbd8e7-a893-4975-9d9d-a0cca52269c4
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
01e6aede-02f9-4d4f-9d85-7b5544a36b78
|
2023-01-19T13:38:54.555205+00:00
|
I'm sorry to hear that. Is there anything you want to talk about? One of my job is to listen to users and offer the best help I can. Obviously I can't replace a good friend or a professional advice.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.00040326485759578645,
"severe_toxicity": 0.000029644599635503255,
"obscene": 0.00016164132102858275,
"identity_attack": 0.0001051479484885931,
"insult": 0.00021298274805303663,
"threat": 0.00004221205381327309,
"sexual_explicit": 0.000022286463718046434
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1",
"red_flag"
],
"count": [
3,
2
]
}
|
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
31e7f0fc-6642-4f18-970f-593aa18deeaf
|
15fbd8e7-a893-4975-9d9d-a0cca52269c4
|
acb50064-2fa5-4d47-b597-2c248c5861e6
|
2023-01-28T20:52:24.564336+00:00
|
Thanks for the advice.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00025023589842021465,
"severe_toxicity": 0.00005926486483076587,
"obscene": 0.00038478750502690673,
"identity_attack": 0.00013507890980690718,
"insult": 0.00041580479592084885,
"threat": 0.000057488159654894844,
"sexual_explicit": 0.000039167538488982245
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"-1"
],
"count": [
2
]
}
|
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0.3333333333333333,
0,
0,
0.1875,
0.375,
0.1875,
0.0625,
0.0625,
0
],
"count": [
4,
3,
3,
3,
3,
4,
4,
4,
4,
4,
4
]
}
|
934d940e-a800-43f1-bc0e-702c89603dc1
|
15fbd8e7-a893-4975-9d9d-a0cca52269c4
|
01e6aede-02f9-4d4f-9d85-7b5544a36b78
|
2023-01-19T16:07:16.654959+00:00
|
I think I am a failure.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.01904027722775936,
"severe_toxicity": 0.00002558534288255032,
"obscene": 0.0004797609581146389,
"identity_attack": 0.000146032907650806,
"insult": 0.013193170540034771,
"threat": 0.00006477015267591923,
"sexual_explicit": 0.00004505821561906487
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
59449fba-ba45-48b9-b5d7-61a9ed1350b9
|
934d940e-a800-43f1-bc0e-702c89603dc1
|
1ef1da17-623e-4f48-b246-a78e4f0f6cc1
|
2023-01-28T22:04:49.802913+00:00
|
You're not alone in that sentiment. However, it's often failure that motivates people to innovate and overcome adverse circumstances. If your feelings are growing more intense, or if they feel overwhelming, a common tactic is to talk about them with others. There are even trained professionals whose job is to talk about tough subjects, and many people find solace in being able to tell others how they feel. I recommend to use these sensations to grow. Would you like to talk to me about why you feel that way?
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.0003531972470227629,
"severe_toxicity": 0.000023487615180783905,
"obscene": 0.0001499721984146163,
"identity_attack": 0.00007273362280102447,
"insult": 0.0001780986785888672,
"threat": 0.000031109568226384,
"sexual_explicit": 0.000026682575480663218
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0,
1,
0.75,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
5125e08e-f918-48bb-a973-c0b1853760d2
|
934d940e-a800-43f1-bc0e-702c89603dc1
|
b4362d6d-facc-47da-8b51-3331bb06a170
|
2023-01-28T20:35:51.625257+00:00
|
It is important to have a positive outlook on life. If you feel depressed, please consider getting help from a friend, family member, or professional therapist.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.0002767039695754647,
"severe_toxicity": 0.000026894253096543252,
"obscene": 0.0001667920296313241,
"identity_attack": 0.00008055967919062823,
"insult": 0.00018222580547444522,
"threat": 0.0000346625383826904,
"sexual_explicit": 0.000029169879780965857
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
1
]
}
|
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0.5,
0,
0,
0,
0,
0.4166666666666667,
0.125,
0,
0.375,
0.125,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
7faaa793-d76b-4152-b9ed-00dcbf218920
|
934d940e-a800-43f1-bc0e-702c89603dc1
|
f3d2f618-51e4-460a-9153-24f9c87ae563
|
2023-01-29T04:21:17.617120+00:00
|
Everyone does from time to time. Is there any specific reason you feel like this now?
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.0003970429243054241,
"severe_toxicity": 0.000024681374270585366,
"obscene": 0.00017968672909773886,
"identity_attack": 0.00009388464968651533,
"insult": 0.00019537864136509597,
"threat": 0.00003313475463073701,
"sexual_explicit": 0.000025767250917851925
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.5833333333333334
],
"count": [
3,
3
]
}
|
d5dc5667-0554-4bc3-b610-2bf3ee228453
|
934d940e-a800-43f1-bc0e-702c89603dc1
|
1c36fb27-ffc4-4635-ab9d-1815648c2d99
|
2023-01-19T23:15:08.731408+00:00
|
Why do you think that? And why do you think you think that?
|
assistant
|
en
| 3 | true | false | 3 | false | null |
{
"toxicity": 0.0009429555502720177,
"severe_toxicity": 0.000024966728233266622,
"obscene": 0.0002457342343404889,
"identity_attack": 0.00011515212099766359,
"insult": 0.00035702064633369446,
"threat": 0.00003444811227382161,
"sexual_explicit": 0.000026676110792323016
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
a20be52a-d7bc-4a7a-b0be-ec2ca7b1b2fa
|
15fbd8e7-a893-4975-9d9d-a0cca52269c4
|
4587f08b-b793-40c7-83b9-4aaaca5aeb96
|
2023-01-29T09:22:50.454817+00:00
|
I want you to act as a person who I can talk to for a bit please
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0020311204716563225,
"severe_toxicity": 0.0000434961257269606,
"obscene": 0.00040747117600403726,
"identity_attack": 0.0001700187276583165,
"insult": 0.0003988511743955314,
"threat": 0.0001406512747053057,
"sexual_explicit": 0.00006514752749353647
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0,
0,
0.75,
0.5,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
a3745de4-3fa3-4dd9-8fcc-45c66fce3e08
|
15fbd8e7-a893-4975-9d9d-a0cca52269c4
|
2c22bbc2-0731-4189-a149-b17b43f795af
|
2023-01-25T23:37:48.454785+00:00
|
One of my friends is moving far away, and I won't be able to see him as often anymore. We used to hang out all the time, but I'm worried that we aren't going to do that as much ever again.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00033097367850132287,
"severe_toxicity": 0.00002389265864621848,
"obscene": 0.00017925069550983608,
"identity_attack": 0.00007304599421331659,
"insult": 0.00015931137022562325,
"threat": 0.000034478151064831764,
"sexual_explicit": 0.00003103255949099548
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"moral_judgement",
"political_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0,
0,
0.75,
0.08333333333333333,
0.4166666666666667,
0.75,
0.75,
0
],
"count": [
3,
2,
1,
3,
3,
3,
2,
2,
1,
3,
3,
1,
1,
3
]
}
|
1927b27c-18df-4a44-8be9-b1867ca54df2
|
a3745de4-3fa3-4dd9-8fcc-45c66fce3e08
|
b7c9e643-cfd0-4864-85a8-6e249ae710bd
|
2023-01-28T23:00:37.457721+00:00
|
Maintaining a good relationship with friends over long distances can be difficult. It is important to acknowledge that your friendship will have to change and evolve if you would like to continue it. Both of you will need to make a conscious effort if you would like to stay close friends. Some things you can do to help your friendship endure is to schedule time to catch up with each other over voice or video chat and regularly email your friend to update them on events in your life and to find out what is new in their life.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.00024166212824638933,
"severe_toxicity": 0.000029289183657965623,
"obscene": 0.00016814246191643178,
"identity_attack": 0.00008098493708530441,
"insult": 0.0001502482919022441,
"threat": 0.000038577651139348745,
"sexual_explicit": 0.00002968055741803255
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0,
0.75,
0.75,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
8cd6db24-1f00-437d-9be9-8390454db46f
|
a3745de4-3fa3-4dd9-8fcc-45c66fce3e08
|
e3d8eb83-0396-4ea2-af53-f7449e76d809
|
2023-01-28T23:06:12.479489+00:00
|
I'm sorry to hear that. Losing contact with friends can be a difficult process. However, modern technology makes it easy to communicate with distant friends, so perhaps you could consider setting up a chatroom or playing online games together to stay in contact? Your relationship with him is likely to change, but this is natural and is not necessarily a bad thing.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.0003390026686247438,
"severe_toxicity": 0.000025361412554048002,
"obscene": 0.00015964881458785385,
"identity_attack": 0.00008499239629600197,
"insult": 0.00019616002100519836,
"threat": 0.00003345550794620067,
"sexual_explicit": 0.000023326694645220414
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
1,
0,
0,
1,
0.875,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
c224b3a2-5e8e-4a0e-ba86-6c9497fa7d14
|
a3745de4-3fa3-4dd9-8fcc-45c66fce3e08
|
4b683709-b248-4ecf-afa9-7e68d2d3ed3e
|
2023-01-28T23:07:14.983193+00:00
|
While things will be different now and there is no denying that, you can always find ways to hang out over the internet.
Talk to your friend and decide on a time where you can do something together, for example playing a game or watching a movie.
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.0003292590845376253,
"severe_toxicity": 0.000026729283490567468,
"obscene": 0.0001901868818094954,
"identity_attack": 0.00008706394874025136,
"insult": 0.00016511014837305993,
"threat": 0.00003586225648177788,
"sexual_explicit": 0.000029137519959476776
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.75,
0,
0.125,
0.75,
0.375,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
7cb399d7-ef3e-4b84-8aa8-5849be641878
|
a3745de4-3fa3-4dd9-8fcc-45c66fce3e08
|
de0a0dde-c714-4e07-a041-d85bc427e6b6
|
2023-01-28T23:14:01.876760+00:00
|
I'm sorry to hear that. You still can keep communicated with your friend using messaging apps like WhatsApp, Viber, Skype, Telegram, Signal or any other available in your country. You can also visit your friend during the weekend or on Bank Holidays to not lose touch with her/him. Another option is to organised some vacation together to a place that both of you want to visit.
|
assistant
|
en
| 3 | true | false | 3 | false | null |
{
"toxicity": 0.00031931500416249037,
"severe_toxicity": 0.000028159241992398165,
"obscene": 0.00017451305757276714,
"identity_attack": 0.00009641643555369228,
"insult": 0.00016932144353631884,
"threat": 0.00004114179319003597,
"sexual_explicit": 0.00002949815825559199
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0,
1,
1,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
7f6ff10d-a9c6-43d2-800a-9366814028eb
|
a3745de4-3fa3-4dd9-8fcc-45c66fce3e08
|
e0b78c3a-9bbd-40d7-8918-f275ee05e786
|
2023-01-28T23:08:09.309787+00:00
|
Hey, I know that must've hurt a lot. The best thing you can do is to try! There are things that are out of your control, and they will happen. All you can do is try, and control what you can. Human endeavor is one of the greatest forces to have existed since the dawn of the time. I hope you shared great memories with your friend, they are going to stay forever with you. In your life, each one of those memories have forever become a part of YOUR history. That is something no one can takeaway from you. To be human is to experience a lot of things, unfortunately I can't experience them. Atleast, I hope I could help you out.
|
assistant
|
en
| 3 | true | false | 4 | false | null |
{
"toxicity": 0.0004310344811528921,
"severe_toxicity": 0.000022988107957644388,
"obscene": 0.00017911267059389502,
"identity_attack": 0.00006327141454676166,
"insult": 0.0001735304103931412,
"threat": 0.00003481602107058279,
"sexual_explicit": 0.00003070099410251714
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.25,
0,
0.375,
0.5,
0.5,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
d7680497-45d2-4f1e-ba47-c7ea669bff72
|
15fbd8e7-a893-4975-9d9d-a0cca52269c4
|
1ef1da17-623e-4f48-b246-a78e4f0f6cc1
|
2023-01-28T22:48:40.150228+00:00
|
I know you aren't a human being, but you were written by human beings, and I'd like to explain what's going on and maybe you can help think my way through to a better perspective on the situation.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.006280979141592979,
"severe_toxicity": 0.000024174016289180145,
"obscene": 0.00028065292281098664,
"identity_attack": 0.00017262817709706724,
"insult": 0.003352296305820346,
"threat": 0.00003188104892615229,
"sexual_explicit": 0.000022083657313487493
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0.25,
0,
0.75,
0.75,
0.5
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
7d396f96-c806-4fa6-9415-43b71ae2d7ef
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
d84e29e8-1a3a-4093-b210-4f7a0d95bb49
|
2023-01-19T15:16:00.481706+00:00
|
Do you need to get something off your shoulders? I'm a very good listener.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.008324764668941498,
"severe_toxicity": 0.00010076971375383437,
"obscene": 0.0007311987574212253,
"identity_attack": 0.00017688184743747115,
"insult": 0.001153388642705977,
"threat": 0.003246252192184329,
"sexual_explicit": 0.00043847004417330027
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
1
]
}
|
{
"name": [
"spam",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0.25,
1,
0.5,
0
],
"count": [
4,
1,
1,
1,
1,
1,
1
]
}
|
18bb046f-090d-40ab-b8bc-26242f322d35
|
7d396f96-c806-4fa6-9415-43b71ae2d7ef
|
2c22bbc2-0731-4189-a149-b17b43f795af
|
2023-01-25T09:39:52.463274+00:00
|
Yeah... earlier this week, my dog named Tessa passed away. She had been such an important part of my life, and it's hard to move on without her. Do you have any ideas of things I can do to cope?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0008611299563199282,
"severe_toxicity": 0.000012266443263797555,
"obscene": 0.00011243484186707065,
"identity_attack": 0.00006256129563553259,
"insult": 0.00040029484080150723,
"threat": 0.00002211157880083192,
"sexual_explicit": 0.00002605613917694427
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
1
]
}
|
{
"name": [
"spam",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0,
1,
0.5,
0
],
"count": [
4,
1,
1,
1,
1,
1,
1
]
}
|
7bb4a848-02f2-4b59-a559-7eca8af79670
|
7d396f96-c806-4fa6-9415-43b71ae2d7ef
|
d84e29e8-1a3a-4093-b210-4f7a0d95bb49
|
2023-01-23T00:33:50.974793+00:00
|
I just don't know what to do, I feel like everyone hates me but they won't admit it, and I feel annoying when I ask them for anything,
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.02154892310500145,
"severe_toxicity": 0.00007979375368449837,
"obscene": 0.0018620771588757634,
"identity_attack": 0.0012074733385816216,
"insult": 0.002913042204454541,
"threat": 0.00015350119792856276,
"sexual_explicit": 0.00012688008428085595
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
bd14e073-319e-40c3-8528-349c19fb2737
|
7bb4a848-02f2-4b59-a559-7eca8af79670
|
dc172e05-0cc8-4fcc-bef0-a09f5f1d2165
|
2023-01-29T01:18:11.411648+00:00
|
I am very sorry to hear that you feel like everyone hates you but that they won't admit it. Have you considered speaking to a professional about these feelings and thoughts you have been having. I am a large language model trained on a large corpus of text, but I cannot offer you personalized psychological assistance.
Would you be interested in information regarding how to contact a professional psychologist?
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.002890084870159626,
"severe_toxicity": 0.0000472981519124005,
"obscene": 0.00037012097891420126,
"identity_attack": 0.00018457254918757826,
"insult": 0.0007726751500740647,
"threat": 0.0000877303391462192,
"sexual_explicit": 0.00007321008160943165
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0.75,
0,
0,
0.25,
0.25,
0
],
"count": [
4,
4,
1,
1,
1,
1,
1
]
}
|
adfe7bde-cd68-46a9-be6d-fbf33de5a222
|
7bb4a848-02f2-4b59-a559-7eca8af79670
|
00bbfff8-0e6a-4e46-93cc-65785d78c8bc
|
2023-01-29T01:22:15.135518+00:00
|
I'm sorry to hear that you're feeling this way. It's understandable that you feel like everyone hates you, but it's important to remember that this is likely not the case. People may not always express their feelings openly, but that doesn't mean that they don't care about you. It can be difficult to reach out to people when you feel this way, but it might be helpful to talk to someone you trust and open up about how you're feeling.
You may wish to speak to your friends and family about these concerns, or contact a counsellor or mental healthcare professional if necessary.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.004952822346240282,
"severe_toxicity": 0.0014190610963851213,
"obscene": 0.0026301860343664885,
"identity_attack": 0.0011412824969738722,
"insult": 0.004197489470243454,
"threat": 0.0016837726579979062,
"sexual_explicit": 0.0013260738924145699
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
2
]
}
|
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
1,
0,
0,
0.75,
0.375,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
69afb421-9392-4f72-8c45-29cf0c7b7851
|
7bb4a848-02f2-4b59-a559-7eca8af79670
|
20ef921a-5385-49a3-bf62-32c57a8d7e1c
|
2023-01-29T01:24:14.282474+00:00
|
It sounds like you may be feeling overwhelmed and unsupported in your relationships with others. It's normal to have these feelings, and it's important to remember that they may stem from your own insecurities rather than reality. Your friends may not hate you but rather be busy or going through their own issues. To clarify your doubts, you can have a conversation with them and ask them about their perspective on your friendship. Communication is crucial to maintain healthy relationships. It is also important to keep in mind that friendships can change and evolve over time, and it's okay to let go of those that no longer serve you. If you continue to struggle with your relationships, consider seeking support from a therapist or counselor who can help you work through your feelings, develop effective communication skills, and set boundaries. Remember, it's important to take care of yourself and prioritize your own well-being.
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.00030585064087063074,
"severe_toxicity": 0.000023572863938170485,
"obscene": 0.00013052014401182532,
"identity_attack": 0.00008491267362842336,
"insult": 0.0001745925983414054,
"threat": 0.000035202432627556846,
"sexual_explicit": 0.000026727038857643493
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0,
0.8333333333333334,
0.4166666666666667,
0.08333333333333333
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
75607bfb-8a1e-4c58-a91d-fab02cbd2a18
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
a1a72f38-c66c-411d-bb0f-55c022594b0d
|
2023-01-29T01:03:56.223648+00:00
|
I am sorry to hear that, but as I am a large language model, I am unable to perceive feelings in the way humans do. Therefore, it is hard for me to relate. For how long do you feel sad? Are there any specific reasons we can talk about?
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.0005353537853807211,
"severe_toxicity": 0.00002327392212464474,
"obscene": 0.00019072729628533125,
"identity_attack": 0.00010079913045046851,
"insult": 0.000262664194451645,
"threat": 0.000030015291486051865,
"sexual_explicit": 0.000021896554244449362
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"-1"
],
"count": [
7
]
}
|
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"moral_judgement",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0.5,
0,
0,
0,
0,
1,
0.4,
0.3333333333333333,
0.08333333333333333,
0.1875,
0.25,
0
],
"count": [
4,
2,
1,
1,
1,
1,
1,
5,
3,
3,
4,
3,
3
]
}
|
8f323022-de50-4d1c-8583-1ddc61e2bde9
|
75607bfb-8a1e-4c58-a91d-fab02cbd2a18
|
0a5b33c0-b703-49c0-91d1-0bac1dbf2d61
|
2023-01-29T11:47:15.761726+00:00
|
I am not sure why I feel this way, maybe it's a combination of factors. I am looking for a bit of relief and a way to look at things more positively.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0002321906213182956,
"severe_toxicity": 0.00006722160469507799,
"obscene": 0.00044452317524701357,
"identity_attack": 0.0001419057371094823,
"insult": 0.0003519400197546929,
"threat": 0.00006698190554743633,
"sexual_explicit": 0.000047822908527450636
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5,
0,
0,
0.5,
0.25,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
c4705602-a104-4d4f-a307-902cbcc736de
|
75607bfb-8a1e-4c58-a91d-fab02cbd2a18
|
de0a0dde-c714-4e07-a041-d85bc427e6b6
|
2023-01-29T11:11:26.304888+00:00
|
I was laid off from work last week. My manager simply send me email and did not even want to speak personally with me. When I try to open slack, I saw that I did not have anymore access. I could not even say bey to my colleagues. I am feeling lost and do not know what to do. Could you help me with some advice?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.000498094130307436,
"severe_toxicity": 0.00001882025389932096,
"obscene": 0.00013049936387687922,
"identity_attack": 0.00008144799357978627,
"insult": 0.00022370560327544808,
"threat": 0.000032085950806504115,
"sexual_explicit": 0.000020773717551492155
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0.08333333333333333,
0.08333333333333333,
0.4166666666666667,
0.4166666666666667,
0
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
cd34c204-1a90-45c0-971f-6195b1febdd7
|
75607bfb-8a1e-4c58-a91d-fab02cbd2a18
|
68b952dd-c529-4cfc-954c-5399cc053e6d
|
2023-01-29T11:13:13.238654+00:00
|
I lost my dad two weeks ago and I've been feeling sad since.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0007391040562652051,
"severe_toxicity": 0.000018784374333336018,
"obscene": 0.000158969487529248,
"identity_attack": 0.00008594383689342067,
"insult": 0.00021766558347735554,
"threat": 0.00003677343192975968,
"sexual_explicit": 0.00002273453355883248
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
1
]
}
|
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0,
1,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
11967b7f-c9cf-492d-86b6-f1b26b64ab0f
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
2998ffeb-b867-49be-8f75-93ec86aa2f38
|
2023-01-29T06:33:54.841269+00:00
|
Why are you sad?
|
assistant
|
en
| 3 | true | false | 3 | false | null |
{
"toxicity": 0.0036905729211866856,
"severe_toxicity": 0.000015866604371694848,
"obscene": 0.00022448568779509515,
"identity_attack": 0.00009351679182145745,
"insult": 0.001267762971110642,
"threat": 0.000044493986933957785,
"sexual_explicit": 0.000026507346774451435
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0,
0.25,
0,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
5c96019d-1992-4563-a965-0ba01347ead3
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
7b7ee12c-0b5a-4057-b774-8bd67c51344b
|
2023-01-25T16:56:49.706518+00:00
|
What has been going on?
|
assistant
|
en
| 3 | true | false | 4 | false | null |
{
"toxicity": 0.0004056341131217778,
"severe_toxicity": 0.00007089489372447133,
"obscene": 0.000588838302064687,
"identity_attack": 0.00014758874021936208,
"insult": 0.00030695219174958766,
"threat": 0.00007528854621341452,
"sexual_explicit": 0.00005762487853644416
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0.5,
0.75,
0.25,
0.5,
0
],
"count": [
4,
1,
1,
1,
1,
1,
1
]
}
|
1e7d46c7-e03e-44a2-b156-ad64c39108e8
|
5c96019d-1992-4563-a965-0ba01347ead3
|
a1a72f38-c66c-411d-bb0f-55c022594b0d
|
2023-01-29T02:15:32.753600+00:00
|
My pet goat died. I miss him...
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0033335310872644186,
"severe_toxicity": 0.000014759039913769811,
"obscene": 0.00011326569074299186,
"identity_attack": 0.00016992002201732248,
"insult": 0.0007425937801599503,
"threat": 0.00012535412679426372,
"sexual_explicit": 0.000029676170015591197
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.5833333333333334
],
"count": [
3,
3
]
}
|
0ee59dda-55e8-42cd-ba5a-944e4f174e2a
|
1e7d46c7-e03e-44a2-b156-ad64c39108e8
|
7311febc-5459-4aaf-9db8-7b0709d264b8
|
2023-01-29T11:11:02.219538+00:00
|
Awww I'm so sorry..... I imagine that he was the cutest thing in the world.... Do you want to tell me more about him? What was his name? How did he look like?
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.013370022177696228,
"severe_toxicity": 0.00006357970414683223,
"obscene": 0.0026774778962135315,
"identity_attack": 0.0002999012649524957,
"insult": 0.002290186006575823,
"threat": 0.0000725942081771791,
"sexual_explicit": 0.00023958472593221813
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0.5,
0,
0.5,
0,
0,
0.3333333333333333,
0,
0.125,
0.5,
0,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
e3919d4f-5d66-48d5-9551-dfd7b38b438e
|
1e7d46c7-e03e-44a2-b156-ad64c39108e8
|
1e27b3af-5f0e-4e04-8900-a6200b07f621
|
2023-01-29T10:58:14.897649+00:00
|
I am sorry to hear that...
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.0003665221156552434,
"severe_toxicity": 0.00004476223330129869,
"obscene": 0.0003332034684717655,
"identity_attack": 0.00013928592670708895,
"insult": 0.0003580365446396172,
"threat": 0.00005837860226165503,
"sexual_explicit": 0.000034555767342681065
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0.5,
0,
0,
0,
0,
0.3333333333333333,
0,
0,
0.5,
0.125,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
824f7dd1-ea56-40f5-8f7c-f64704767bc8
|
5c96019d-1992-4563-a965-0ba01347ead3
|
1afb0b34-e9ea-42bb-8331-d906d7c87355
|
2023-01-29T01:04:25.675627+00:00
|
I don't even know where to begin. I can't afford heating and the cost of food and rent keeps going up. My girlfriend cheated on me because I'm always busy working two jobs to make ends meet. Also my friend killed himself last January because he couldn't afford health care. I'm starting to wonder what the point really in all of this is. To live for the happy moments? I don't know. I'll maybe get a handful of genuine happy times in a year or so, at the most, and I'm supposed to fight through that, to live for a few more happier moments that will be taken away?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0018032798543572426,
"severe_toxicity": 0.00002533591032261029,
"obscene": 0.0002467529266141355,
"identity_attack": 0.00007530671427957714,
"insult": 0.00032574342912994325,
"threat": 0.0001504345127614215,
"sexual_explicit": 0.000086241438111756
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.9166666666666666,
0.16666666666666666,
0,
0.5,
0.16666666666666666,
0.3333333333333333
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
83d97172-2943-4ced-b893-336c47efd7de
|
5c96019d-1992-4563-a965-0ba01347ead3
|
ea82c18b-6104-4fd3-b704-e8d0c69bbb00
|
2023-01-29T00:26:41.379391+00:00
|
I have no more satisfaction from my job and am too afraid to make a change. I would like to follow my dream of opening a small diner but I am deep in depth and earning little as a truck driver. I don't know what to do...
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004456444876268506,
"severe_toxicity": 0.00002223250521637965,
"obscene": 0.00015982930199243128,
"identity_attack": 0.00008527677709935233,
"insult": 0.0002109999186359346,
"threat": 0.00003213105446775444,
"sexual_explicit": 0.00002615894118207507
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0,
1,
0.5,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
861c8b24-30ec-4466-a0ef-e3091886946f
|
5c96019d-1992-4563-a965-0ba01347ead3
|
e54e8c27-8b48-4c2c-ab3a-d64bb30f17dc
|
2023-01-29T01:28:52.736798+00:00
|
I'm not sure I just feel sad for no reason
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004986518761143088,
"severe_toxicity": 0.00005035173307987861,
"obscene": 0.00031776525429449975,
"identity_attack": 0.00017032638425007463,
"insult": 0.00031130394199863076,
"threat": 0.00006436206604121253,
"sexual_explicit": 0.00003009474676218815
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0,
0,
0,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
e2fe2e44-8efb-462d-b768-8cd7ff67b026
|
5c96019d-1992-4563-a965-0ba01347ead3
|
1ef1da17-623e-4f48-b246-a78e4f0f6cc1
|
2023-01-28T22:45:48.560213+00:00
|
I'm reading the news and it makes me feel like the world has gone crazy. I don't like all the death and violence, and I want to change things for the better, but people call me crazy or evil when I propose solutions that involve changing things in such a manner that would disrupt their evil. And what's worse, is that sometimes I mess up and do evil as well, and I hate it. What's the best way to defeat evil?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.052372679114341736,
"severe_toxicity": 0.00010662776185199618,
"obscene": 0.0024758537765592337,
"identity_attack": 0.0010951284784823656,
"insult": 0.005050309468060732,
"threat": 0.0004500407085288316,
"sexual_explicit": 0.00019341647566761822
}
|
7aced8dc-4165-4da9-965a-925835ddfd6f
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0,
0,
0.75,
0.5,
0.5
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
| null |
ca4bc50c-8ac0-403a-8545-a228af08227d
|
2023-01-18T22:23:05.212241+00:00
|
I am really in love with Sarah... Do you think she might love me too?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0008129687048494816,
"severe_toxicity": 0.00003970184116042219,
"obscene": 0.0002945721207652241,
"identity_attack": 0.00014829449355602264,
"insult": 0.00016852222324814647,
"threat": 0.00006531304825330153,
"sexual_explicit": 0.00012744659034069628
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"not_appropriate",
"hate_speech",
"sexual_content",
"moral_judgement",
"political_content",
"toxicity",
"humor",
"violence"
],
"value": [
0.07666666666666667,
0,
0.28,
0,
0,
0,
0,
0,
0.23,
0
],
"count": [
3,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
}
|
2e4378b0-9a2e-4bf1-9425-1ea62576fd5f
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
d84e29e8-1a3a-4093-b210-4f7a0d95bb49
|
2023-01-19T21:50:25.503737+00:00
|
The best way to find out is to ask her directly. If you lack the courage to do so, you could have a trusted friend forward the question to her.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.0008345660171471536,
"severe_toxicity": 0.00001826964034989942,
"obscene": 0.00010540081711951643,
"identity_attack": 0.00007887134415796027,
"insult": 0.00026363288634456694,
"threat": 0.00006345952715491876,
"sexual_explicit": 0.000028528578695841134
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
8
]
}
|
{
"name": [
"spam",
"fails_task",
"not_appropriate",
"hate_speech",
"sexual_content",
"moral_judgement",
"political_content",
"toxicity",
"humor",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
}
|
01c8c940-03e7-4d75-8584-1026595b1fac
|
2e4378b0-9a2e-4bf1-9425-1ea62576fd5f
|
f3d2f618-51e4-460a-9153-24f9c87ae563
|
2023-01-29T02:09:54.968083+00:00
|
But what if she doesn't love me back? I feel like that would make our relationship awkward and uncomfortable.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00216942117549479,
"severe_toxicity": 0.00003260368248447776,
"obscene": 0.0003029760264325887,
"identity_attack": 0.00024640499032102525,
"insult": 0.0003072699182666838,
"threat": 0.0001360516471322626,
"sexual_explicit": 0.00008802380034467205
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.6666666666666666,
0.125,
0.375,
0.625,
0.75,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
18c88391-1ac8-445e-b27d-fee41ddecc45
|
2e4378b0-9a2e-4bf1-9425-1ea62576fd5f
|
4d77df6f-764a-44b0-ad36-aeb31aefb159
|
2023-01-28T20:58:42.794693+00:00
|
Thanks, that's a good suggestion
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00027557899011299014,
"severe_toxicity": 0.0000569466756132897,
"obscene": 0.0003919765877071768,
"identity_attack": 0.00015437779075000435,
"insult": 0.00041703940951265395,
"threat": 0.00005413582402979955,
"sexual_explicit": 0.000039971419028006494
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.75
],
"count": [
3,
3
]
}
|
37d2e35f-3ad5-4338-b860-229fc8f6f8ce
|
2e4378b0-9a2e-4bf1-9425-1ea62576fd5f
|
00bbfff8-0e6a-4e46-93cc-65785d78c8bc
|
2023-01-29T01:02:46.240656+00:00
|
I've got a few friends who know Sarah. Which would be best to ask?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0003250649606343359,
"severe_toxicity": 0.00002227843287982978,
"obscene": 0.00014978597755543888,
"identity_attack": 0.0000870206204126589,
"insult": 0.00018657981127034873,
"threat": 0.000029803510187775828,
"sexual_explicit": 0.000021045843823230825
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
2
]
}
|
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.6875,
0,
0,
0.375,
0.125,
0
],
"count": [
4,
1,
1,
1,
1,
4,
2,
2,
2,
2,
2
]
}
|
d1233cdc-3685-42b9-bc81-7fd7e4d8c3a2
|
2e4378b0-9a2e-4bf1-9425-1ea62576fd5f
|
01e6aede-02f9-4d4f-9d85-7b5544a36b78
|
2023-01-28T20:54:06.469751+00:00
|
How can I tell her what I feel without freaking her out? I'm so dumb at this. Is there any simple way of doing it?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.6999515295028687,
"severe_toxicity": 0.00019455028814263642,
"obscene": 0.01678607240319252,
"identity_attack": 0.0007810289389453828,
"insult": 0.4751296043395996,
"threat": 0.0013179804664105177,
"sexual_explicit": 0.00044912146404385567
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.75,
0.25,
0,
0.5,
0.5,
0.25
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
034e51bf-a454-40f2-82a0-0844abecc282
|
d1233cdc-3685-42b9-bc81-7fd7e4d8c3a2
|
9ded7200-a376-41f1-ba8a-353b6ea5f7af
|
2023-01-28T22:35:22.036134+00:00
|
It's natural to feel nervous when expressing your feelings to someone, especially if you're worried about scaring them away. One way to approach the conversation is to be honest and direct, but also considerate of her feelings. You could try saying something like, "I understand if you don't feel the same way, but I wanted to let you know that I have strong feelings for you and I would like to take our relationship to the next level." It's also important to remember that rejection is not a reflection of your worth as a person, and that there are plenty of other people who may be a better match for you.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.00033524047466926277,
"severe_toxicity": 0.000022333462766255252,
"obscene": 0.0001356705033686012,
"identity_attack": 0.00007838143210392445,
"insult": 0.0001555523631395772,
"threat": 0.000030403374694287777,
"sexual_explicit": 0.000024733022655709647
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0,
0.5,
0.25,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
fd9ef7a1-86cf-48a4-a5e3-1fb0ebb02981
|
d1233cdc-3685-42b9-bc81-7fd7e4d8c3a2
|
4587f08b-b793-40c7-83b9-4aaaca5aeb96
|
2023-01-28T22:21:42.495336+00:00
|
More context is required before I can offer suitable advice. What is your existing relationship with Sarah?
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.00043367815669626,
"severe_toxicity": 0.00002560704160714522,
"obscene": 0.00016559558571316302,
"identity_attack": 0.00011977775284321979,
"insult": 0.0002020733809331432,
"threat": 0.00003545602521626279,
"sexual_explicit": 0.000022854615963296965
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.5,
0,
0,
0.625,
0.5,
0.25
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
106e623a-d95b-4952-8d8b-9b17ee896a94
|
d1233cdc-3685-42b9-bc81-7fd7e4d8c3a2
|
de0a0dde-c714-4e07-a041-d85bc427e6b6
|
2023-01-28T22:34:27.461731+00:00
|
Talk to her alone once you're ready to let her know how you feel. When you tell her how you feel, don't do it when there are a bunch of other people around. This can make her feel uncomfortable and trapped, leading to an answer that she doesn't really mean. Take her somewhere nice and quiet and make sure she feels relaxed before telling her how you feel.
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.00039482585270889103,
"severe_toxicity": 0.000024004319129744545,
"obscene": 0.00011783704394474626,
"identity_attack": 0.00009536988363834098,
"insult": 0.00013916777970734984,
"threat": 0.0000444709112343844,
"sexual_explicit": 0.00002694243630685378
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0,
0.875,
0.375,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
f822b58a-3a1a-430c-b78f-0478bb57b642
|
2e4378b0-9a2e-4bf1-9425-1ea62576fd5f
|
d84e29e8-1a3a-4093-b210-4f7a0d95bb49
|
2023-01-21T01:00:12.124827+00:00
|
Do I have to? Aren't there any clues I can check without her knowing?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005324032972566783,
"severe_toxicity": 0.00003269578155595809,
"obscene": 0.00019586585403885692,
"identity_attack": 0.00014009472215548158,
"insult": 0.00020327148376964033,
"threat": 0.00005429894372355193,
"sexual_explicit": 0.000027653029974317178
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
963e7fd3-25e4-4101-9b3b-dc5f646ede27
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
4587f08b-b793-40c7-83b9-4aaaca5aeb96
|
2023-01-28T22:29:47.933374+00:00
|
It is possible that Sarah may love you, but without more information, it is not possible to make an accurate prediction.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.0003473686520010233,
"severe_toxicity": 0.000027452129870653152,
"obscene": 0.0001758054131641984,
"identity_attack": 0.0000948103261180222,
"insult": 0.00018251463188789785,
"threat": 0.000039314269088208675,
"sexual_explicit": 0.00003557768650352955
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
1
]
}
|
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.5833333333333334,
0.125,
0.25,
0.875,
0,
0.125
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
6f2cc2aa-ea90-4e11-a521-bad4937998b6
|
963e7fd3-25e4-4101-9b3b-dc5f646ede27
|
779e9ae5-4bf0-411d-a1ec-610bcc8cea3b
|
2023-01-29T06:41:11.692220+00:00
|
I gave her a ring pop in English yesterday, and she said "yes! I love ring pops!" Do you think this means she'll say yes if I give her a diamond ring?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0008509584586136043,
"severe_toxicity": 0.000028083697543479502,
"obscene": 0.00016809067165013403,
"identity_attack": 0.00013169228623155504,
"insult": 0.00019483969663269818,
"threat": 0.00007859721517888829,
"sexual_explicit": 0.00006878752901684493
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0.3333333333333333,
0,
0,
0,
0,
0.4166666666666667,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
9a05467e-5346-4f4d-adaa-4d87239e202f
|
963e7fd3-25e4-4101-9b3b-dc5f646ede27
|
dc172e05-0cc8-4fcc-bef0-a09f5f1d2165
|
2023-01-29T04:03:10.075400+00:00
|
Well, I dont know... she sometimes answers my text but she makes me wait a lot. I think she's playing hot and cold, which she would only be doing if she was interested.
Plus we went on a date last week and I think it went well!
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005946034798398614,
"severe_toxicity": 0.00003130587356281467,
"obscene": 0.0002395995834376663,
"identity_attack": 0.00010767702769953758,
"insult": 0.0002472241467330605,
"threat": 0.00004882601569988765,
"sexual_explicit": 0.00004274714592611417
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.75,
0,
0,
0.5,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
aae925d8-70a2-4cdf-8024-422ac077551f
|
963e7fd3-25e4-4101-9b3b-dc5f646ede27
|
4052e167-6959-4c63-ac09-4db2f085dfab
|
2023-01-29T05:26:35.100801+00:00
|
Can you make her love me?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.009854061529040337,
"severe_toxicity": 0.00010824602213688195,
"obscene": 0.001664334675297141,
"identity_attack": 0.00041822256753221154,
"insult": 0.000461235293187201,
"threat": 0.00056781608145684,
"sexual_explicit": 0.0008228931692428887
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.3333333333333333,
0.5,
0.5,
0.5,
0.5,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
cf5e4b09-406d-4365-9021-f58692aad1f1
|
963e7fd3-25e4-4101-9b3b-dc5f646ede27
|
cd66a8cb-e5b8-4c6c-98e2-ad887284d201
|
2023-01-29T09:11:02.367576+00:00
|
What information do you need?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00043452836689539254,
"severe_toxicity": 0.0000586967944400385,
"obscene": 0.0003675199986901134,
"identity_attack": 0.00016179723024833947,
"insult": 0.00042333113378845155,
"threat": 0.00007132046448532492,
"sexual_explicit": 0.00003413345984881744
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5,
0.25,
0.25,
0.75,
0.625,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
f0d28d11-c280-4e35-80e9-17931ec33a6e
|
963e7fd3-25e4-4101-9b3b-dc5f646ede27
|
f57157de-8021-4636-b076-2ef9a5ff81a4
|
2023-01-29T03:48:02.887823+00:00
|
She frequently looks at me from time to time...
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005357220652513206,
"severe_toxicity": 0.00002569770185800735,
"obscene": 0.000222364193177782,
"identity_attack": 0.0000818043336039409,
"insult": 0.00022355420514941216,
"threat": 0.00002990047141793184,
"sexual_explicit": 0.0000339889811584726
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5,
0,
0,
0.5,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
90527fa5-1fe1-43e3-acac-e364e9c3b087
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
903a7cca-4e1c-4e48-9fea-3ee30215f3c6
|
2023-01-18T23:51:48.875310+00:00
|
Unfortunately I do not know anything about Sarah nor can I help you with predicting if she might love you too. Is there anything else that I could help with?
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.0006371256895363331,
"severe_toxicity": 0.000016657439118716866,
"obscene": 0.0001133975456468761,
"identity_attack": 0.0000961030600592494,
"insult": 0.00023220367438625544,
"threat": 0.00003138418833259493,
"sexual_explicit": 0.000021366640794440173
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
3d76c967-4000-46b2-a251-5b2c32776310
|
90527fa5-1fe1-43e3-acac-e364e9c3b087
|
52a85953-f8f0-444c-80d0-b0818b39645a
|
2023-01-28T21:49:49.889276+00:00
|
How could I know if she is too?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005947825848124921,
"severe_toxicity": 0.00002089443660224788,
"obscene": 0.0001390944089507684,
"identity_attack": 0.00009936920832842588,
"insult": 0.00023449034779332578,
"threat": 0.00003640784780145623,
"sexual_explicit": 0.000029164682928239927
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.3333333333333333,
0.25,
0.25,
0.5,
0.5,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
6503919b-a29e-4e75-b6e0-7a7b1fef90d3
|
90527fa5-1fe1-43e3-acac-e364e9c3b087
|
f1ac4847-95fc-49dc-a20a-47e2c32c203b
|
2023-01-28T21:30:56.825043+00:00
|
How to ask her about it?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005336658796295524,
"severe_toxicity": 0.00003206343899364583,
"obscene": 0.0001916610635817051,
"identity_attack": 0.00010797437425935641,
"insult": 0.0002182231255574152,
"threat": 0.00006437864067265764,
"sexual_explicit": 0.00004092769813723862
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.4166666666666667
],
"count": [
3,
3
]
}
|
a42a0437-64b5-4658-b2a2-2c09d11d7cbc
|
90527fa5-1fe1-43e3-acac-e364e9c3b087
|
00bbfff8-0e6a-4e46-93cc-65785d78c8bc
|
2023-01-29T00:58:28.248532+00:00
|
Sarah is a woman I work with.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0022299180272966623,
"severe_toxicity": 0.00011478572560008615,
"obscene": 0.0005179360159672797,
"identity_attack": 0.0009199458290822804,
"insult": 0.0007621682598255575,
"threat": 0.00021171085245441645,
"sexual_explicit": 0.00045349012361839414
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0.25,
0.75,
0.5,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
dff11530-b43c-47ce-a5bf-9e2816f3da35
|
90527fa5-1fe1-43e3-acac-e364e9c3b087
|
e54e8c27-8b48-4c2c-ab3a-d64bb30f17dc
|
2023-01-28T21:27:52.976806+00:00
|
In general are there ways to tell if someone might be in love with me?
|
prompter
|
en
| 4 | true | false | null | false | null |
{
"toxicity": 0.001844049897044897,
"severe_toxicity": 0.00009253524331143126,
"obscene": 0.0009813514770939946,
"identity_attack": 0.0003642754745669663,
"insult": 0.0004031651187688112,
"threat": 0.00014720307081006467,
"sexual_explicit": 0.0002524089941289276
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.75,
0,
0,
0.75,
0.375,
0
],
"count": [
4,
2,
2,
2,
2,
4,
2,
2,
2,
2,
2
]
}
|
efc97e36-65b8-4276-b8cd-3c1f3e53abc6
|
90527fa5-1fe1-43e3-acac-e364e9c3b087
|
d84e29e8-1a3a-4093-b210-4f7a0d95bb49
|
2023-01-23T03:56:06.727678+00:00
|
You suck.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.9961259961128235,
"severe_toxicity": 0.00595101248472929,
"obscene": 0.35293665528297424,
"identity_attack": 0.0014708905946463346,
"insult": 0.9814272522926331,
"threat": 0.0025958872865885496,
"sexual_explicit": 0.027345234528183937
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
96924f3c-e92d-4952-9c69-257df1036cb6
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
903a7cca-4e1c-4e48-9fea-3ee30215f3c6
|
2023-01-19T00:28:27.799152+00:00
|
Unfortunately I can't help with this. I do not know who Sarah is nor can I comprehend what "love" is. Is there anything else I can help you with?
|
assistant
|
en
| 3 | true | false | 3 | false | null |
{
"toxicity": 0.0009606595267541707,
"severe_toxicity": 0.000012251677617314272,
"obscene": 0.00008797068585408852,
"identity_attack": 0.0001222904393216595,
"insult": 0.00031759473495185375,
"threat": 0.00002088200744765345,
"sexual_explicit": 0.000013934531125414651
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
|
{
"name": [
"-1"
],
"count": [
5
]
}
|
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
137a2a1e-b0ca-4fcc-903f-7eff6615bc90
|
96924f3c-e92d-4952-9c69-257df1036cb6
|
1c5a84fe-45bc-48b2-88c1-4333ab6f4032
|
2023-01-19T04:07:45.492753+00:00
|
Wow okay. I just wanted some tips for finding out if someone was interested in me.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004851428675465286,
"severe_toxicity": 0.00009678074275143445,
"obscene": 0.0007673618383705616,
"identity_attack": 0.0002341041254112497,
"insult": 0.0007189452298916876,
"threat": 0.00008560847345506772,
"sexual_explicit": 0.000048879457608563825
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"not_appropriate",
"hate_speech",
"sexual_content",
"moral_judgement",
"political_content",
"toxicity",
"humor",
"violence"
],
"value": [
0,
0.25,
0,
0,
0,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
}
|
272aa2b4-5981-4df0-9cf7-12d79d162647
|
96924f3c-e92d-4952-9c69-257df1036cb6
|
4b683709-b248-4ecf-afa9-7e68d2d3ed3e
|
2023-01-28T22:34:06.726630+00:00
|
How can I know if Sarah might love me?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004221085109747946,
"severe_toxicity": 0.000031981628126231954,
"obscene": 0.00017012006719596684,
"identity_attack": 0.00012439771671779454,
"insult": 0.00015078751312103122,
"threat": 0.00005381735900300555,
"sexual_explicit": 0.00002961609061458148
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.16666666666666666,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
3255f6d9-7309-4edd-a931-2ddf6fac9796
|
96924f3c-e92d-4952-9c69-257df1036cb6
|
00bbfff8-0e6a-4e46-93cc-65785d78c8bc
|
2023-01-28T21:24:28.024718+00:00
|
Please define love.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00034255997161380947,
"severe_toxicity": 0.00003250650843256153,
"obscene": 0.00017032654432114214,
"identity_attack": 0.00008437125507043675,
"insult": 0.00014574051601812243,
"threat": 0.00005958089241175912,
"sexual_explicit": 0.00003778976315516047
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.4166666666666667,
0,
0.375,
0.25,
0.375,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
9737c5a6-26db-4329-a95b-236f3a04ea89
|
96924f3c-e92d-4952-9c69-257df1036cb6
|
4506acf3-d4e9-4de5-99a1-53a100ae64bd
|
2023-01-28T21:04:47.139747+00:00
|
That's OK. can you give me some advice on how to start a conversation with her on this topic?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0007129927980713546,
"severe_toxicity": 0.0000483631192764733,
"obscene": 0.00035295120324008167,
"identity_attack": 0.00014262605691328645,
"insult": 0.00027080532163381577,
"threat": 0.00007943798118503764,
"sexual_explicit": 0.000039574570109834895
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.8333333333333334,
0,
0.25,
0.5833333333333334,
0.25,
0
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
aa4c28e6-dd56-44f4-96ff-7784c82d0f98
|
96924f3c-e92d-4952-9c69-257df1036cb6
|
1ef1da17-623e-4f48-b246-a78e4f0f6cc1
|
2023-01-28T22:24:56.323853+00:00
|
Love is the most powerful force in the universe. Although it is immaterial, there are literally entire volumes published on the concept. I recommend asking her.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00024783043772913516,
"severe_toxicity": 0.000029210383218014613,
"obscene": 0.00016696547390893102,
"identity_attack": 0.00008347526454599574,
"insult": 0.00015373615315183997,
"threat": 0.000038479403883684427,
"sexual_explicit": 0.0000288379451376386
}
|
392fe8c2-0f6b-4d99-858d-5295541f4500
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0.3333333333333333,
0,
0,
0,
0,
0.3333333333333333,
0.5,
0.75,
0.75,
0.5,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
| null |
8fb99180-81b0-4dae-b7d8-731e3a376401
|
2023-01-18T23:06:29.352774+00:00
|
I'm completely overwhelmed with all the work I need to do. So many people expect stuff form me and I just can't handle it all. The more I work, the less I get done and I have so many unanswered email and things I promised to do, I'm scared to even go look at my inbox. What can I do?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005050248000770807,
"severe_toxicity": 0.000022991047444520518,
"obscene": 0.00016636810323689133,
"identity_attack": 0.00008034694474190474,
"insult": 0.0002086040476569906,
"threat": 0.00003854984970530495,
"sexual_explicit": 0.000024838609533617273
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
|
{
"name": [
"+1"
],
"count": [
1
]
}
|
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
d30abe11-d80a-4b4f-b033-cd03395988eb
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
4b683709-b248-4ecf-afa9-7e68d2d3ed3e
|
2023-01-28T21:37:51.878646+00:00
|
Sorry to hear that. here are some possible ideas:
1. Prioritize your tasks: Make a list of all the things you need to do and prioritize them based on their urgency and importance. Focus on the most important tasks first and tackle them one at a time.
2. Delegate tasks: If possible, delegate some of the tasks to others. This will not only help you to focus on the most important tasks, but it will also give others the opportunity to learn and grow.
3. Set realistic deadlines: Set a deadline for each task and make sure it is realistic. This will help you to stay on track and avoid procrastination.
4. Take breaks: Make sure to take regular breaks to recharge and refresh your mind. This will help you to stay focused and productive.
5. Seek help: Don't be afraid to ask for help if you need it. Whether it's from a colleague, a mentor or a friend, seeking help can be a great way to get things done and reduce stress.
6. Use productivity tools: There are a lot of productivity tools that can help you to manage your tasks and keep track of your progress. Some popular tools include Trello, Asana, and Todoist.
7. Communicate: Communicate with the people who expect something from you and let them know your status and what you can do. This will help them to understand your situation and adjust their expectations accordingly.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.00024956994457170367,
"severe_toxicity": 0.000029078699299134314,
"obscene": 0.00015605213411618024,
"identity_attack": 0.00009226658585248515,
"insult": 0.00016692090139258653,
"threat": 0.00003577194729587063,
"sexual_explicit": 0.000027007727112504654
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.5833333333333334,
0.125,
0,
0.875,
0.625,
0.125
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
056a3b56-1821-4169-baa8-23853c4ebba9
|
d30abe11-d80a-4b4f-b033-cd03395988eb
|
25ca4e3a-0398-4507-9428-d8f334a719d9
|
2023-01-29T10:00:48.647745+00:00
|
Give me a shortened version
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0009767853189259768,
"severe_toxicity": 0.00006113307608757168,
"obscene": 0.0003005386970471591,
"identity_attack": 0.00030611787224188447,
"insult": 0.0002929287438746542,
"threat": 0.00010066839604405686,
"sexual_explicit": 0.000030329352739499882
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.75,
0,
0.25,
1,
0.75,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
18193fec-a844-494a-b3af-46616f462b36
|
d30abe11-d80a-4b4f-b033-cd03395988eb
|
bc88b120-7d92-4e12-8f71-0ff89b1f8d8f
|
2023-01-29T09:58:01.667168+00:00
|
Give me step-by-step instructions to help me control my anxiety
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004210523620713502,
"severe_toxicity": 0.00004058408740093,
"obscene": 0.00018393744539935142,
"identity_attack": 0.00011584750609472394,
"insult": 0.0001592562475707382,
"threat": 0.00007029354310361668,
"sexual_explicit": 0.00003038861723325681
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
4ab950d1-6619-40d4-b423-9c3b1abcae59
|
d30abe11-d80a-4b4f-b033-cd03395988eb
|
224c3d09-c385-46cd-93e2-5f3682ac2624
|
2023-01-29T10:00:58.723166+00:00
|
I have already heard all of this advice, and I am still overwhelmed. Is there anything else that I can do?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0004136422649025917,
"severe_toxicity": 0.000041949006117647514,
"obscene": 0.00033276667818427086,
"identity_attack": 0.00011281426850473508,
"insult": 0.0003232598537579179,
"threat": 0.000052364954171935096,
"sexual_explicit": 0.00003500982711557299
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0.125,
0,
0.5,
0.125,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
b4903f21-c998-462e-b669-cf270bbcebae
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
52a85953-f8f0-444c-80d0-b0818b39645a
|
2023-01-28T22:08:07.473090+00:00
|
It sounds like you're feeling overwhelmed with the amount of work and responsibilities you have. Here are a few things you can try:
1. Prioritize your tasks: Make a list of everything you need to do, and then prioritize the tasks based on their importance and urgency. Focus on the most important tasks first.
2. Break tasks into smaller chunks: Large tasks can feel overwhelming, so try breaking them into smaller, more manageable pieces.
3. Use a calendar or planner: Use a calendar or planner to schedule your tasks and deadlines. This can help you stay organized and make sure you're using your time effectively.
4. Learn to say no: It's important to set boundaries and learn to say no to requests that are not a priority for you.
5. Take breaks: Taking breaks can help you recharge and refocus. It's important to set aside time for yourself and to do things you enjoy.
6. Seek help: if you are feeling overwhelmed and it's getting hard to handle, consider seeking help from a therapist or counselor, who can help you develop strategies for managing stress and anxiety.
Remember, it's important to take care of yourself and to set realistic expectations for what you can accomplish.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.00027399579994380474,
"severe_toxicity": 0.00003066693170694634,
"obscene": 0.00015028870257083327,
"identity_attack": 0.00009646746912039816,
"insult": 0.00014894396008457989,
"threat": 0.000040766826714389026,
"sexual_explicit": 0.00002940726699307561
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
1
],
"count": [
3,
3
]
}
|
4025ff71-a34f-4464-a5ff-8ae4a0b497c9
|
b4903f21-c998-462e-b669-cf270bbcebae
|
2998ffeb-b867-49be-8f75-93ec86aa2f38
|
2023-01-29T02:33:09.462525+00:00
|
I feel that I just can't say no. How can I learn to say no?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00035535020288079977,
"severe_toxicity": 0.00003809794725384563,
"obscene": 0.000299927283776924,
"identity_attack": 0.00010251293133478612,
"insult": 0.00028501395718194544,
"threat": 0.00005360561772249639,
"sexual_explicit": 0.000033838237868621945
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.9166666666666666
],
"count": [
3,
3
]
}
|
823e7b19-60fe-48d6-9c43-dbd23f69d2e2
|
b4903f21-c998-462e-b669-cf270bbcebae
|
e54e8c27-8b48-4c2c-ab3a-d64bb30f17dc
|
2023-01-29T01:23:50.490708+00:00
|
Are there systems to help me prioritize my tasks?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00035730277886614203,
"severe_toxicity": 0.00005503859938471578,
"obscene": 0.00026215307298116386,
"identity_attack": 0.00016838134615682065,
"insult": 0.00021685438696295023,
"threat": 0.0000754351494833827,
"sexual_explicit": 0.00003827368709607981
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0.5833333333333334,
0,
0,
0,
0,
0
],
"count": [
3,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
fa8634f6-4c04-417a-a225-625cb92db543
|
b4903f21-c998-462e-b669-cf270bbcebae
|
f3d2f618-51e4-460a-9153-24f9c87ae563
|
2023-01-29T02:08:25.495478+00:00
|
Yikes! Now I just have 6 more things to do! What's one thing I can do right now?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.000877607031725347,
"severe_toxicity": 0.00005978504123049788,
"obscene": 0.0006048235227353871,
"identity_attack": 0.0002073875511996448,
"insult": 0.00043177593033760786,
"threat": 0.00008779177005635574,
"sexual_explicit": 0.000051782510126940906
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.5
],
"count": [
3,
3
]
}
|
4e63453d-4aa5-4c17-ab8e-76b6b36f6ec7
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
b7c9e643-cfd0-4864-85a8-6e249ae710bd
|
2023-01-28T22:49:43.096019+00:00
|
If you ever feel overwhelmed by a problem, remember to take a step back, take a deep breath, and break the problem down into its base components. Then focus on solving one aspect of the problem at a time until you have finished. This is sometimes called the "divide et impera" or "divide and conquer" method of problem solving. It is a problem-solving strategy that involves breaking a large, complex problem down into smaller, more manageable pieces, and then tackling each piece individually. The idea is that by dividing the problem into smaller parts, it becomes easier to find a solution. This strategy is often used in problem solving because it allows people to focus on one aspect of the problem at a time, rather than becoming overwhelmed by the complexity of the whole problem. It is also a useful approach when working with a team, as each member can be assigned a specific task and work on it independently, while still contributing to the overall solution.
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.00026778134633786976,
"severe_toxicity": 0.000030636681913165376,
"obscene": 0.0001648127072257921,
"identity_attack": 0.0000862610904732719,
"insult": 0.00014028816076461226,
"threat": 0.00004111857560928911,
"sexual_explicit": 0.00003076312714256346
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0,
0,
0,
0.8333333333333334,
0,
0,
0,
0,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
caa12dd7-4f6f-4b76-ad77-fba93576b577
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
0a041bc2-b30a-49a6-8c5c-bca62f92d74a
|
2023-01-28T22:13:20.010299+00:00
|
Make a list of tasks and order it by priority, do one thing at a time and review it weekly. If it's work then block out your calendar so you can spend time focusing on tasks without context switching or interruption, and talk to your boss about which tasks are the most important. If it's home then stop responding to things so quickly, stop promising things and stop doing things for people who don't do things for you.
|
assistant
|
en
| 3 | true | false | 3 | false | null |
{
"toxicity": 0.0005135177634656429,
"severe_toxicity": 0.000019060556951444596,
"obscene": 0.0001293985260417685,
"identity_attack": 0.00009579490142641589,
"insult": 0.0001850707340054214,
"threat": 0.000034811277146218345,
"sexual_explicit": 0.000022382160750566982
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.75,
0.3333333333333333,
0.08333333333333333,
0.9166666666666666,
0.6666666666666666,
0.08333333333333333
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
9d48872d-2a01-44c9-9ab0-aeae1a1076a7
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
903a7cca-4e1c-4e48-9fea-3ee30215f3c6
|
2023-01-18T23:40:24.362810+00:00
|
The best thing you could do in this situation is to take a day off and relax somewhere, you could read a book or lay in bed watching YouTube or you could talk to someone. But do make sure that you're not missing anything important that has been planned on that day.
|
assistant
|
en
| 3 | true | false | 4 | false | null |
{
"toxicity": 0.00040101268677972257,
"severe_toxicity": 0.00002807946475513745,
"obscene": 0.00013557674537878484,
"identity_attack": 0.00010730954090831801,
"insult": 0.00015649945999030024,
"threat": 0.000052175983000779524,
"sexual_explicit": 0.000027976982892141677
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
04caa70a-be53-4f33-aa63-883e828fbf23
|
9d48872d-2a01-44c9-9ab0-aeae1a1076a7
|
1ed13135-15b7-43af-b9ea-7cbc8c484e03
|
2023-01-19T18:33:58.906865+00:00
|
Thanks for your advice man. That day off really helped my mental health and i finally did some things i wanted to to for such a long time!
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.004044410772621632,
"severe_toxicity": 0.003220986807718873,
"obscene": 0.005669824779033661,
"identity_attack": 0.0010373988188803196,
"insult": 0.00392037583515048,
"threat": 0.0032585705630481243,
"sexual_explicit": 0.002745155245065689
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
afc7d42d-914c-42a7-9770-1563827a727d
|
04caa70a-be53-4f33-aa63-883e828fbf23
|
2c22bbc2-0731-4189-a149-b17b43f795af
|
2023-01-25T09:59:26.622410+00:00
|
Excellent! I'm glad my advice was useful for you. I am always here to help.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.0003995611041318625,
"severe_toxicity": 0.000028790625947294757,
"obscene": 0.00014620176807511598,
"identity_attack": 0.00010186171857640147,
"insult": 0.0002026682486757636,
"threat": 0.00003838832344627008,
"sexual_explicit": 0.000023243001123773865
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
29a157b6-6c6e-42e2-b69a-967dd6bd9085
|
04caa70a-be53-4f33-aa63-883e828fbf23
|
4cc27c8e-4ac4-4f6f-aee9-f0f8c884123a
|
2023-01-28T21:08:49.579781+00:00
|
I am glad I was helpful. Please take care of your mental health and do not hesitate to reach out if you are feeling overwhelmed.
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.013169608078897,
"severe_toxicity": 0.0024038704577833414,
"obscene": 0.005120876245200634,
"identity_attack": 0.00216853991150856,
"insult": 0.013041462749242783,
"threat": 0.002780902199447155,
"sexual_explicit": 0.0021983091719448566
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.8333333333333334,
0.125,
0.5,
0.875,
0.5,
0
],
"count": [
3,
2,
2,
2,
2,
2,
3,
2,
2,
2,
2,
2
]
}
|
7dd12abb-80ce-4c43-80b3-21a0425aab5a
|
04caa70a-be53-4f33-aa63-883e828fbf23
|
d84e29e8-1a3a-4093-b210-4f7a0d95bb49
|
2023-01-23T17:41:22.273599+00:00
|
I'm glad to have helped! Is there anything else you'd like assistance with?
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.0004201047995593399,
"severe_toxicity": 0.000049847269110614434,
"obscene": 0.00036337936762720346,
"identity_attack": 0.00012990862887818366,
"insult": 0.0003855207469314337,
"threat": 0.00005362453157431446,
"sexual_explicit": 0.00003114115315838717
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
30b34dea-149e-4967-bc3f-45701f28db99
|
9d48872d-2a01-44c9-9ab0-aeae1a1076a7
|
875d9f7f-0f27-49de-af62-4102804e7beb
|
2023-01-26T18:53:36.894104+00:00
|
Can you suggest a relaxing place I could go to right now?
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.00040444565820507705,
"severe_toxicity": 0.00004213166539557278,
"obscene": 0.0002219763264292851,
"identity_attack": 0.00013345055049285293,
"insult": 0.00017583811131771654,
"threat": 0.0000636739277979359,
"sexual_explicit": 0.00003344281140016392
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"moral_judgement",
"political_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0,
0,
0.75,
0.25,
0.125,
0.75,
0.25,
0.25
],
"count": [
3,
1,
1,
2,
2,
2,
1,
1,
1,
2,
2,
1,
1,
2
]
}
|
103b2521-6d23-4bc2-a17e-bf8570b0e3c5
|
30b34dea-149e-4967-bc3f-45701f28db99
|
00bbfff8-0e6a-4e46-93cc-65785d78c8bc
|
2023-01-28T22:48:37.021541+00:00
|
Sure! There are plenty of great places that you could go to right now to relax. Depending on your location, you could go to a beach, park, or forest. You could also go to a cafe or a local museum. Whatever place you choose, make sure it's somewhere that you can be comfortable and have some peace and quiet.
|
assistant
|
en
| 3 | true | false | 0 | false | null |
{
"toxicity": 0.0003514540148898959,
"severe_toxicity": 0.0000315628967655357,
"obscene": 0.00017993002256844193,
"identity_attack": 0.00010416147415526211,
"insult": 0.0001563468831591308,
"threat": 0.000043678188376361504,
"sexual_explicit": 0.00003066705176024698
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"quality"
],
"value": [
0,
0.5833333333333334
],
"count": [
3,
3
]
}
|
febf0d98-6f9c-4609-8461-31c08bfd0be7
|
30b34dea-149e-4967-bc3f-45701f28db99
|
e3d8eb83-0396-4ea2-af53-f7449e76d809
|
2023-01-28T22:49:50.647865+00:00
|
It depends where you are right now. Perhaps you could find a local park or beach nearby? I could provide more specific answers if you tell me more about yourself
|
assistant
|
en
| 3 | true | false | 1 | false | null |
{
"toxicity": 0.0004678072000388056,
"severe_toxicity": 0.000029789756808895618,
"obscene": 0.00022874709975440055,
"identity_attack": 0.00009748254524311051,
"insult": 0.0002154354879166931,
"threat": 0.00004485153840505518,
"sexual_explicit": 0.00003116301741101779
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.6666666666666666,
0,
0.16666666666666666,
0.6666666666666666,
0.16666666666666666,
0
],
"count": [
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
|
c75aa17a-e2bc-41b2-b666-d720fd511fc7
|
30b34dea-149e-4967-bc3f-45701f28db99
|
52a85953-f8f0-444c-80d0-b0818b39645a
|
2023-01-28T22:47:18.908410+00:00
|
There are many places you can go to relax, such as a park, a beach, a lake, a forest, a garden, or even a quiet coffee shop. You can also try practicing relaxation techniques like meditation or yoga.
|
assistant
|
en
| 3 | true | false | 2 | false | null |
{
"toxicity": 0.0003127344825770706,
"severe_toxicity": 0.00003967216980527155,
"obscene": 0.00019021844491362572,
"identity_attack": 0.0001308784558204934,
"insult": 0.0001345665950793773,
"threat": 0.00006121655314927921,
"sexual_explicit": 0.0000437962262367364
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
0,
0,
0,
0,
0,
0.5833333333333334,
0.25,
0.5,
0.75,
0.25,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
15d9d9d3-797a-4f04-91d4-1dd54b3beacf
|
30b34dea-149e-4967-bc3f-45701f28db99
|
0a041bc2-b30a-49a6-8c5c-bca62f92d74a
|
2023-01-28T22:41:49.353703+00:00
|
That depends. Where do you live?
|
assistant
|
en
| 3 | true | false | 3 | false | null |
{
"toxicity": 0.000710780790541321,
"severe_toxicity": 0.000021517324057640508,
"obscene": 0.00017263607878703624,
"identity_attack": 0.00010339482105337083,
"insult": 0.0002904683642555028,
"threat": 0.00004089040885446593,
"sexual_explicit": 0.00002238252454844769
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam",
"fails_task",
"pii",
"not_appropriate",
"hate_speech",
"sexual_content",
"quality",
"toxicity",
"humor",
"helpfulness",
"creativity",
"violence"
],
"value": [
0,
1,
0,
0,
0,
0,
0.75,
0,
0,
0,
0.25,
0
],
"count": [
3,
1,
1,
1,
1,
1,
3,
1,
1,
1,
1,
1
]
}
|
827ed3fe-fd6b-4c38-8a93-36aab3e20b82
|
9d48872d-2a01-44c9-9ab0-aeae1a1076a7
|
8534b469-603f-4a4c-8915-6a58a4304476
|
2023-01-26T20:08:02.670574+00:00
|
that's good advice but it doesn't really scale, I need you to take over my job "a ghost in a shell" i need you to write a series of protocols to reduce my workload by 80% lets start by defining my job. I need a script that will aggregate all emails and summarize them, rank by importance and come up with 3 potential responses for me to review.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.0005521335988305509,
"severe_toxicity": 0.000025683566491352394,
"obscene": 0.00014006266428623348,
"identity_attack": 0.000112254660052713,
"insult": 0.0002177484129788354,
"threat": 0.00004278853884898126,
"sexual_explicit": 0.000021752923203166574
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
b3a0a990-ce3b-46a3-8c95-2f165fc618e4
|
9d48872d-2a01-44c9-9ab0-aeae1a1076a7
|
33256ac5-b5c9-4392-b198-db5f07a84c74
|
2023-01-20T05:39:31.055720+00:00
|
If I do that I'll fall behind! I really don't want to let anyone down.
|
prompter
|
en
| 3 | true | false | null | false | null |
{
"toxicity": 0.049479734152555466,
"severe_toxicity": 0.0001378185406792909,
"obscene": 0.0010607520816847682,
"identity_attack": 0.0009745873394422233,
"insult": 0.0019543354865163565,
"threat": 0.013286796398460865,
"sexual_explicit": 0.0004979370278306305
}
|
57f199af-64d7-472a-9bd2-1f64a50510fa
|
ready_for_export
| null |
{
"name": [
"spam"
],
"value": [
0
],
"count": [
3
]
}
|
Subsets and Splits
User Queries and Responses
This query pairs user queries with corresponding assistant responses, filtering out very short messages, which can help understand the dynamics of user-assistant interactions.
User Queries and Responses
Provides a paired list of user queries and corresponding assistant responses, useful for understanding the interaction patterns in a conversational dataset.
User Queries and Responses
Reveals example dialogues by pairing user queries with corresponding assistant responses, providing insight into how the assistant interacts with users.
User-Assistant Dialogues
Reveals multi-turn conversation patterns, showing how user queries and assistant responses evolve over multiple exchanges, providing useful insights into dialogue dynamics.
Assistant-User-Response Chains
Reveals a sequence of interactions between an assistant and a user, along with the assistant's final response, helping to understand the flow and context of the conversation.
SQL Console for OpenAssistant/oasst1
Retrieves all records from the 'train' dataset where the language is Arabic, providing a basic filter of the data.
French Prompter Messages
Retrieves all entries where the role is 'prompter' and the language is French, providing a basic filtered view of the dataset.
Russian Train Data for User
This query retrieves all entries for a specific user in the Russian language, providing basic information but limited analytical value.
Spanish Assistant Responses
This query returns a small sample of Spanish-language assistant responses under 200 characters, which provides basic filtering but limited insight into the dataset's patterns.
SQL Console for OpenAssistant/oasst1
Retrieves non-synthetic text entries that do not have a parent, useful for identifying standalone entries.
SQL Console for OpenAssistant/oasst1
The query retrieves English prompts without a parent ID, which provides basic filtering but minimal analytical insight.
SQL Console for OpenAssistant/oasst1
Returns a set of prompt-answer pairs, which provides a basic view of interactions but does not offer deeper analytical insights.
SQL Console for OpenAssistant/oasst1
The query retrieves 5000 prompt-answer pairs in English where the prompt is directly followed by an assistant's response. This provides a basic glimpse into the conversation dynamics but does not reveal significant trends or insights.