Package tv.floe.metronome.io.records

Examples of tv.floe.metronome.io.records.CachedVector


   */
  @Override
  public NetworkWeightsUpdateable compute() {

    // the vector to pull from the local read through cache
    CachedVector cv = new CachedVector( this.nn.getInputsCount(), this.rec_factory.getOutputVectorSize() ) ;// rec_factory.getFeatureVectorSize() );
   
    cachedVecReader.Reset();
   
    BackPropogationLearningAlgorithm bp = ((BackPropogationLearningAlgorithm)this.nn.getLearningRule());
    bp.clearTotalSquaredError();
View Full Code Here

TOP

Related Classes of tv.floe.metronome.io.records.CachedVector

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.