alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (CanovaSequencePairDataSetFunction.java)

This example Java source code file (CanovaSequencePairDataSetFunction.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

align_start, alignmentmode, canovasequencepairdatasetfunction, collection, dataset, datasetpreprocessor, equal_length, indarray, invalid, iterator, override, unsupportedoperationexception, util, writable, writableconverter

The CanovaSequencePairDataSetFunction.java Java example source code

package org.deeplearning4j.spark.canova;

import org.apache.spark.api.java.function.Function;
import org.canova.api.io.WritableConverter;
import org.canova.api.writable.Writable;
import org.canova.common.data.NDArrayWritable;
import org.deeplearning4j.datasets.canova.SequenceRecordReaderDataSetIterator;
import org.nd4j.linalg.api.ndarray.INDArray;
import org.nd4j.linalg.dataset.DataSet;
import org.nd4j.linalg.dataset.api.DataSetPreProcessor;
import org.nd4j.linalg.factory.Nd4j;
import org.nd4j.linalg.indexing.NDArrayIndex;
import org.nd4j.linalg.util.FeatureUtil;
import scala.Tuple2;

import java.io.Serializable;
import java.util.Collection;
import java.util.Iterator;

/**Map {@code Tuple2<Collection,Collection>} objects (out of a TWO canova-spark
 *  sequence record reader functions) to  DataSet objects for Spark training.
 * Analogous to {@link SequenceRecordReaderDataSetIterator}, but in the context of Spark.
 * Supports loading data from a TWO sources only; hence supports many-to-one and one-to-many situations.
 * see {@link CanovaSequenceDataSetFunction} for the single file version
 * @author Alex Black
 */
public class CanovaSequencePairDataSetFunction implements Function<Tuple2,Collection>>,DataSet>, Serializable {
    /**Alignment mode for dealing with input/labels of differing lengths (for example, one-to-many and many-to-one type situations).
     * For example, might have 10 time steps total but only one label at end for sequence classification.<br>
     * <b>EQUAL_LENGTH: Default. Assume that label and input time series are of equal length
* <b>ALIGN_START: Align the label/input time series at the first time step, and zero pad either the labels or * the input at the end (pad whichever is shorter)<br> * <b>ALIGN_END: Align the label/input at the last time step, zero padding either the input or the labels as required
*/ public enum AlignmentMode { EQUAL_LENGTH, ALIGN_START, ALIGN_END } private final boolean regression; private final int numPossibleLabels; private final AlignmentMode alignmentMode; private final DataSetPreProcessor preProcessor; private final WritableConverter converter; /** Constructor for equal length and no conversion of labels (i.e., regression or already in one-hot representation). * No data set proprocessor or writable converter */ public CanovaSequencePairDataSetFunction(){ this(-1, true); } /**Constructor for equal length, no data set preprocessor or writable converter * @see #CanovaSequencePairDataSetFunction(int, boolean, AlignmentMode, DataSetPreProcessor, WritableConverter) */ public CanovaSequencePairDataSetFunction(int numPossibleLabels, boolean regression){ this(numPossibleLabels, regression, AlignmentMode.EQUAL_LENGTH); } /**Constructor for data with a specified alignment mode, no data set preprocessor or writable converter * @see #CanovaSequencePairDataSetFunction(int, boolean, AlignmentMode, DataSetPreProcessor, WritableConverter) */ public CanovaSequencePairDataSetFunction(int numPossibleLabels, boolean regression, AlignmentMode alignmentMode){ this(numPossibleLabels, regression, alignmentMode, null, null); } /** * @param numPossibleLabels Number of classes for classification (not used if regression = true) * @param regression False for classification, true for regression * @param alignmentMode Alignment mode for data. See {@link CanovaSequencePairDataSetFunction.AlignmentMode} * @param preProcessor DataSetPreprocessor (may be null) * @param converter WritableConverter (may be null) */ public CanovaSequencePairDataSetFunction(int numPossibleLabels, boolean regression, AlignmentMode alignmentMode, DataSetPreProcessor preProcessor, WritableConverter converter){ this.numPossibleLabels = numPossibleLabels; this.regression = regression; this.alignmentMode = alignmentMode; this.preProcessor = preProcessor; this.converter = converter; } @Override public DataSet call(Tuple2<Collection,Collection>> input) throws Exception { Collection<Collection featuresSeq = input._1(); Collection<Collection labelsSeq = input._2(); int featuresLength = featuresSeq.size(); int labelsLength = labelsSeq.size(); Iterator<Collection fIter = featuresSeq.iterator(); Iterator<Collection lIter = labelsSeq.iterator(); INDArray inputArr = null; INDArray outputArr = null; int[] idx = new int[3]; int i = 0; while(fIter.hasNext()){ Collection<Writable> step = fIter.next(); if (i == 0) { int[] inShape = new int[]{1,step.size(),featuresLength}; inputArr = Nd4j.create(inShape); } Iterator<Writable> timeStepIter = step.iterator(); int f = 0; idx[1] = 0; while (timeStepIter.hasNext()) { Writable current = timeStepIter.next(); if(converter != null) current = converter.convert(current); try { inputArr.putScalar(idx, current.toDouble()); } catch (UnsupportedOperationException e) { // This isn't a scalar, so check if we got an array already if (current instanceof NDArrayWritable) { inputArr.get(NDArrayIndex.point(idx[0]), NDArrayIndex.all(), NDArrayIndex.point(idx[2])) .putRow(0, ((NDArrayWritable)current).get()); } else { throw e; } } idx[1] = ++f; } idx[2] = ++i; } idx = new int[3]; i = 0; while(lIter.hasNext()){ Collection<Writable> step = lIter.next(); if (i == 0) { int[] outShape = new int[]{1,(regression ? step.size() : numPossibleLabels),labelsLength}; outputArr = Nd4j.create(outShape); } Iterator<Writable> timeStepIter = step.iterator(); int f = 0; idx[1] = 0; if(regression){ //Load all values without modification while (timeStepIter.hasNext()) { Writable current = timeStepIter.next(); if(converter != null) current = converter.convert(current); outputArr.putScalar(idx, current.toDouble()); idx[1] = ++f; } } else { //Expect a single value (index) -> convert to one-hot vector Writable value = timeStepIter.next(); int labelClassIdx = value.toInt(); INDArray line = FeatureUtil.toOutcomeVector(labelClassIdx, numPossibleLabels); outputArr.tensorAlongDimension(i, 1).assign(line); //1d from [1,nOut,timeSeriesLength] -> tensor i along dimension 1 is at time i } idx[2] = ++i; } DataSet ds; if(alignmentMode == AlignmentMode.EQUAL_LENGTH || featuresLength == labelsLength){ ds = new org.nd4j.linalg.dataset.DataSet(inputArr,outputArr); } else if(alignmentMode == AlignmentMode.ALIGN_END){ if(featuresLength > labelsLength ){ //Input longer, pad output INDArray newOutput = Nd4j.create(1,outputArr.size(1),featuresLength); newOutput.get(NDArrayIndex.point(0),NDArrayIndex.all(), NDArrayIndex.interval(featuresLength-labelsLength,featuresLength)) .assign(outputArr); //Need an output mask array, but not an input mask array INDArray outputMask = Nd4j.create(1,featuresLength); for( int j=featuresLength-labelsLength; j<featuresLength; j++ ) outputMask.putScalar(j,1.0); ds = new DataSet(inputArr,newOutput,null,outputMask); } else { //Output longer, pad input INDArray newInput = Nd4j.create(1,inputArr.size(1),labelsLength); newInput.get(NDArrayIndex.point(0),NDArrayIndex.all(), NDArrayIndex.interval(labelsLength-featuresLength,labelsLength)) .assign(inputArr); //Need an input mask array, but not an output mask array INDArray inputMask = Nd4j.create(1,labelsLength); for( int j=labelsLength-featuresLength; j<labelsLength; j++ ) inputMask.putScalar(j,1.0); ds = new DataSet(newInput,outputArr,inputMask,null); } } else if(alignmentMode == AlignmentMode.ALIGN_START){ if(featuresLength > labelsLength ){ //Input longer, pad output INDArray newOutput = Nd4j.create(1,outputArr.size(1),featuresLength); newOutput.get(NDArrayIndex.point(0),NDArrayIndex.all(), NDArrayIndex.interval(0,labelsLength)).assign(outputArr); //Need an output mask array, but not an input mask array INDArray outputMask = Nd4j.create(1,featuresLength); for( int j=0; j<labelsLength; j++ ) outputMask.putScalar(j,1.0); ds = new org.nd4j.linalg.dataset.DataSet(inputArr,newOutput,null,outputMask); } else { //Output longer, pad input INDArray newInput = Nd4j.create(1,inputArr.size(1),labelsLength); newInput.get(NDArrayIndex.point(0),NDArrayIndex.all(), NDArrayIndex.interval(0,featuresLength)).assign(inputArr); //Need an input mask array, but not an output mask array INDArray inputMask = Nd4j.create(1,labelsLength); for( int j=0; j<featuresLength; j++ ) inputMask.putScalar(j,1.0); ds = new DataSet(newInput,outputArr,inputMask,null); } } else { throw new UnsupportedOperationException("Invalid alignment mode: " + alignmentMode); } if(preProcessor != null) preProcessor.preProcess(ds); return ds; } }

Other Java examples (source code examples)

Here is a short list of links related to this Java CanovaSequencePairDataSetFunction.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.