Class DatasetTT


  • public class DatasetTT
    extends java.lang.Object
    Dataset with a train and test.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • train

        public final Dataset train
        Train data.
      • test

        public final Dataset test
        Test data.
    • Constructor Detail

      • DatasetTT

        public DatasetTT​(Dataset train,
                         Dataset test)
        Create a new dataset.
        Parameters:
        train - train data
        test - test data
      • DatasetTT

        public DatasetTT​(Matrix trainX,
                         Matrix trainY,
                         Matrix testX,
                         Matrix testY)
        Create a new dataset.
        Parameters:
        trainX - train input
        trainY - train output
        testX - test input
        testY - test output