
Bug小能手
文章平均质量分 66
sjx_alo
人工智能博士在读,目前在做脑机接口研究。已发表多项发明专利(4项),包括国际期刊SCI内十多篇论文,多个数学建模国家级证书。目前也是国内知名博主,截止2022年,AI领域粉丝超1万,文章阅读量超20万。
合作请私信!!!~~~
展开
-
Bug小能手系列(python)_15: ImportError: DLL load failed while importing _path: 找不到指定的模块
根据报错信息可知,其实这里调用的一直是`C:\Users\14541\AppData\Roaming\Python`下的`Python`,而我操作的一直是`conda下的env环境`。 电脑中`存在太多环境容易出现调用`的问题,当我把`Roaming`下的`Python`删除后,编译器就自动去找了`conda`下的`python`环境了,而我conda下的环境是没问题的,也就整体没问题了!!!!原创 2024-03-05 14:39:18 · 2680 阅读 · 0 评论 -
Bug小能手系列(python)_14: AttributeError: module ‘backend_interagg‘ has no attribute ‘FigureCanvas‘
总的而言,感觉出现该错误主要是因为Matplotlib的版本的问题,可以通过设置渲染器或更换Matplotlib版本解决。如果大家有什么解决方案的话可以评论留言,这边会根据最新的内容进行更新!!!原创 2024-03-05 11:54:29 · 1496 阅读 · 0 评论 -
Bug小能手系列(python)_11: 使用mne库读取.set文件报错 The number of trials is 140. It must be 1 for raw files.
使用mne库读取.set文件报错 TypeError: The number of trials is 140. It must be 1 for raw files. Please use `mne.io.read_epochs_eeglab` if the .set file contains epochs.原创 2023-09-13 09:49:36 · 601 阅读 · 6 评论 -
Bug小能手系列(python)_13: RuntimeError: CUDA error: device-side assert triggered CUDA kernel errors might
RuntimeError: CUDA error: device-side assert triggeredCUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. For debugging consider passing CUDA_LAUNCH_BLOCKING=1. 报错解决方案原创 2023-10-30 15:16:41 · 9759 阅读 · 3 评论 -
Bug小能手系列(python)_12: 使用mne库读取.set文件报错 TypeError: ‘int‘ object is not iterable
使用mne库读取.set文件报错 TypeError: ‘int‘ object is not iterable 推荐解决方案原创 2023-10-18 09:34:08 · 223 阅读 · 0 评论 -
Bug小能手系列(python)_10: 使用Braindecode库报错 ‘EEGClassifier‘ object has no attribute ‘classes_inferred_‘
使用Braindecode库包运行代码时报错:AttributeError: 'EEGClassifier' object has no attribute 'classes_inferred_'原创 2023-07-11 09:13:31 · 594 阅读 · 0 评论 -
Bug小能手系列(python)_9: 使用sklearn库报错 module ‘numpy‘ has no attribute ‘int‘
对于自己使用代码`dtype=np.int`报错的情况,建议直接修改为`np.int_`即可解决,也不用向下看了!!!!下文主要是针对`sklearn`库包中存在大量np.int报错的情况!!!原创 2023-07-06 18:43:44 · 17574 阅读 · 9 评论 -
Bug小能手系列(python)_8: 使用mne库读取gdf文件报错 Cannot cast ufunc ‘clip‘ output
在加载数据集时,当使用mne库的io的函数时出错。该代码只是按照正常途径读取GDF文件。filename = "../../dataset/BCICIV_2a_gdf/A02E.gdf" #文件位置根据实际情况修改 raw = mne . io . read_raw_gdf(filename) print(raw . info) print(raw . ch_names)考虑到在网上找了众多关于mne库读取gdf文件的文章均没有出现该问题,同时网上找到的关于该报错信息的内容也均未出现上文的情况。原创 2023-06-27 16:12:41 · 1793 阅读 · 4 评论 -
Bug小能手系列(python)_7: BertTokenizer报错 Connection reset by peer
当使用`transformers`库的`BertTokenizer`或`BertModel`的`from_pretrained()`函数时出错。总的而言,预训练模型下载下来还是简单的。但是网上的相关教程不是很清晰,所以根据自己的经验来总结这篇文章,希望大家会喜欢。如果有什么疑问欢迎在评论区提出,对于共性问题可能会后续添加到文章介绍中。原创 2023-06-12 23:02:01 · 6437 阅读 · 2 评论 -
Bug小能手系列(python)_6:‘Upsample‘ object has no attribute ‘recompute_scale_factor‘
YOLO v5 运行过程中出现'Upsample' object has no attribute 'recompute_scale_factor'错误的正确解决方法!!!原创 2023-05-11 21:17:05 · 2795 阅读 · 1 评论 -
Bug小能手系列(python)_5:ValueError: Fan in and fan out can not be computed for tensor with fewer than 2
Fan in and fan out can not be computed for tensor with fewer than 2原创 2023-04-19 12:42:49 · 392 阅读 · 0 评论 -
Bug小能手系列(python)_2:Use Resampling.BICUBIC instead
Use Resampling.BICUBIC instead原创 2023-04-09 15:45:00 · 300 阅读 · 0 评论 -
Bug小能手系列(python)_4:ModuleNotFoundError: No module named ‘torchtext.legacy‘
No module named ‘torchtext.legacy‘原创 2023-04-17 22:23:48 · 1946 阅读 · 0 评论 -
Bug小能手系列(python)_3:Please use HDF reader for matlab v7.3 files
Please use HDF reader for matlab v7.3 files原创 2023-04-17 21:25:56 · 1250 阅读 · 0 评论 -
Bug小能手系列(python)_1:Non-UTF-8 code starting with ‘\xe5‘
Non-UTF-8 code starting with '\xe5'原创 2023-04-07 21:18:08 · 405 阅读 · 0 评论