Bugs
文章平均质量分 58
布拉格沃兹基硕德
日拱一卒无有尽,功不唐捐终入海。
展开
-
nvm 无法切换node版本 始终是system版本【已解决】
解决nvm 无法切换版本 始终是system版本的问题原创 2023-06-26 00:29:52 · 2041 阅读 · 0 评论 -
【已解决】this version of the Java Runtime only recognizes class file versions up to 52.0
this version of the Java Runtime only recognizes class file versions up to 52.0原创 2023-03-17 16:09:40 · 23212 阅读 · 0 评论 -
OWASP ZAP mac chrome代理配置&取消URL强制Https【已解决】
OWASP ZAP mac chrome代理配置&取消URL强制Https【已解决】原创 2022-11-23 20:44:35 · 1737 阅读 · 0 评论 -
MacOS安装python,报错“zsh: command not found: python”【已解决】
MacOS安装python,报错“zsh: command not found: python”【已解决】原创 2022-10-18 12:49:29 · 35553 阅读 · 8 评论 -
【报错】node:internal/modules/cjs/loader:936 【解决方法】
node:internal/modules/cjs/loader:936 解决方法原创 2022-07-23 21:35:07 · 25949 阅读 · 0 评论 -
【Docker闪退】【解决方法】It looks like there is an error with Docker Desktop, restart it to fix it
Docker在Win10家庭版中无法正常开启,闪退[解决方法]原创 2022-07-17 23:01:09 · 9245 阅读 · 3 评论 -
【亲测有效】npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead. 解决方法!原创 2022-07-10 19:00:56 · 7574 阅读 · 5 评论 -
安装Java时出现‘以下应用程序正在使用需要由此安装程序更新的文件。请关闭这些应用程序’ (已解决)
安装Java时出现‘以下程序正在使用java 必须关闭才能完成更新’ (已解决)原创 2022-05-26 17:42:27 · 19785 阅读 · 18 评论 -
load() missing 1 required positional argument: ‘Loader‘
1. 运行以下代码,报错:load() missing 1 required positional argument: 'Loader'config = yaml.load(open('config.yml'))2. 原因:yaml高版本放弃了yaml.load(file)这个用法。3. 解决方法:①添加参数Loader=yaml.FullLoader(即可)config = yaml.load(open('config.yml'),Loader=yaml.FullLoade原创 2022-01-03 21:06:09 · 3295 阅读 · 0 评论 -
matplotlib绘图 不显示中文 (解决方法)
matplotlib绘图 不显示中文 (解决方法)原创 2022-01-02 16:44:33 · 1114 阅读 · 0 评论 -
校园网 无法登录github-改Hosts 已解决
1. 找到C盘host文件C:\Windows\System32\drivers\etc\hosts2. 查询IP地址GitHub: Where the world builds software · GitHubgithub.global.ssl.Fastly.net ᐅ Learn more about Fastlyassets-cdn.Github.com ᐅ Learn more about Githubraw.Githubusercontent.com ᐅ Learn原创 2021-12-17 20:17:55 · 6062 阅读 · 0 评论 -
Cause: No module named ‘tensorflow_core.estimator‘(解决方法)
1. 问题描述:准备在VS code执行以下命令:x_input, x_output = gcn_lstm.in_out_tensors()结果报错:Cause: No module named 'tensorflow_core.estimator'WARNING: AutoGraph could not transform <bound method FixedAdjacencyGraphConvolution.call of <stellargraph.layer.gcn_l原创 2021-12-11 16:58:09 · 8737 阅读 · 6 评论 -
Conda install 报错:An HTTP error occurred when trying to retrieve this URL. HTTP errors are often...
1. 问题描述:准备在Anaconda prompt执行以下命令:conda install -c stellargraph stellargraph报错:An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way.2. 解决方法:打开 C:\Users\你的电脑...原创 2021-12-08 21:28:46 · 9003 阅读 · 0 评论 -
Object arrays cannot be loaded when allow_pickle=False 报错 (解决方法)(来自《Python 深度学习》P190页代码)
1.报错问题:(来自《Python 深度学习》P190页代码)在Vscode运行下述代码的时候,报错:Object arrays cannot be loaded when allow_pickle=Falsefrom keras.datasets import imdbfrom keras.preprocessing import sequencemax_features = 10000 # Number of words to consider as features(作为特征的单.原创 2021-11-17 22:44:38 · 1513 阅读 · 0 评论 -
failed to create cublas handle: CUBLAS_STATUS_ALLOC_FAILED 报错 (解决方法)
1.报错 问题:(来自GCN_Keras-master代码)在Pycharm运行GCN_Keras代码的时候,报错:①Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA您的CPU支持该TensorFlow二进制文件未编译为使用的指令:AVX2 FMA原因:成功解决Your CPU supports instructions that this TensorF.原创 2021-11-16 16:27:57 · 2002 阅读 · 0 评论 -
No module named ‘matplotlib‘ 报错 Tensorflow
问题:在Jupyter Notebook使用Tensorflow画图时,报错No module named 'matplotlib'解决方法:1. 打开anaconda prompt ,首先激活Tensorflow,然后在这个环境中安装matplotlib。activate tensorflowpip install matplotlib2. 再尝试一下之前的代码成功!...原创 2021-10-29 15:36:13 · 247 阅读 · 0 评论 -
InternalError: GPU sync failed 报错 (解决方法)
1.报错 问题:(来自《Python深度学习》P178-179)在VScode运行Jupyter Notebook以下代码的时候,报错:InternalError: GPU sync failed.from tensorflow.keras.models import Sequentialfrom tensorflow.keras import layersfrom tensorflow.keras.optimizers import RMSpropmodel = Sequential(.原创 2021-11-15 22:23:31 · 2448 阅读 · 0 评论 -
Cannot convert a symbolic Tensor (simple_rnn/strided_slice:0) to a numpy array. 报错 (解决方法)
1.报错 问题:(来自《Python深度学习》P164-165)在运行以下代码的时候,报错:Cannot convert a symbolic Tensor (simple_rnn/strided_slice:0) to a numpy array.# 只返回最后一个时间步的输出from tensorflow.keras.models import Sequentialfrom tensorflow.keras.layers import Embedding, SimpleRNNmod.原创 2021-11-15 15:32:15 · 4175 阅读 · 0 评论 -
module ‘gast‘ has no attribute ‘Num‘ 警告
运行程序有以下WARNING:module 'gast' has no attribute 'Num'WARNING:tensorflow:Entity <bound method MultiRNNCell.call of <tensorflow.python.ops.rnn_cell_impl.MultiRNNCell object at 0x0000020529AD6108>> could not be transformed and will be executed a.原创 2021-11-09 14:41:06 · 829 阅读 · 0 评论 -
Pycharm 建立不同Python版本的虚拟环境
1.windows10 cmd,输入:pip install virtualenv2.新建一个环境打开anaconda prompt,输入:conda create -n python37 Python=3.7 如果你需要,就继续y,安装你所需要的包。安装完成之后,查看目前的conda环境:conda info -e记住python37这个环境所在的地址。3.打开Pycharm,点击设置-project interpreter-Add4.如下图所示...原创 2021-11-08 21:58:18 · 7807 阅读 · 0 评论 -
《Python 深度学习》5.4 卷积神经网络的可视化(代码)
Visualizing what convnets learn卷积神经网络的可视化人们常说,深度学习模型是“黑盒”,即模型学到的表示很难用人类可以理解的方式来提取和呈现。虽然对于某些类型的深度学习模型来说,这种说法部分正确,但对卷积神经网络来说绝对不是这样。卷积神经网络学到的表示非常适合可视化,很大程度上是因为它们是视觉概念的表示。自 2013 年以来,人们开发了多种技术来对这些表示进行可视化和解释。我们不会在书中全部介绍,但会介绍三种最容易理解也最有用的方法。可视化卷积神经网络的中间输出(中间原创 2021-11-06 21:58:01 · 2384 阅读 · 3 评论 -
Your input ran out of data; interrupting training. Make sure that your dataset or generator can ....
《Python 深度学习》第5章 P114 在运行以下代码有个报错:history = model.fit_generator( train_generator, steps_per_epoch=100, epochs=100, validation_data=validation_generator, validation_steps=50)Your input ran out of data; interrupting traini.原创 2021-11-04 22:05:36 · 3827 阅读 · 5 评论