上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: https://zhuanlan.zhihu.com/p/58607298 阅读全文
posted @ 2020-11-14 13:50 ChevisZhang 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1. tf.constant(list/array) , tf.convert_to_tensor(list/array) 2. tf.ones(shape) tf.zeros(shape) tf.fill(shape,value) 3.tf.ones_like(tensor) tf.zeros_l 阅读全文
posted @ 2020-11-14 12:43 ChevisZhang 阅读(715) 评论(0) 推荐(0) 编辑
摘要: # 可以用 next(iter(list/dict)) 来查看l = [1,2,3,4] print(next(iter(l))) # 1 d = {5:'a',6:'b'} print(next(iter(d.items()))) # (5, 'a') 阅读全文
posted @ 2020-11-14 11:06 ChevisZhang 阅读(111) 评论(0) 推荐(0) 编辑
摘要: list不能直接做减法,需要先转化成set之后再做减法,再转化为list; tuple也是不能做减法的,所以需要 set(list) 阅读全文
posted @ 2020-11-11 18:56 ChevisZhang 阅读(360) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chjbbs/p/6705199.html 阅读全文
posted @ 2020-11-11 10:02 ChevisZhang 阅读(181) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010916338/article/details/77995093 阅读全文
posted @ 2020-11-10 11:45 ChevisZhang 阅读(62) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/b009fd3ac044 1、按ctrl+shift+a,弹出搜索框 2、输入registry,然后按回车 3、找到“ide.suppress.double.click.handler”,将后面的复选框勾上 4、勾选上复选框后直接点击close,然 阅读全文
posted @ 2020-11-10 09:06 ChevisZhang 阅读(352) 评论(0) 推荐(0) 编辑
摘要: https://www.youtube.com/watch?v=Dkifb6nytao 阅读全文
posted @ 2020-11-03 20:22 ChevisZhang 阅读(460) 评论(0) 推荐(0) 编辑
摘要: https://www.biaodianfu.com/lightgbm.html 阅读全文
posted @ 2020-10-31 22:20 ChevisZhang 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 见页面底部图1.2 inverted-index由两部分组成,一部分是单词dictionary 存在memory,一部分是posting list 存在disk https://nlp.stanford.edu/IR-book/html/htmledition/an-example-informat 阅读全文
posted @ 2020-10-27 18:24 ChevisZhang 阅读(124) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页