BotSharp/BotSharp.MachineLearning/CRFLite/Node.cs
2018-08-18 16:13:49 -05:00

23 lines
461 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BotSharp.MachineLearning.CRFLite
{
public class Node
{
public int fid;
public short x;
public short y;
public double alpha;
public double beta;
public double cost;
public double bestCost;
public Node prev;
public List<Path> lpathList;
public List<Path> rpathList;
}
}