Exemple #1
0
        /// <inheritdoc />
        public INDArray FlattenTimeAndFeatures(INDArray array)
        {
            if (Enabled && array.Rank < 3)
            {
                Report($"ndarray needs to have a rank of 3 or higher (was {array.Rank}) for {nameof(FlattenTimeAndFeatures)} operation", array);
            }

            return(CheckNice(UnderlyingHandler.FlattenTimeAndFeatures(CheckNice(array))));
        }