一、获奖感想 很高兴能在期末争取到小黄衫,虽然这个学期刚开始并没有取得好的名次,但通过后面的努力赶了上来。很感谢老师能给与我这件小黄衫,我也会不辜负他人的期望,继续加油学下去,来佐证衣服上learning by doing那意味深长的标语。 二、学习心得 学习是一个持之以恒的过程 课程刚开始,我还不 ...
分类:
其他好文 时间:
2020-01-03 21:33:03
阅读次数:
127
? 机器学习(machine learning)已然成为无数重要应用的基石——如今,在网络搜索、垃圾邮件检测、语音识别以及产品推荐等领域,你都能够发现它的身影。如果你或你的团队正在研发一款机器学习相关应用,并期待取得较快进展,那么这本书将会是你的得力助手。 案例:建立猫咪图片初创公司 想象一下,你正 ...
分类:
其他好文 时间:
2020-01-03 14:13:06
阅读次数:
105
import tensorflow as tf from tensorflow import keras from tensorflow.keras import datasets import os # do not print irrelevant information # os.enviro... ...
分类:
其他好文 时间:
2020-01-02 22:23:24
阅读次数:
111
TensorFlow is a deep learning framework that provides an easy interface to a variety of functionalities, required to perform state of the art deep lea ...
分类:
其他好文 时间:
2020-01-02 14:14:06
阅读次数:
108
一、Evaluating a Learning Algorithm 训练后测试时如果发现模型表现很差,可以有很多种方法去更改: 1. 用更多的训练样本; 2. 减少/增加特征数目; 3. 尝试多项式特征; 4. 增大/减小正则化参数$\lambda$。 那么该怎么去选择采用哪种方式呢? 一般将70% ...
分类:
移动开发 时间:
2020-01-01 23:38:48
阅读次数:
92
一、Cost Function and Backpropagation 神经网络的损失函数: $$J(\Theta) = \frac{1}{m} \sum_{i=1}^m \sum_{k=1}^K \left[y^{(i)}_k \log ((h_\Theta (x^{(i)}))_k) + (1 ...
分类:
Web程序 时间:
2020-01-01 23:28:50
阅读次数:
101
官方示例链接 https://mxnet.apache.org/api/python/docs/tutorials/performance/backend/tensorrt/tensorrt.html Optimizing Deep Learning Computation Graphs with ...
分类:
Web程序 时间:
2020-01-01 20:50:28
阅读次数:
269
optimizerG = optim.Adam(netG.parameters(), lr=opt.lr_g, betas=(opt.beta1, 0.999)) torch.optim.lr_scheduler.MultiStepLR(optimizer=optimizerG,milestones ...
分类:
其他好文 时间:
2019-12-31 23:32:30
阅读次数:
1476
论文链接: "Double DQN" "Double Q learning" 在传统强化学习领域里面,学者们已经认识到了Q learning 存在overestimate的问题。overestimation 会损害performance,因为overestimate很可能是不均匀的.造成overes ...
分类:
其他好文 时间:
2019-12-31 14:13:24
阅读次数:
135
这篇文章就是DQN,DRL领域非常重要的一篇文章,也是David Silver大神的工作。文章本身没有什么难度。 文章说了RL和DL 的两个不同之处 DL 尤其是supervised learning 需要大量的labelled training data, 强化学习只有一个scalar Rewar ...
分类:
其他好文 时间:
2019-12-31 01:22:46
阅读次数:
80