- 博客(16)
- 收藏
- 关注
原创 Mamba相关环境安装通用教程(causal_conv1d及mamba-ssm)
mamba安装相关问题通用教程,causal_conv1d及mamba-ssm安装
2024-08-13 10:17:16 1501
原创 TabError: Inconsistent use of tabs and spaces in indentation
原因是 代码中有tab和空格混合使用的情况,只是你看不到。将错误的代码行删掉缩进,重新用TAB缩进。
2023-04-10 22:01:26 261
原创 pycharm报错:Process finished with exit code -1073741819 (0xC0000005)
pycharm报错:Process finished with exit code -1073741819 (0xC0000005)代码正常运行,但图片不显示。
2023-04-10 21:59:30 246
原创 Python 基于csv 读取文本文件提示:‘gbk‘ codec can‘t decode byte 0xbf in position 2: illegal multibyte sequence
Python 基于csv 读取文本文件提示:‘gbk‘ codec can‘t decode byte 0xbf in position 2: illegal multibyte sequence。
2023-04-10 21:54:59 5421
原创 no matching distribution found for torchvision==0.11.0+cu111
通过查找torch、torchvision和torchaudio的版本对应表,根据自己的cuda和python重新安装。中发现torchvision-0.11.0+cu111没有在windows下的版本,只有linux下的。如果提示readtimeout超时,则通过设置超时参数,加长时间。用windows复现别人在Linux上的工作时出错。【cuda版本查看:cmd输入nvidia-smi】显示torchvision没有匹配的版本。
2023-03-25 16:04:04 448 1
原创 [文献翻译]Video-based AI for beat-to-beat assessment of cardiac function
【文献翻译】Video-based AI for beat-to-beat assessment of cardiac function摘要引言基于视频的深度学习模型模型性能评估推广到不同的医院讨论摘要准确的心功能评估对于1心血管疾病的诊断、2心脏毒性的筛查和3危重患者的临床管理决策至关重要。然而,人类对心脏功能的评估只关注有限的心脏周期采样,尽管经过多年的训练,但观察者之间的差异还是相当大的。在这里,为了克服这一挑战,我们提出了一种基于视频的深度学习算法EchoNet - Dynamic,它在分割左心
2021-12-08 23:30:36 4777
原创 attributeerror:module ‘torch.cuda’ has no attribute ‘reset_peak_memory_stats’
报错信息:attributeerror:module ‘torch.cuda’ has no attribute ‘reset_peak_memory_stats’应该又是版本不适配的问题。因为用的是RTX3090显卡,只支持CUDA11.0版本及以上。解决方法:在终端中输入以下命令重新安装pytorchPip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pyto
2021-11-25 19:48:38 2026
原创 your cuda software stack is old.we fall back to the NIVIDIA driver for some compilation. Update your
报错信息:your cuda software stack is old.we fall back to the NIVIDIA driver for some compilation. Update your CUDA version to get the best performance. The ptxas error was: ptxas fatal: Value ‘sm_86’ is not defined for option ‘gpu-name’这是警告不是报错。这个warning的意思是:
2021-11-25 19:43:13 1825 1
原创 AttibuteError: module ‘tensorflow’ has no attribute ‘get_default_graph’.
在终端中输入 python train.py 运行 train.py 文件。出现报错:AttibuteError: module ‘tensorflow’ has no attribute ‘get_default_graph’.该报错的意思是:tensorflow模块没有get_default_graph属性。这是由于Keras API(https://keras.io/)有多个实现,包括原始和参考实现(https://github.com/keras-team/keras),还有各种其他实现,包括
2021-11-25 19:41:06 2070
原创 ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory
在终端中运行深度学习代码时出现报错信息:ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory环境:显卡RTX3090 + python3.6.13 + tensorflow-gpu1.13.2通常是由于版本不匹配造成的。因为显卡为RTX3090,只支持CUDA11.0及以上的版本。因此从下图中发现 tensorflow-gpu在2.4.0以上的版本满足条件。图片来源:在 Wi
2021-11-25 19:29:34 311
原创 python: can’t open file ‘train.py’ : [Errno 2] No such file or directory
在终端中输入python train.py 运行训练的python文件,出现报错:python: can’t open file ‘train.py’ : [Errno 2] No such file or directory其实是一个特别简单的错误。方法有:通过cd移动到包含该文件的上一级文件,路径中间用**/**隔开。选中包含该文件的上一级文件,右键在终端中打开,并激活进入所需的虚拟环境。再输入python train.py即可正常运行该文件。...
2021-11-25 19:00:32 12736 5
原创 conda新建虚拟环境
如果在一台电脑上,想开发多个不同的项目,可能需要用到同一个包的不同版本。如果在同一个目录下安装或者更新,新版本会覆盖以前的旧版本,其他的项目就无法运行了。解决方案:虚拟环境作用:可以搭建独立的python 运行环境,使得单个项目的运行环境与其他项目互不影响。创建环境在Anaconda中创建一个名为my_env的,指定python版本为3.6的虚拟环境conda create --name my_env python=3.6或conda create -n my_env python=3.
2021-11-25 17:15:59 882
原创 ValueError: could not broadcast input array from shape(708,1016,3) into shape(1016,708,3)
在终端中打开model文件夹。输入sh 1.sh,运行1.sh文件。出现报错信息:ValueError: could not broadcast input array from shape(708,1016,3) into shape(1016,708,3)感觉像是把图片的宽高输入弄反了。找到原始训练的数据集,发现视频图片的大小确实是1016708像素的。归一化后应为112112。但发现此时有几个视频的大小跟其他视频不一样,可能是当时复制数据集的时候产生了一些错误。把数据集替换成原始的数据集,则可以
2021-11-25 09:41:30 557
原创 报错:Error occurred when finallizing generatorDataset iterator.
在终端中输入python train.py,在anaconda创建的虚拟环境中运行深度学习代码时,出现报错信息:Error occurred when finallizing generatorDataset iterator: Failed precondition: Python interpreter state is not initialized.The process may be terminated.在该行报错的上方显示:Epoch 00065: early stopping.早停其
2021-11-25 09:35:28 1203 1
原创 超级基础的latex论文排版学习笔记
超级基础的latex论文排版学习笔记基础使用公式行内公式行间公式不带编号行间公式带编号插图插图带编号插图不带编号如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入基础使用可在 \begin{} 和 \end{}之间加入\label{eq:1} %给公式取名,便于引用
2021-02-17 11:44:30 1541
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人