Exemplo n.º 1
0
 public NoveltyResult(PointsOfInterest poi, List<Events> events, int start, int end, LibSVMsharp.SVMParameter parameter, List<OneClassFV> anomalis)
 {
     this.poi = poi;
     this.events = events.Select(x => x.Copy()).ToList();
     this.start = start;
     this.end = end;
     this.parameter = parameter;
     this.anomalis = anomalis.ToList();
 }
Exemplo n.º 2
0
 public OneClassFV(LibSVMsharp.SVMNode[] features, int timeStamp)
 {
     Features = features;
     TimeStamp = timeStamp;
 }