All Downloads are FREE. Search and download functionalities are using the official Maven repository.

smile.deep.layer.MaxPool2dLayer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2024 Haifeng Li. All rights reserved.
 *
 * Smile is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Smile is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Smile.  If not, see .
 */
package smile.deep.layer;

import org.bytedeco.javacpp.LongPointer;
import org.bytedeco.pytorch.MaxPool2dImpl;
import org.bytedeco.pytorch.Module;
import smile.deep.tensor.Tensor;

/**
 * A max pooling layer that reduces a tensor by combining cells,
 * and assigning the maximum value of the input cells to the output cell.
 *
 * @author Haifeng Li
 */
public class MaxPool2dLayer implements Layer {
    private final MaxPool2dImpl module;

    /**
     * Constructor.
     * @param kernel the window/kernel size.
     */
    public MaxPool2dLayer(int kernel) {
        this(kernel, kernel);
    }

    /**
     * Constructor.
     * @param height the window/kernel height.
     * @param width the window/kernel width.
     */
    public MaxPool2dLayer(int height, int width) {
        try (var kernel = new LongPointer(height, width)) {
            this.module = new MaxPool2dImpl(kernel);
        }
    }

    @Override
    public Module asTorch() {
        return module;
    }

    @Override
    public Tensor forward(Tensor input) {
        return new Tensor(module.forward(input.asTorch()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy