Package tv.floe.metronome.deeplearning.rbm

Examples of tv.floe.metronome.deeplearning.rbm.RestrictedBoltzmannMachine.load()


       
        this.preTrainingLayers = new RestrictedBoltzmannMachine[ this.numberLayers ];
        for ( int x = 0; x < this.numberLayers; x++ ) {

          RestrictedBoltzmannMachine rbm = new RestrictedBoltzmannMachine(1, 1, null);
          rbm.load(is);
          this.preTrainingLayers[ x ] = rbm;
         
        }
       
        this.randomGenerator = (RandomGenerator) ois.readObject();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.