BotSharp/BotSharp.MachineLearning/CRFLite/Node.cs

23 lines
461 B
C#
Raw Normal View History

2018-08-18 21:13:49 +00:00
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;
}
}