2018-08-09 21:54:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Engines
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PipeSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string TrainDir { get; set; }
|
|
|
|
|
|
public string ModelDir { get; set; }
|
|
|
|
|
|
public string AlgorithmDir { get; set; }
|
2018-08-10 14:52:31 +00:00
|
|
|
|
public string PredictDir { get; set; }
|
2018-08-09 21:54:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|