C++实现softmax函数std::vector

参考博客 激活函数之softmax介绍及C++实现及其评论
Lambda使用参考博客C++ 11 Lambda表达式

函数功能,输入vector<float>数组,修改原数组为softmax输出。即实现下面的公式:
softmax ⁡ ( x ) i = exp ⁡ ( x i − x m a x ) ∑ j = 1 n exp ⁡ ( x j − x m a x ) \operatorname{softmax} (\mathrm{x})_{i}=\frac{\exp \left(\mathrm{x}_{i}-\mathrm{x}_{max}\right)}{\sum_{j=1}^{n} \exp \left(\mathrm{x}_{j}-\mathrm{x}_{max}\right)} softmax(x)i=j=1nexp(xjxmax)exp(xixmax)

void softmax(std::vector<float> &input){
    float maxn = 0.0;
    float sum= 0.0;
    maxn = *max_element(input.begin(), input.end());
    std::for_each(input.begin(), input.end(), [maxn,&sum](float& d) {
    	d=exp(d-maxn);sum+=d;}); 	//cmath c11
    std::for_each(input.begin(), input.end(), [sum](float& d) { d=d/sum;});
    return;
}
/*
testInput:	{1.9502,-2.125,2.60156,2.05078,-1.77539,-4.21875}
output: 0.245873 0.00417709 0.471621 0.271889 0.00592526 0.000514719
*/

和Libtorch的softmax方法对比,结果差距在小数点后9位。

btw,vector实现求和的stl方法

sum = accumulate(input.begin(),input.end(),0);// include<numeric>

Done.

相关文章

显卡天梯图2024最新版,显卡是电脑进行图形处理的重要设备,...
初始化电脑时出现问题怎么办,可以使用win系统的安装介质,连...
todesk远程开机怎么设置,两台电脑要在同一局域网内,然后需...
油猴谷歌插件怎么安装,可以通过谷歌应用商店进行安装,需要...
虚拟内存这个名词想必很多人都听说过,我们在使用电脑的时候...