RLPark 1.0.0
Reinforcement Learning Framework in Java

Predictor.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms.functions;
00002 
00003 import java.io.Serializable;
00004 
00005 import rlpark.plugin.rltoys.math.vector.RealVector;
00006 
00007 public interface Predictor extends Serializable {
00008   double predict(RealVector x);
00009 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark