Python运行出现DeprecationWarning的问题及解决
作者:旺?崽 时间:2022-01-14 05:26:23
Python运行出现DeprecationWarning
今天运行 py 时出现下面的问题:
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working
是这个语句出现的问题:
from collections import Iterable
好像是 py 版本更新以后包发生了变化,只需要改一下包名就行:
collections->collections.abc
Python版本问题出现DeprecationWarning
sklearn.cross_validation.cross_val_score()
例如:
from sklearn import cross_validation
D:\Anaconda3\lib\site-packages\sklearn\cross_validation.py:41: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning)
改为
from sklearn.model_selection import cross_val_score
来源:https://zaizai.blog.csdn.net/article/details/107643924
标签:Python,DeprecationWarning
0
投稿
猜你喜欢
vue-Split实现面板分割
2024-04-27 15:49:43
在Python中使用M2Crypto模块实现AES加密的教程
2022-09-29 17:43:59
Python中支持向量机SVM的使用方法详解
2021-02-08 00:41:01
Python设计模式结构型享元模式
2023-12-19 13:57:40
python编程使用PyQt创建UE蓝图
2023-11-20 14:24:58
对“关于购物车的想法”的一些回复
2009-03-10 18:15:00
详解Python在使用JSON时需要注意的编码问题
2022-08-03 22:06:36
Python实现统计文本中的字符数量
2021-01-28 00:27:04
简单触发器的使用 献给SQL初学者
2011-09-30 11:27:49
五个基于JS实现的炫酷登录页面
2024-04-17 09:43:25
Instr函数与InstrRev函数的区别
2008-07-07 16:53:00
vue使用file-saver本地文件导出功能
2023-07-02 16:59:26
Python SVM(支持向量机)实现方法完整示例
2021-06-09 14:20:34
低版本Druid连接池+MySQL驱动8.0导致线程阻塞、性能受限
2024-01-20 05:11:49
在tensorflow中实现屏蔽输出的log信息
2023-02-27 17:41:21
浅谈Python接口对json串的处理方法
2022-07-30 13:03:49
JS代码格式化和语法着色
2013-07-14 19:47:45
vue项目中的数据变化被watch监听并处理
2024-04-27 16:11:53
Python+Turtle绘制航海王草帽路飞详解
2023-12-31 18:08:09
SQLServer 循环批处理
2024-01-20 02:39:46