随笔分类 -  [39] 模式识别/机器学习/优化

摘要:《深度学习入门基于python的理论与实现》 pdf免费分享,一起学习一起进步:https://github.com/MemorialCheng/deep-learning-from-scratch 《深度学习入门基于python的理论与实现》,含pdf+源代码 《深度学习入门基于python的理论 阅读全文
posted @ 2021-02-20 10:22 emanlee 阅读(444) 评论(0) 推荐(0)
摘要:视频讲解: https://www.bilibili.com/video/BV1L4411q785?p=3&spm_id_from=pageDriver https://www.bilibili.com/video/BV1C7411k7Wg?from=search&seid=173938127108 阅读全文
posted @ 2021-02-19 11:27 emanlee 阅读(187) 评论(0) 推荐(0)
摘要:# Pythonm = Prophet(holidays=holidays)forecast = m.fit(df).predict(future)# Pythonm = Prophet(holidays=holidays)m.add_country_holidays(country_name='U 阅读全文
posted @ 2021-02-18 21:46 emanlee 阅读(803) 评论(0) 推荐(0)
摘要:先查看自己的linux上显卡型号: # lspci | grep -i nvidia04:00.0 VGA compatible controller: NVIDIA Corporation GP102 [GeForce GTX 1080 Ti] (rev a1)04:00.1 Audio devi 阅读全文
posted @ 2021-02-15 20:16 emanlee 阅读(535) 评论(0) 推荐(0)
摘要:The number of epochs is not that significant. More important is the the validation and training error. As long as it keeps dropping training should co 阅读全文
posted @ 2021-02-15 09:48 emanlee 阅读(206) 评论(0) 推荐(0)
摘要:nvidia-smi Failed to initialize NVML: Driver/library version mismatch 原因:NVIDIA 内核驱动版本与系统驱动不一致, # sudo rmmod nvidiarmmod: ERROR: Module nvidia is in u 阅读全文
posted @ 2021-02-14 23:08 emanlee 阅读(1185) 评论(0) 推荐(0)
摘要:GOOD POST https://towardsdatascience.com/epoch-vs-iterations-vs-batch-size-4dfb9c7ce9c9 Epoch 英 /ˈiːpɒk/ 美 /ˈepək/ n. 时代,纪元;值得纪念的事件(或日期);世(地质年代,纪下分世); 阅读全文
posted @ 2021-02-14 22:26 emanlee 阅读(8931) 评论(0) 推荐(0)
摘要:安装好了Anaconda3—后,运行开始菜单—>Anaconda3—>Anaconda Prompt ## CPUpip3 install tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple/## GPUpip3 install tensor 阅读全文
posted @ 2021-02-13 13:21 emanlee 阅读(126) 评论(0) 推荐(0)
摘要:Support Vector Regression(SVR) 资料[机器学习]回归--Support Vector Regression(SVR)https://blog.csdn.net/zwqjoy/article/details/80251707 python 机器学习之支持向量机非线性回归S 阅读全文
posted @ 2021-02-07 21:14 emanlee 阅读(1199) 评论(0) 推荐(0)
摘要:参考资料 深度学习之路(一):用LSTM网络做时间序列数据预测 https://www.jianshu.com/p/6b874e49b906 关于LSTM的输入和训练过程的理解 https://www.cnblogs.com/USTC-ZCC/p/11171209.html lstm 训练集的设置 阅读全文
posted @ 2021-02-02 14:54 emanlee 阅读(3450) 评论(0) 推荐(0)
摘要:https://zh.gluon.ai/chapter_recurrent-neural-networks/lang-model.html 翻译自: https://stackabuse.com/seaborn-library-for-data-visualization-in-python-par 阅读全文
posted @ 2021-01-27 14:34 emanlee 阅读(9680) 评论(0) 推荐(0)
摘要:Hard voting is where a model is selected from an ensemble to make the final prediction by a simple majority vote for accuracy. Soft Voting can only be 阅读全文
posted @ 2020-08-09 23:00 emanlee 阅读(919) 评论(0) 推荐(0)
摘要:收藏: https://blog.csdn.net/zengNLP/article/details/101095418 http://www.360doc.com/content/18/0501/15/48415174_750234278.shtml 阅读全文
posted @ 2020-03-28 21:55 emanlee 阅读(694) 评论(0) 推荐(0)
摘要:神经网络在发展过程中,经历了3次起伏,这很重要的原因在于神经网络的优缺点在不同时代得以体现。在理论上讲,只包含单层隐藏层神经网络,可以拟合任何函数,然后这在实际情况中是不常用的。往往采用含多层隐藏层的神经网络来对数据进行拟合。一、缺点及有效的措施1、在早期,由于BP算法还没有发明,并且当时的计算能力 阅读全文
posted @ 2020-03-03 19:37 emanlee 阅读(8572) 评论(0) 推荐(0)
摘要:连续 RBM 连续 RBM 是受限玻尔兹曼机的一种形式,它通过不同类型的对比散度采样接受连续的输入(也就是比整数切割得更细的数字)。这允许 CRBM 处理图像像素或字数向量这类被归一化到 0 到 1 之间的小数的向量。 应该注意,深度学习网络的每一层都需要四个元素:输入、系数、偏置项以及变换(激活算 阅读全文
posted @ 2020-03-03 18:49 emanlee 阅读(636) 评论(1) 推荐(0)
摘要:多层受限玻尔兹曼机 一旦 RBM 学到了与第一隐藏层激活值有关的输入数据的结构,那么数据就会沿着网络向下传递一层。你的第一个隐藏层就成为了新的可见层或输入层。这一层的激活值会和第二个隐藏层的权重相乘,以产生另一组的激活。 这种通过特征分组创建激活值集合序列,并对特征组进行分组的过程是特征层次结构的基 阅读全文
posted @ 2020-03-03 18:27 emanlee 阅读(317) 评论(0) 推荐(0)
摘要:收藏、推荐好文: https://www.ituring.com.cn/book/tupubarticle/21427 第 1 章 深度学习介绍 https://blog.csdn.net/u010159842/article/details/78781347 https://www.cnblogs 阅读全文
posted @ 2020-03-03 11:10 emanlee 阅读(1281) 评论(0) 推荐(0)
摘要:从 http://yann.lecun.com/exdb/mnist/ 可以下载原始的文件。 train-images-idx3-ubyte.gz: training set images (9912422 bytes) train-labels-idx1-ubyte.gz: training se 阅读全文
posted @ 2020-03-01 18:56 emanlee 阅读(4221) 评论(0) 推荐(0)
摘要:### https://www.cnblogs.com/zyly/p/9055616.html ### MINST数据 http://yann.lecun.com/exdb/mnist/ #### ### MINST数据 https://pan.baidu.com/s/1uraPqWIKchHdYn 阅读全文
posted @ 2020-03-01 16:25 emanlee 阅读(520) 评论(0) 推荐(0)
摘要:https://www.jianshu.com/p/2e7ffe06fcdd?tdsourcetag=s_pcqq_aiomsg https://github.com/echen/restricted-boltzmann-machines/blob/master/rbm.py https://git 阅读全文
posted @ 2020-03-01 12:29 emanlee 阅读(641) 评论(0) 推荐(0)