BotSharp/src/Plugins/BotSharp.Plugin.RoutingSpeeder/Providers/Models/TrainingParams.cs
2023-08-31 10:48:59 -05:00

14 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Plugin.RoutingSpeeder.Providers.Models;
public class TrainingParams
{
public int ClientId { get; set; }
public int Epochs { get; set; } = 10;
public int BatchSize { get; set; } = 16;
public float LearningRate { get; set; } = 1.0e-4f;
}