RLPark 1.0.0
Reinforcement Learning Framework in Java

LTU.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms.representations.ltu.units;
00002 
00003 import java.io.Serializable;
00004 
00005 public interface LTU extends Serializable {
00006   int index();
00007 
00008   int[] inputs();
00009 
00010   void updateSum(double[] inputVector);
00011 
00012   boolean updateActivation();
00013 
00014   LTU newLTU(int ltuIndex, int[] inputs, byte[] weights);
00015 
00016   boolean isActive();
00017 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark