Package uk.org.ogsadai.data

Examples of uk.org.ogsadai.data.IntegerData


     *  Sets number of folds in n-fold validation
     * @param folds - number of folds
     */
    public void setFolds(final Integer folds)
    {
       mFoldsInput.add(new IntegerData(folds));
    }
View Full Code Here


        mLinearIndexInput.connect(output);
    }
   
    public void addLinearIndex(int index)
    {
        mLinearIndexInput.add(new IntegerData(index));
    }
View Full Code Here

        SerialiserProcessingElement serialiser = new SerialiserProcessingElement(
                "uk.org.ogsadai.TupleToByteArrays",
                TupleToByteArrays.DATA_INPUT,
                TupleToByteArrays.RESULT_OUTPUT);
        serialiser.createInput(TupleToByteArrays.SIZE_INPUT);
        serialiser.addInput(TupleToByteArrays.SIZE_INPUT, new IntegerData(BYTE_ARRAYS_SIZE));
        serialiser.connectInput(output);
        pipeline.add(serialiser);
        return serialiser.getOutput();
    }
View Full Code Here

                DataToByteArraysActivity.INPUT_DATA,
                DataToByteArraysActivity.OUTPUT_RESULT);
        serialiser.createInput(DataToByteArraysActivity.INPUT_ARRAY_SIZE);
        serialiser.addInput(
                DataToByteArraysActivity.INPUT_ARRAY_SIZE,
                new IntegerData(BYTE_ARRAYS_SIZE));
        serialiser.connectInput(output);
        pipeline.add(serialiser);
        return serialiser.getOutput();
    }
View Full Code Here

        SerialiserProcessingElement serialiser = new SerialiserProcessingElement(
                "eu.admire.Serialiser",
                "data",
                "result");
        serialiser.createInput("blockSize");
        serialiser.addInput("blockSize", new IntegerData(BYTE_ARRAYS_SIZE));
        serialiser.connectInput(output);
        pipeline.add(serialiser);
        return serialiser.getOutput();
    }
View Full Code Here

TOP

Related Classes of uk.org.ogsadai.data.IntegerData

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.