
人工智能
Mr. HLW
这个作者很懒,什么都没留下…
展开
-
计算机视觉、模式识别、机器学习相关方向资源
牛人主页(主页有很多论文代码) Serge Belongie at UC San Diego Antonio Torralba at MIT Alexei Ffros at CMU Ce Liu at Microsoft Research New England Vittorio Ferrari at Univ.of Edinburgh Kristen Grauman at UT Au...转载 2018-07-18 12:17:13 · 1690 阅读 · 0 评论 -
Keras,TensorFlow for Python3.5的安装
我的电脑里是python3.5.2 Keras安装需要依赖TensorFlow的,所以第一步,先安装TensorFlow 网上都是推荐用Anaconda来进行安装,其实可以通过下载whl文件来进行安装,下面是清华大学镜像文件的地址 https://mirrors.tuna.tsinghua.edu.cn/tensorflow/ 通过下载对应版本的文件,使用pip install XXX.w...原创 2018-08-12 17:37:13 · 1603 阅读 · 0 评论 -
softmax做激活函数,crossentropy做损失函数时softmax的求导问题
首先crossentropy的定义为 softmax的直观定义(摘于李宏毅教授主页http://speech.ee.ntu.edu.tw/~tlkagk/courses.html) softmax它将多个神经元的输出,映射到(0,1)区间内,可以看成概率来理解,从而来进行多分类!以手写数字图像识别为例。softmax输出的是一个十维的vector,比如待识别的数字是2,则我们希望的是在...原创 2018-08-27 19:18:02 · 1642 阅读 · 0 评论 -
TypeError: softmax() got an unexpected keyword argument 'axis'
今天我装了tensorflow-gpu 1.4, keras 2.1.6发现运行keras模型的时候出现了以下的错误:、 Traceback (most recent call last): File "models.py", line 24, in <module> model = NIH() File "models.py", line 19, in NIH ...原创 2018-12-18 11:18:37 · 724 阅读 · 0 评论