圆月山庄资源网 Design By www.vgjia.com
相对于自适应神经网络、感知器,softmax巧妙低使用简单的方法来实现多分类问题。
- 功能上,完成从N维向量到M维向量的映射
- 输出的结果范围是[0, 1],对于一个sample的结果所有输出总和等于1
- 输出结果,可以隐含地表达该类别的概率
softmax的损失函数是采用了多分类问题中常见的交叉熵,注意经常有2个表达的形式
- 经典的交叉熵形式:L=-sum(y_right * log(y_pred)), 具体
- 简单版本是: L = -Log(y_pred),具体
这两个版本在求导过程有点不同,但是结果都是一样的,同时损失表达的意思也是相同的,因为在第一种表达形式中,当y不是
正确分类时,y_right等于0,当y是正确分类时,y_right等于1。
下面基于mnist数据做了一个多分类的实验,整体能达到85%的精度。
''' softmax classifier for mnist created on 2019.9.28 author: vince ''' import math import logging import numpy import random import matplotlib.pyplot as plt from tensorflow.contrib.learn.python.learn.datasets.mnist import read_data_sets from sklearn.metrics import accuracy_score def loss_max_right_class_prob(predictions, y): return -predictions[numpy.argmax(y)]; def loss_cross_entropy(predictions, y): return -numpy.dot(y, numpy.log(predictions)); ''' Softmax classifier linear classifier ''' class Softmax: def __init__(self, iter_num = 100000, batch_size = 1): self.__iter_num = iter_num; self.__batch_size = batch_size; def train(self, train_X, train_Y): X = numpy.c_[train_X, numpy.ones(train_X.shape[0])]; Y = numpy.copy(train_Y); self.L = []; #initialize parameters self.__weight = numpy.random.rand(X.shape[1], 10) * 2 - 1.0; self.__step_len = 1e-3; logging.info("weight:%s" % (self.__weight)); for iter_index in range(self.__iter_num): if iter_index % 1000 == 0: logging.info("-----iter:%s-----" % (iter_index)); if iter_index % 100 == 0: l = 0; for i in range(0, len(X), 100): predictions = self.forward_pass(X[i]); #l += loss_max_right_class_prob(predictions, Y[i]); l += loss_cross_entropy(predictions, Y[i]); l /= len(X); self.L.append(l); sample_index = random.randint(0, len(X) - 1); logging.debug("-----select sample %s-----" % (sample_index)); z = numpy.dot(X[sample_index], self.__weight); z = z - numpy.max(z); predictions = numpy.exp(z) / numpy.sum(numpy.exp(z)); dw = self.__step_len * X[sample_index].reshape(-1, 1).dot((predictions - Y[sample_index]).reshape(1, -1)); # dw = self.__step_len * X[sample_index].reshape(-1, 1).dot(predictions.reshape(1, -1)); # dw[range(X.shape[1]), numpy.argmax(Y[sample_index])] -= X[sample_index] * self.__step_len; self.__weight -= dw; logging.debug("weight:%s" % (self.__weight)); logging.debug("loss:%s" % (l)); logging.info("weight:%s" % (self.__weight)); logging.info("L:%s" % (self.L)); def forward_pass(self, x): net = numpy.dot(x, self.__weight); net = net - numpy.max(net); net = numpy.exp(net) / numpy.sum(numpy.exp(net)); return net; def predict(self, x): x = numpy.append(x, 1.0); return self.forward_pass(x); def main(): logging.basicConfig(level = logging.INFO, format = '%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s', datefmt = '%a, %d %b %Y %H:%M:%S'); logging.info("trainning begin."); mnist = read_data_sets('../data/MNIST',one_hot=True) # MNIST_data指的是存放数据的文件夹路径,one_hot=True 为采用one_hot的编码方式编码标签 #load data train_X = mnist.train.images #训练集样本 validation_X = mnist.validation.images #验证集样本 test_X = mnist.test.images #测试集样本 #labels train_Y = mnist.train.labels #训练集标签 validation_Y = mnist.validation.labels #验证集标签 test_Y = mnist.test.labels #测试集标签 classifier = Softmax(); classifier.train(train_X, train_Y); logging.info("trainning end. predict begin."); test_predict = numpy.array([]); test_right = numpy.array([]); for i in range(len(test_X)): predict_label = numpy.argmax(classifier.predict(test_X[i])); test_predict = numpy.append(test_predict, predict_label); right_label = numpy.argmax(test_Y[i]); test_right = numpy.append(test_right, right_label); logging.info("right:%s, predict:%s" % (test_right, test_predict)); score = accuracy_score(test_right, test_predict); logging.info("The accruacy score is: %s "% (str(score))); plt.plot(classifier.L) plt.show(); if __name__ == "__main__": main();
损失函数收敛情况
Sun, 29 Sep 2019 18:08:08 softmax.py[line:104] INFO trainning end. predict begin. Sun, 29 Sep 2019 18:08:08 softmax.py[line:114] INFO right:[7. 2. 1. ... 4. 5. 6.], predict:[7. 2. 1. ... 4. 8. 6.] Sun, 29 Sep 2019 18:08:08 softmax.py[line:116] INFO The accruacy score is: 0.8486
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月05日
2024年11月05日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]