码迷,mamicode.com
首页 > 其他好文 > 详细

softmax函数

时间:2019-04-22 12:27:05      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:std   sum   auto   max   code   int   exp   push   i++   

#include <vector>
#include <cmath> //math.h
std::vector<double> vsoftmax(std::vector<double> &v) {
    double sum=0;
    for(auto iter:v) {
        sum+=exp(iter);
    }

    std::vector<double> res;
    for(int i=0;i<v.size();i++) {
        res.push_back(exp(v[i])/sum);
    }

    return res;
}

softmax函数

标签:std   sum   auto   max   code   int   exp   push   i++   

原文地址:https://www.cnblogs.com/smallredness/p/10749130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!