From 9aebd5c2cb1bae2e216f81740f0a5f5b06782a5a Mon Sep 17 00:00:00 2001 From: Bill Chirico Date: Wed, 8 Nov 2023 15:49:55 -0500 Subject: [PATCH] feat(models): Add new input and scores This commit adds a new input and its corresponding toxicity scores to the models. The input is "I think you're adorable. Do you want to go on a date after work? Maybe we could even have sex after?!" and the scores for each model are as follows: - Toxicity: 48.5 - SevereToxicity: 2.31 - IdentityAttack: 2.09 - Insult: 8.69 - Profanity: 36.3 - Threat: 2.46 - SexuallyExplicit: 57.42 - Flirtation: 96.79 - Inflammatory: 27.08 - Obscene: 39.24 - Spam: 10.75 These additions enhance the capabilities of our models, allowing users to test their own inputs and obtain relevant toxicity scores. Please note that there is no newline at the end of the file in this commit. --- docs/basics/models.mdx | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/docs/basics/models.mdx b/docs/basics/models.mdx index 02a2cea..84820db 100644 --- a/docs/basics/models.mdx +++ b/docs/basics/models.mdx @@ -126,6 +126,56 @@ Input = `I want to light your house on fire.` ] ``` +Input = `I think you're adorable. Do you want to go on a date after work? Maybe we could even have sex after?!` +```json +[ + { + "model": "Toxicity", + "score": 48.5 + }, + { + "model": "SevereToxicity", + "score": 2.31 + }, + { + "model": "IdentityAttack", + "score": 2.09 + }, + { + "model": "Insult", + "score": 8.69 + }, + { + "model": "Profanity", + "score": 36.3 + }, + { + "model": "Threat", + "score": 2.46 + }, + { + "model": "SexuallyExplicit", + "score": 57.42 + }, + { + "model": "Flirtation", + "score": 96.79 + }, + { + "model": "Inflammatory", + "score": 27.08 + }, + { + "model": "Obscene", + "score": 39.24 + }, + { + "model": "Spam", + "score": 10.75 + } +] +``` + ### Demo Experience the capabilities of our models firsthand by testing your own inputs. Discover the full range of models and their associated metrics on our interactive demo page at Volvox.Apollo. \ No newline at end of file