上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 35 下一页

2017年9月25日

Matlab 实现神经网络实例

摘要: % Matlab实现简单BP神经网络 % http://blog.csdn.net/zjccoder/article/details/40713147 for i=1:20 %样本个数 xx(i)=2*pi*(i-1)/20; d(i)=0.5*(1+cos(xx(i))); end n=length(xx);%样本个... 阅读全文

posted @ 2017-09-25 13:24 Maddock 阅读(3623) 评论(1) 推荐(1)

2017年9月23日

Pycharm 建立工程,包含多个工程目录

摘要: 阅读全文

posted @ 2017-09-23 16:13 Maddock 阅读(718) 评论(0) 推荐(0)

2017年9月22日

python 神经网络实例

摘要: #http://python.jobbole.com/82758/ # import numpy as np # # # # sigmoid function # def nonlin(x, deriv=False): # if (deriv == True): # return x * (1 - x) # return 1 / (1 + np.exp(-x)... 阅读全文

posted @ 2017-09-22 21:59 Maddock 阅读(3755) 评论(0) 推荐(0)

TensorFlow基础笔记(2) minist分类学习

摘要: (1) 最简单的神经网络分类器 (2) 单层Softmax分类器与CNN多层分类器 参考 http://www.tensorfly.cn/tfdoc/tutorials/mnist_pros.html http://blog.csdn.net/mpk_no1/article/details/7285 阅读全文

posted @ 2017-09-22 09:00 Maddock 阅读(453) 评论(0) 推荐(0)

2017年9月20日

贝叶斯深度学习

摘要: 清华大学朱军博士:可扩展的贝叶斯方法与深度生成模型 Welcome to ZhuSuan http://www.cnblogs.com/jesse123/p/6907064.html 阅读全文

posted @ 2017-09-20 17:02 Maddock 阅读(226) 评论(0) 推荐(0)

NumPy的详细教程

摘要: NumPy的详细教程 转载 http://blog.csdn.net/chen_shiqiang/article/details/51868115 转载 http://blog.csdn.net/chen_shiqiang/article/details/51868115 先决条件 在阅读这个教程之 阅读全文

posted @ 2017-09-20 11:06 Maddock 阅读(10381) 评论(0) 推荐(0)

2017年9月19日

Tensorflow 梯度下降实例

摘要: # coding: utf-8 # #### 假设我们要最小化函数 $y=x^2$, 选择初始点 $x_0=5$ # #### 1. 学习率为1的时候,x在5和-5之间震荡。 # In[1]: import tensorflow as tf TRAINING_STEPS = 10 LEARNING_RATE = 1 x = tf.Variable(tf.constant(5, dt... 阅读全文

posted @ 2017-09-19 21:11 Maddock 阅读(928) 评论(0) 推荐(0)

机器学习中的损失函数总结

摘要: http://blog.csdn.net/yqljxr/article/details/52075053 阅读全文

posted @ 2017-09-19 14:04 Maddock 阅读(184) 评论(0) 推荐(0)

2017年9月18日

GAN网络

摘要: http://www.sohu.com/a/130252639_473283 高分辨率图像重建 https://zhuanlan.zhihu.com/p/25201511 生成式对抗网络GAN有哪些最新的发展,可以实际应用到哪些场景中? https://www.zhihu.com/question/ 阅读全文

posted @ 2017-09-18 20:22 Maddock 阅读(266) 评论(0) 推荐(0)

cuDNN升级

摘要: 出错现象ImportError: libcudnn.so.6: cannot open shared object file: No such file or directory查看当前版本为5.0 :/usr/local/cuda/lib64$ ls -llrwxrwxrwx 1 root roo 阅读全文

posted @ 2017-09-18 18:19 Maddock 阅读(1218) 评论(0) 推荐(0)

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 35 下一页

导航