python中 append() 和 extend() 的用法
参考链接:https://blog.csdn.net/qq_41800366/article/details/86367465?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.channel_param
xrange和range的区别
参考链接:https://blog.csdn.net/weixin_44601149/article/details/91492818
defaultdict 和 Counter
Counter 其实就是一个计数器,它本身就应用于统计给定的变量对象的次数,因此,我们还可以获取出现次数最多的单词。
既然 Counter 这么好用,是不是只需要 Counter 就可以了?答案当然是否定的,因为 Counter 的问题就是其数值必须是整数,本身就是用于统计数量,因此如果我们需要的数值是字符串,列表或者元组,那么就不能继续用它。
这个时候,defaultdict 就派上用场了。它相比于 dict 的最大区别就是可以设置默认的数值,即便 key 不存在。
参考链接:https://blog.csdn.net/lc013/article/details/91813812
Python Tuple(元组) tuple()方法
AttributeError: ‘collections.OrderedDict’ object has no attribute 'iteritems’
参考链接:https://blog.csdn.net/guangmingngm/article/details/80943063
AttributeError: ‘dict’ object has no attribute 'iteritems’问题
参考链接:https://blog.csdn.net/qq_18649781/article/details/89791017?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param
sklearn.metrics中的评估方法(accuracy_score,recall_score,roc_curve,roc_auc_score,confusion_matrix)
参考链接:https://blog.csdn.net/hlang8160/article/details/78040311
f1_score —— 类别不平衡问题的重要metrics
参考链接:https://blog.csdn.net/baidu_38945893/article/details/82141975
参考链接:https://keras-cn.readthedocs.io/en/latest/legacy/layers/normalization_layer/