Package tv.floe.metronome.classification.neuralnetworks.iterativereduce.xor

Source Code of tv.floe.metronome.classification.neuralnetworks.iterativereduce.xor.TestFourWorkersXOR_IR_NN

package tv.floe.metronome.classification.neuralnetworks.iterativereduce.xor;

import static org.junit.Assert.*;

import org.junit.Test;

import tv.floe.metronome.classification.neuralnetworks.iterativereduce.MasterNode;
import tv.floe.metronome.irunit.IRUnitDriver;

public class TestFourWorkersXOR_IR_NN {

  @Test
  public void testLearnXORFunctionViaIRNN_MLP() throws Exception {
   
    IRUnitDriver polr_ir = new IRUnitDriver("src/test/resources/run_profiles/unit_tests/nn/xor/app.unit_test.nn.xor.fourworkers.properties");
    polr_ir.Setup();

    polr_ir.SimulateRun();

    MasterNode master = (MasterNode) polr_ir.getMaster();
   
    System.out.println("\n\nComplete: ");

//    TestTwoWorkersXOR_IR_NN.scoreNeuralNetworkXor( master.master_nn );
   
  }

}
TOP

Related Classes of tv.floe.metronome.classification.neuralnetworks.iterativereduce.xor.TestFourWorkersXOR_IR_NN

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.