学习中遇到的问题
学习是一个 不断发现问题,解决问题的过程,记录问题可以使得在遇到同样问题时及时进行回顾,帮助快速解决问题。
Zkaisen
无论怎么样,努力的干下去,迷茫的未来应该会有惊喜在等着我们!
展开
-
Linux解决端口被占用的问题 bind: address already in use
Linux解决端口被占用的问题 bind: address already in use原创 2023-04-05 11:06:26 · 1558 阅读 · 1 评论 -
使用docker compose -d启动docker时出现错误 Service ‘web‘ failed to build
使用docker compose -d启动docker时出现错误 Service 'web' failed to build原创 2023-04-02 22:45:14 · 1917 阅读 · 1 评论 -
报错:ImportError: cannot import name ‘Document‘
解决运行的 python-docx 脚本时的报错:ImportError: cannot import name 'Document'原创 2023-03-21 14:14:05 · 2620 阅读 · 0 评论 -
C++中在类中重载输出运算符时遇到error: declaration of ‘class T‘的问题的解决
C++中在类中重载输出运算符时遇到error: declaration of 'class T'的问题的解决。原创 2022-12-16 22:15:00 · 738 阅读 · 0 评论 -
Qtcreator中文显示乱码问题终于解决
Qtcreator中文显示乱码问题终于解决,自己百度了一上午试了很多方法,不是百度尝试的心路历程,只是简单有效最快解决问题的一种方法的总结,希望可以帮助同样遇到此问题的朋友快速get解决方案 ^ v ^原创 2022-11-17 17:53:55 · 5476 阅读 · 1 评论 -
RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dimensio
使用transfroms方法过程报错:RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dimension 0原创 2022-04-21 08:52:45 · 9411 阅读 · 3 评论 -
卷积神经网络实战之LeNet5股票预测代码实现及遇到各种问题的解决方案
股票市场具有高收益与高风险并存的特性,预测股市走势一直被普通股民和投资机构所关注。股票市场是一个很复杂的动态系统,受多方面因素的影响。本案例获取了2018年沪市A股的6000多条数据进行建模分析,股票数据中,包括股市开盘价、最高价、最低价、收盘价以及成交量等股票历史数据,其中开盘价(open)、最高价(high)和最低价(low)是股民最为关注的3大属性,最后一列label表示窗口内股票的走势,上升编码为1下降编码为0。基本思想是从时间序列角度用过去的数据预测未来的走势。原创 2022-04-10 13:06:09 · 3981 阅读 · 5 评论 -
卷积神经网络之LeNet5手写识别及代码中一些常见问题的解决
LeNet5手写识别关于LeNet5结构,前面已经专门写过一篇文章做了详细分析,如果有小伙伴不太清楚具体结构或想要加深一下对LeNet5结构的理解,可参见https://blog.csdn.net/fencecat/article/details/123529738这里就不再赘述了,直接上代码!!!在这里插入代码片...原创 2022-04-09 22:19:42 · 2384 阅读 · 0 评论 -
ModuleNotFoundError: No module named ‘kerastuner‘
Jupyter中使用#KerasTuner库的Hyperband方法来做参数的优化报错ModuleNotFoundError: No module named 'kerastuner’from kerastuner.tuners import Hyperbandfrom kerastuner.engine.hyperparameters import Hyperparameters解决方法尝试:尝试1:pip install Kerastuner未解决有报错:尝试2:conda se原创 2022-03-25 07:24:57 · 2421 阅读 · 4 评论 -
Tensorflow报错:WARNING:tensorflow:Model was constructed with shape (None, 28, 28) for input Keras
WARNING:tensorflow:Model was constructed with shape (None, 28, 28) for input KerasTensor(type_spec=TensorSpec(shape=(None, 28, 28), dtype=tf.float32, name='flatten_input'), name='flatten_input', description="created by layer 'flatten_input'")原创 2022-03-22 16:02:16 · 6517 阅读 · 1 评论 -
OSError: [WinError 1455] 页面文件太小,无法完成操作 的问题
最近在学习MNIST手写数字识别,运行代码经常出现 [WinError 1455] 页面文件太小,无法完成操作 的问题原因:由于Python装在D盘,系统没有分配虚拟内存解决方法:1、尝试手动调整系统分配的虚拟内存右击此电脑-属性,进入设置,点击-高级系统设置弹出系统属性窗口,点击性能中的设置这里可以看到虚拟内存很小,所有驱动器总分页才149676MB,根本无法满足要求点击更改后进入虚拟内存窗口,然后按下图所示操作,根据pycharm训练集数据集大小,为D盘.原创 2022-02-11 21:27:30 · 1110 阅读 · 0 评论 -
OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.OMP: Hint
OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.OMP: Hint原创 2022-02-11 19:30:32 · 670 阅读 · 0 评论 -
解决命令行中使用python -m pip install --upgrade pip升级匹配不成功
解决命令行中使用python -m pip install --upgrade pip升级匹配不成功原创 2022-02-11 16:55:07 · 2249 阅读 · 0 评论