上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 53 下一页

AndrewNG Deep learning课程笔记 - RNN

摘要: The Unreasonable Effectiveness of Recurrent Neural Networks,http://karpathy.github.io/2015/05/21/rnn-effectiveness/ https://www.csdn.net/article/2015- 阅读全文
posted @ 2018-04-01 13:34 fxjwind 阅读(600) 评论(0) 推荐(0) 编辑

AndrewNG Deep learning课程笔记

摘要: 神经网络基础 Deep learning就是深层神经网络 神经网络的结构如下, 这是两层神经网络,输入层一般不算在内,分别是hidden layer和output layer hidden layer中的一个神经元的结构如下, 可以看出这里的神经元结构等同于一个逻辑回归单元,神经元都是由线性部分和非 阅读全文
posted @ 2018-03-30 16:48 fxjwind 阅读(1811) 评论(0) 推荐(0) 编辑

CS231n: Convolutional Neural Networks for Visual Recognition

摘要: https://zhuanlan.zhihu.com/p/28522637 https://zhuanlan.zhihu.com/p/21930884 mark 阅读全文
posted @ 2017-12-22 23:32 fxjwind 阅读(344) 评论(0) 推荐(0) 编辑

流计算技术实战 - CEP

摘要: CEP,Complex event processing Wiki定义 “Complex event processing, or CEP, is event processing that combines data from multiple sources[2] to infer events 阅读全文
posted @ 2017-12-22 11:46 fxjwind 阅读(16914) 评论(4) 推荐(0) 编辑

流计算技术实战 - 超大维表问题

摘要: 维度表,作为数据仓库里面的概念,是维度属性的集合,比如时间维、地点维; 但这里要讨论流计算中的维度表问题, 流计算中维表问题和数据仓库中有所不同,往往是因为通过agent采集到的数据比较有限,在做数据业务的时候,需要先实时的把这些维度信息给补全; 这个问题其实就是,主数据流和多个静态表或半静态表之间的join问题。 在flink中称为side input问题,https://cwiki.a... 阅读全文
posted @ 2017-11-02 11:25 fxjwind 阅读(3897) 评论(2) 推荐(0) 编辑

Flink - allowedLateness

摘要: WindowOperator processElement 如果clear只是简单的注册EventTimeTimer,那么在onEventTime的时候一定有clear的逻辑、 WindowOperator.onEventTime 果然,onEventTime的时候会判断,如果Timer的time等 阅读全文
posted @ 2017-10-31 11:54 fxjwind 阅读(1141) 评论(0) 推荐(0) 编辑

Flink – process watermark

摘要: WindowOperator.processElement 主要的工作,将当前的element的value加到对应的window中, windowState.setCurrentNamespace(window); windowState.add(element.getValue()); triggerContex... 阅读全文
posted @ 2017-10-12 17:08 fxjwind 阅读(1940) 评论(0) 推荐(0) 编辑

Flink - InputGate

摘要: 初始化 Task List consumedPartitions = tdd.getInputGates(); // Consumed intermediate result partitions this.inputGates = new SingleInputGate[consumedPartitions.size()]; this.inputGatesById = new Has... 阅读全文
posted @ 2017-10-09 15:35 fxjwind 阅读(1199) 评论(0) 推荐(0) 编辑

Flink - ResultPartition

摘要: 发送数据一般通过,collector.collect public interface Collector { /** * Emits a record. * * @param record The record to collect. */ void collect(T record); /** ... 阅读全文
posted @ 2017-10-09 15:34 fxjwind 阅读(1318) 评论(0) 推荐(0) 编辑

Flink -- Keyed State

摘要: /* {@code * DataStream stream = ...; * KeyedStream keyedStream = stream.keyBy("id"); * * keyedStream.map(new RichMapFunction>() { * * private ValueState count;... 阅读全文
posted @ 2017-09-28 16:52 fxjwind 阅读(1191) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 53 下一页