Package org.encog.engine.network.flat

Examples of org.encog.engine.network.flat.ValidateForOpenCL


   *            The OpenCL training profile.
   */
  public TrainFlatNetworkOpenCL(final FlatNetwork network,
      final EngineDataSet training, final OpenCLTrainingProfile profile) {

    (new ValidateForOpenCL()).validate(network);

    if (!(training instanceof EngineIndexableSet)) {
      throw new EncogEngineError(
          "Training data must be Indexable for this training type.");
    }
View Full Code Here

TOP

Related Classes of org.encog.engine.network.flat.ValidateForOpenCL

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.