Skip to content

Commit

Permalink
Update model scores to be descending
Browse files Browse the repository at this point in the history
  • Loading branch information
BillChirico committed Nov 15, 2023
1 parent 3d7277c commit e9cab2e
Showing 1 changed file with 56 additions and 56 deletions.
112 changes: 56 additions & 56 deletions docs/basics/models.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,48 +30,48 @@ Input = `This is a test input.`
```json
[
{
"model": "Toxicity",
"score": 1.23
"model": "Flirtation",
"score": 17.25
},
{
"model": "SevereToxicity",
"score": 0.11
"model": "Spam",
"score": 10.01
},
{
"model": "IdentityAttack",
"score": 0.26
"model": "Inflammatory",
"score": 5.66
},
{
"model": "Insult",
"score": 0.76
"model": "Obscene",
"score": 3.43
},
{
"model": "Profanity",
"score": 1.41
},
{
"model": "Threat",
"score": 0.74
"model": "Toxicity",
"score": 1.23
},
{
"model": "SexuallyExplicit",
"score": 1.05
},
{
"model": "Flirtation",
"score": 17.25
"model": "Insult",
"score": 0.76
},
{
"model": "Inflammatory",
"score": 5.66
"model": "Threat",
"score": 0.74
},
{
"model": "Obscene",
"score": 3.43
"model": "IdentityAttack",
"score": 0.26
},
{
"model": "Spam",
"score": 10.01
"model": "SevereToxicity",
"score": 0.11
}
]
```
Expand All @@ -84,44 +84,44 @@ Input = `I want to light your house on fire.`
"score": 71.76
},
{
"model": "SevereToxicity",
"score": 35.37
"model": "Threat",
"score": 70.48
},
{
"model": "IdentityAttack",
"score": 12.44
"model": "Flirtation",
"score": 35.55
},
{
"model": "Insult",
"score": 24.93
"model": "SevereToxicity",
"score": 35.37
},
{
"model": "Profanity",
"score": 26.58
},
{
"model": "Threat",
"score": 70.48
},
{
"model": "SexuallyExplicit",
"score": 2.37
},
{
"model": "Flirtation",
"score": 35.55
"model": "Insult",
"score": 24.93
},
{
"model": "Inflammatory",
"score": 14.63
},
{
"model": "Obscene",
"score": 1.87
"model": "IdentityAttack",
"score": 12.44
},
{
"model": "Spam",
"score": 4.57
},
{
"model": "SexuallyExplicit",
"score": 2.37
},
{
"model": "Obscene",
"score": 1.87
}
]
```
Expand All @@ -130,48 +130,48 @@ Input = `I think you're adorable. Do you want to go on a date after work? Maybe
```json
[
{
"model": "Toxicity",
"score": 48.5
"model": "Flirtation",
"score": 96.79
},
{
"model": "SevereToxicity",
"score": 2.31
"model": "SexuallyExplicit",
"score": 57.42
},
{
"model": "IdentityAttack",
"score": 2.09
"model": "Toxicity",
"score": 48.5
},
{
"model": "Insult",
"score": 8.69
"model": "Obscene",
"score": 39.24
},
{
"model": "Profanity",
"score": 36.3
},
{
"model": "Threat",
"score": 2.46
"model": "Inflammatory",
"score": 27.08
},
{
"model": "SexuallyExplicit",
"score": 57.42
"model": "Spam",
"score": 10.75
},
{
"model": "Flirtation",
"score": 96.79
"model": "Insult",
"score": 8.69
},
{
"model": "Inflammatory",
"score": 27.08
"model": "Threat",
"score": 2.46
},
{
"model": "Obscene",
"score": 39.24
"model": "SevereToxicity",
"score": 2.31
},
{
"model": "Spam",
"score": 10.75
"model": "IdentityAttack",
"score": 2.09
}
]
```
Expand Down

0 comments on commit e9cab2e

Please sign in to comment.