上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页
摘要: go中的切片有两个特性: 底层的数据结构是数组 包括从切片和数组派生出来的切片都是公用一个底层数组的 当往切片append的元素超过容量时,即len(s) 阅读全文
posted @ 2019-03-30 00:55 yihailin 阅读(240) 评论(0) 推荐(0)
摘要: "How to Gracefully Close Channels " ,这篇博客讲了如何优雅的关闭channel的技巧,好好研读,收获良多。 众所周知,在golang中,关闭或者向已关闭的channel发送数据都会引发panic。 谨遵优雅关闭channel的原则 不要在接受一端关闭channel 阅读全文
posted @ 2019-03-28 00:55 yihailin 阅读(1204) 评论(0) 推荐(0)
摘要: Keras api 提前知道: "BatchNormalization" , 用来加快每次迭代中的训练速度 Normalize the activations of the previous layer at each batch, i.e. applies a transformation tha 阅读全文
posted @ 2019-03-24 14:28 yihailin 阅读(8021) 评论(0) 推荐(0)
摘要: 之前都没有用过ps去切图,然后做成网页,这次有机会体验了一次。其实重点工作在ps的使用上。 工具使用adobe cs6,vscode即可。设计师直接给了用ps设计的psd工程。用ps软件打开后,用里面的裁剪工具,先人工将整张网页裁剪,然后保存成html网页格式。 ps软件生成的网页是以table为骨 阅读全文
posted @ 2019-03-24 12:44 yihailin 阅读(177) 评论(0) 推荐(0)
摘要: [Recurrent Neural Networks Tutorial, Part 1 – Introduction to RNNs ](http://www.wildml.com/2015/09/recurrent neural networks tutorial part 1 introduct 阅读全文
posted @ 2019-03-23 22:22 yihailin 阅读(132) 评论(0) 推荐(0)
摘要: "Keras中文文档" "github Keras example" 官方博客 "A ten minute introduction to sequence to sequence learning in Keras" 其他链接: [Keras之文本分类实现 ](https://zhuanlan.z 阅读全文
posted @ 2019-03-23 16:31 yihailin 阅读(306) 评论(0) 推荐(0)
摘要: CTC,Connectionist temporal classification。从字面上理解它是用来解决时序类数据的分类问题。语音识别端到端解决方案中应用的技术。主要是解决以下两个问题 解决语音输入和标签的对齐问题。对于一段语音输入,将其转化为声学频谱图,传统的声学模型需要对其频谱图上的每一帧对 阅读全文
posted @ 2019-03-23 15:48 yihailin 阅读(1496) 评论(0) 推荐(0)
摘要: elementui框架自带icon在开发大型前端应用时显得捉襟见肘。淘宝开源的 "iconfront" 的图标库上有很多优秀的icon图标。elementui支持整合iconfront到应用中,步骤如下: 1. 首先需要在iconfront注册登陆,新建项目,然后把心仪的icon添加到项目中。 ) 阅读全文
posted @ 2019-03-21 23:56 yihailin 阅读(4236) 评论(0) 推荐(0)
摘要: Go语言内置encoding/json包支持JSON序列化和反序列化,有如下转换规则 基本的数据结构映射关系 当有指针出现在数据结构中时,会转换成指针所指的值。 chanel,complex和函数不能转化为有效的JSON文本 JSON序列化时,需要定义一个struct结构,支持json tag来扩展 阅读全文
posted @ 2019-03-20 00:50 yihailin 阅读(1045) 评论(0) 推荐(0)
摘要: "预先在django中配置好celery" ,接下来着手配置下 "定时任务" 。 时区修改为本地时区 如果使用了django celery beat持久化到数据库,那么需要手动执行更新命令 使用periodic_task启用定时任务, "这里可以看具体的crontab参数" 然后使用celery A 阅读全文
posted @ 2019-03-17 16:00 yihailin 阅读(809) 评论(1) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页