上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 30 下一页
摘要: lists = [1,3,4,5,6,7,9,2]# 切片print lists[::-1]# 函数reverse 对数组进行操作lists.reverse() print lists# 函数reversed 返回一个迭代对象,需要list化print list(reversed(lists)) 阅读全文
posted @ 2020-07-25 18:24 黑暗尽头的超音速炬火 阅读(224) 评论(0) 推荐(0) 编辑
摘要: ROC AUC 所有评价指标总结 https://medium.com/@pkqiang49/%E4%B8%80%E6%96%87%E7%9C%8B%E6%87%82%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E6%8C%87%E6%A0%87-%E5%87%86%E 阅读全文
posted @ 2020-07-25 06:45 黑暗尽头的超音速炬火 阅读(196) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1wz4y197LU?from=search&seid=17139874139360178585 讲的很好 1、TPR FPR AUC: ROC围成的面积 ROC曲线: TPR FPR为横纵坐标的曲线包围的曲线 TPR(Y) & F 阅读全文
posted @ 2020-07-24 20:08 黑暗尽头的超音速炬火 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-22 07:30 黑暗尽头的超音速炬火 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 快速排序很好的图解 https://blog.csdn.net/qq_16635277/article/details/86572416 https://blog.csdn.net/hrn1216/article/details/51526362 void sort(int *a, int left 阅读全文
posted @ 2020-07-22 06:41 黑暗尽头的超音速炬火 阅读(109) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1sE411Y7cP?p=2 Transformer很好的讲解 https://www.bilibili.com/video/BV1Ca4y1t7DS?p=2 xgboost系列 阅读全文
posted @ 2020-07-18 09:49 黑暗尽头的超音速炬火 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1. 2.剪绳子 https://leetcode-cn.com/problems/jian-sheng-zi-lcof/submissions/ 解法一dp 阅读全文
posted @ 2020-07-12 05:32 黑暗尽头的超音速炬火 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 直接换python3的版本即可,用2会出现这种情况 阅读全文
posted @ 2020-07-10 11:21 黑暗尽头的超音速炬火 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 逐点互信息(PIM):用来衡量两个事物的相关性 定义如下: 在概率论中,我们知道,如果x跟y不相关,则 P(x,y) = P(x)P(y)。二者相关性越大,则 P(x,y) 就相比于 P(x)P(y) 越大。根据条件概率公式,你还可以写成 这也很好理解,在y出现的情况下x出现的条件概率 p(x|y) 阅读全文
posted @ 2020-07-10 08:41 黑暗尽头的超音速炬火 阅读(744) 评论(0) 推荐(0) 编辑
摘要: 1.''.join(text) 2.https://www.cnblogs.com/hyserendipity/p/11698606.html 阅读全文
posted @ 2020-07-05 18:21 黑暗尽头的超音速炬火 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 30 下一页