smile.deep.layer.RMSNormLayer 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.Module;
import smile.deep.tensor.ScalarType;
import smile.deep.tensor.Tensor;
/**
* Root Mean Square Layer Normalization. RMSNorm regularizes the summed inputs
* to a neuron in one layer according to root mean square (RMS), giving the
* model re-scaling invariance property and implicit learning rate adaptation
* ability. RMSNorm is computationally simpler and thus more efficient than LayerNorm.
*
* @author Haifeng Li
*/
public class RMSNormLayer implements Layer {
private final Module module = new Module("RMSNorm");
/** The term added to the denominator to improve numerical stability. */
private final double eps;
/** The positional encoding tensor. */
private final Tensor weight;
/**
* Constructor.
* @param dim the layer size.
*/
public RMSNormLayer(int dim) {
this(dim, 1E-6);
}
/**
* Constructor.
* @param dim the layer size.
* @param eps the term added to the denominator to improve numerical stability.
*/
public RMSNormLayer(int dim, double eps) {
this.eps = eps;
weight = Tensor.ones(dim);
module.register_parameter("weight", weight.asTorch());
}
@Override
public Tensor forward(Tensor input) {
Tensor x = input.to(ScalarType.Float32);
Tensor output = x.mul(x.pow(2).mean(-1, true).add_(eps).rsqrt_()).to(input.dtype());
return output.mul_(weight);
}
@Override
public Module asTorch() {
return module;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy