BotSharp/src/Plugins/BotSharp.Plugin.RoutingSpeeder/Settings/classifierSetting.cs
2023-08-31 17:00:31 -05:00

19 lines
433 B
C#

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