using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Plugin.RoutingSpeeder.Settings; public class ClassifierSetting { public Dictionary LabelMappingDict { get; set; } = new Dictionary() { {"goodbye", 0f}, {"greeting", 1f}, {"other", 2f} }; public string RAW_DATA_DIR { get; set; } = "raw_data"; public string MODEL_DIR { get; set; } = "models"; }