上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 107 下一页
摘要: 转自:https://blog.csdn.net/abclhq2005/article/details/78683656 作者:abclhq2005 1.概念介绍 所谓dropout,就是指网络中每个单元在每次有数据流入时以一定的概率(keep prob)正常工作,否则输出0值。这是是一种有效的正则 阅读全文
posted @ 2019-03-25 15:36 lypbendlf 阅读(2636) 评论(0) 推荐(0) 编辑
摘要: 1.为什么正则化可以减少过拟合? //答:可以让模型参数变小,减小模型的方差。 在损失函数中加入正则项,在正则化时,如果参数lamda设置得足够大,那么就相当于权重系数W接近于0 ,就会减少很多隐藏单元的影响,降低模型的复杂度,将模型从过拟合到欠拟合,当然,其中有一个lamda是使模型处于最优中间状 阅读全文
posted @ 2019-03-25 11:51 lypbendlf 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/aliceyangxi1987/article/details/77094970 https://blog.csdn.net/jojozhangju/article/details/51982254 1.为什么用双向 LSTM? 单向的 RNN,是根 阅读全文
posted @ 2019-03-25 08:55 lypbendlf 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/capecape/article/details/78390246 TensorFlow和theano以及Keras都是深度学习框架,TensorFlow和theano比较灵活,也比较难学,它们其实就是一个微分器 Keras其实就是TensorFlo 阅读全文
posted @ 2019-03-24 20:12 lypbendlf 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/sinat_26917383/article/details/55682996 阅读全文
posted @ 2019-03-24 20:03 lypbendlf 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 转自:https://cloud.tencent.com/developer/article/1091815 1. 分词(Word Cut) 英文:单词组成句子,单词之间由空格隔开 中文:字、词、句、段、篇 词:有意义的字组合 分词:将不同的词分隔开,将句子分解为词和标点符号 英文分词:根据空格 中 阅读全文
posted @ 2019-03-24 15:32 lypbendlf 阅读(1066) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.coderjie.com/blog/43b3601e0a2411e7841d00163e0c0e36 1.块在内存中以树的形式存储,分好块的文本在文件中用IOB标记存储: I(inside,内部),O(outside,外部),B(begn,开始)。 如果一个单词被标记为B 阅读全文
posted @ 2019-03-24 15:06 lypbendlf 阅读(749) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/yyb19951015/article/details/79740869 //这个博客讲的挺不错的。 http://www.newlifeclan.com/ai/archives/170 1.实现中的问题 基本的LSTM细胞单元在TensorFlow 阅读全文
posted @ 2019-03-23 21:10 lypbendlf 阅读(6042) 评论(0) 推荐(0) 编辑
摘要: 转自:深度学习中 number of training epochs 中的 epoch到底指什么? - 知乎 https://www.zhihu.com/question/43673341 1. (1)iteration:表示1次迭代(也叫training step),每次迭代更新1次网络结构的参数 阅读全文
posted @ 2019-03-23 19:21 lypbendlf 阅读(688) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/gaofighting/p/9625868.html //里边有两个很好理解的例子。 tf.nn.embedding_lookup(params, ids):params可以是张量也可以是数组等,id就是对应的索引,其他的参数不介绍。 就是上图中 阅读全文
posted @ 2019-03-21 20:39 lypbendlf 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 107 下一页