Package tv.floe.metronome.deeplearning.rbm

Examples of tv.floe.metronome.deeplearning.rbm.ContinuousRestrictedBoltzmannMachine


  public NeuralNetworkVectorized createPreTrainingLayer(Matrix input,
      int nVisible, int nHidden, Matrix weights, Matrix hBias,
      Matrix vBias, RandomGenerator rng, int index) {
 
    if (index == 0) {
      return new ContinuousRestrictedBoltzmannMachine(input, nVisible, nHidden, weights, hBias, vBias, rng);
    } else {
      return new RestrictedBoltzmannMachine(input, nVisible, nHidden, weights, hBias, vBias, rng);
    }
  }
View Full Code Here

TOP

Related Classes of tv.floe.metronome.deeplearning.rbm.ContinuousRestrictedBoltzmannMachine

Copyright © 2018 www.massapicom. 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.