遇到的问题 在处理数据过程中,遇到需要取(n)个数的问题,而当样本量过大的时候,就不能简单的take(n),这类问题一般有两种情况: 有序取 TopN 无序取 N 先来讨论 无序取N 的情况: sample 函数 sample(boolean, fraction,seed) : 按比例抽取 返回一个 ...
分类:
其他好文 时间:
2019-01-16 15:00:06
阅读次数:
241
Now let’s take a peek at our indices: 现在让我们来看看我们的指数: And the response: Which simply means we have no indices yet in the cluster. 这仅仅意味着我们在集群中还没有索引。 Wh ...
分类:
其他好文 时间:
2019-01-15 15:47:12
阅读次数:
188
Django的锁和事务 锁 select_for_update(nowait=False, skip_locked=False) 返回一个锁住行直到事务结束的查询集,如果数据库支持,它将生成一个 SELECT ... FOR UPDATE 语句。 举个例子: 所有匹配的行将被锁定,直到事务结束。这意 ...
分类:
其他好文 时间:
2019-01-15 00:43:46
阅读次数:
587
People are always talking about 'the problem of youth'. If there is one--which I take leave to doubt -- then it is older people who create it, not the ...
分类:
其他好文 时间:
2019-01-14 14:34:58
阅读次数:
171
首先介绍一下Word2Vec Word2Vec:从原始语料中学习字词空间向量的预测模型。主要分为CBOW(Continue Bags of Words)连续词袋模型和Skip-Gram两种模式 CBOW:从原始语句(中国的首都是___)推测目标字词(北京)。Skip-Gram正好相反,从目标词反推原 ...
分类:
其他好文 时间:
2019-01-14 14:32:19
阅读次数:
191
"Skip the Class" Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 1637 Accepted Submission(s): 92 ...
分类:
其他好文 时间:
2019-01-13 01:56:12
阅读次数:
104
在ubuntu编译java程序时报错:type Iterator does not take parameters 源码如下: 报错原因:包里面有之前编写的一个Iterator类,编译时优先调用了包里的Iterator而没有调用java.util里面的Iterator ...
分类:
其他好文 时间:
2019-01-10 19:28:41
阅读次数:
142
BlockingQueue 实现之 SynchronousQueue SynchronousQueue是一个没有数据缓冲的BlockingQueue,生产者线程对其的插入操作put必须等待消费者的移除操作take,反过来也一样。 不像ArrayBlockingQueue或LinkedListBloc ...
分类:
编程语言 时间:
2019-01-09 11:18:43
阅读次数:
244
为了方便 所以 该测试类 每个步骤分开写的,连着写: 结果: 指定跳过多少个数据 类似 于 for循环里面的break 例如: 结果: 取一个集合的前几条数据 结果: 结果: 6 .解决一个字符串数组 返回单一的字符串使用flatMap: 结果: 关于 map 和 flatMap的区别,可以了解一下 ...
分类:
编程语言 时间:
2019-01-08 15:38:23
阅读次数:
198
This isn’t anything new however has been a long time in writing as I’ve been playing around with things! It is more my take on how to do these types o ...
分类:
其他好文 时间:
2019-01-06 18:55:27
阅读次数:
240