Class ModerationResult
Inheritance
ModerationResult
Assembly: Glitch9.AIDevKit.dll
Syntax
public class ModerationResult
Properties
|
Edit this page
View Source
Categories
A list of the categories, and whether they are flagged or not.
Declaration
[JsonProperty("categories")]
public Dictionary<string, bool> Categories { get; set; }
Property Value
|
Edit this page
View Source
CategoryScores
A list of the categories along with their scores as predicted by model.
Declaration
[JsonProperty("category_scores")]
public Dictionary<string, float> CategoryScores { get; set; }
Property Value
|
Edit this page
View Source
Flagged
Whether any of the below categories are flagged.
Declaration
[JsonProperty("flagged")]
public bool Flagged { get; set; }
Property Value
Methods
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Extension Methods