Examples of InputFieldMLDataSet


Examples of org.encog.util.normalize.input.InputFieldMLDataSet

        
    DataNormalization norm = new DataNormalization();
    norm.setReport(new NullStatusReportable());
    norm.setTarget(target);
    
    norm.addInputField(a = new    InputFieldMLDataSet(false,dataset,0));
    norm.addInputField(b = new 
          InputFieldMLDataSet(false,dataset,1));
        
        norm.addOutputField(
          new OutputFieldRangeMapped(a,0.1,0.9));
        
View Full Code Here

Examples of org.encog.util.normalize.input.InputFieldMLDataSet

    } else if (field instanceof InputFieldCSV) {
      final InputFieldCSV fieldCSV = (InputFieldCSV) field;
      final ReadCSV csv = this.csvMap.get(field);
      result = csv.getDouble(fieldCSV.getOffset());
    } else if (field instanceof InputFieldMLDataSet) {
      final InputFieldMLDataSet neuralField =
        (InputFieldMLDataSet) field;
      final MLDataFieldHolder holder = this.dataSetFieldMap
          .get(field);
      final MLDataPair pair = holder.getPair();
      int offset = neuralField.getOffset();
      if (offset < pair.getInput().size()) {
        result = pair.getInput().getData(offset);
      } else {
        offset -= pair.getInput().size();
        result = pair.getIdeal().getData(offset);
View Full Code Here

Examples of org.encog.util.normalize.input.InputFieldMLDataSet

      new HashMap<MLDataSet, MLDataFieldHolder>();

    // find the unique files
    for (final InputField field : this.inputFields) {
      if (field instanceof InputFieldMLDataSet) {
        final InputFieldMLDataSet dataSetField =
          (InputFieldMLDataSet) field;
        final MLDataSet dataSet = dataSetField.getNeuralDataSet();
        if (!uniqueSets.containsKey(dataSet)) {
          final Iterator<MLDataPair> iterator = dataSet
              .iterator();
          final MLDataFieldHolder holder =
            new MLDataFieldHolder(
View Full Code Here

Examples of org.encog.util.normalize.input.InputFieldMLDataSet

    NormalizationStorageArray2D target = new NormalizationStorageArray2D(arrayOutput);
   
    DataNormalization norm = new DataNormalization();
    norm.setReport(new NullStatusReportable());
    norm.setTarget(target);
    norm.addInputField(a = new InputFieldMLDataSet(false,dataset,0));
    norm.addInputField(b = new InputFieldMLDataSet(false,dataset,1));
    norm.addOutputField(new OutputFieldRangeMapped(a,0.1,0.9));
    norm.addOutputField(new OutputFieldRangeMapped(b,0.1,0.9));
    return norm;
  }
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.