smile.deep.layer.AdaptiveAvgPool2dLayer 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.pytorch.AdaptiveAvgPool2dImpl;
import org.bytedeco.pytorch.LongOptional;
import org.bytedeco.pytorch.LongOptionalVector;
import org.bytedeco.pytorch.Module;
import smile.deep.tensor.Tensor;
/**
* An adaptive average pooling that reduces a tensor by combining cells.
* The output size should be specified and the stride and kernel-size are
* automatically selected to adapt to the needs.
*
* @author Haifeng Li
*/
public class AdaptiveAvgPool2dLayer implements Layer {
private final AdaptiveAvgPool2dImpl module;
/**
* Constructor.
* @param size the output size.
*/
public AdaptiveAvgPool2dLayer(int size) {
this(size, size);
}
/**
* Constructor.
* @param height the output height.
* @param width the output width.
*/
public AdaptiveAvgPool2dLayer(int height, int width) {
// JavaCPP doesn't generate correct constructor.
// https://github.com/bytedeco/javacpp-presets/issues/1492
var p1 = new LongOptional(height);
var p2 = new LongOptional(width);
var outputSize = new LongOptionalVector(p1, p2);
this.module = new AdaptiveAvgPool2dImpl(outputSize.front());
p1.close();
p2.close();
outputSize.close();
}
@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