Class MultilayerPerceptron


  • public class MultilayerPerceptron
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.jblas.DoubleMatrix predict​(org.jblas.DoubleMatrix input)
      Calls the forward propagation function starting from layer 0 and uses the network inputs
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MultilayerPerceptron

        public MultilayerPerceptron​(java.util.List<Layer> layers)
    • Method Detail

      • predict

        public org.jblas.DoubleMatrix predict​(org.jblas.DoubleMatrix input)
        Calls the forward propagation function starting from layer 0 and uses the network inputs
        Parameters:
        input - network inputs
        Returns:
        the predicted values from the network
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object