代码调试报错
调试代码过程中遇到的问题
XU_MAN_
每一次想放弃的时候,在坚持一下,因为下一秒奇迹就出现了。坚持
展开
-
CP分解卷积层代码调试问题
意思是:如果想把CUDA tensor格式的数据改成numpy时,需要先将其转换成cpu float-tensor随后再转到numpy格式。numpy不能读取CUDA tensor 需要将它转化为 CPU tensor。此错误是因为在较新版本的 parafac 中它返回规范和因子,因此将您的语句更改为。原创 2022-08-24 12:21:17 · 379 阅读 · 0 评论 -
张量分解卷积层代码搭建错误修改(pytorch)
1,代码中实现可以输出变化的变量print('#training images = %d' % dataset_size)2,RuntimeError: The size of tensor a (32) must match the size of tensor b (28) at non-singleton原创 2022-01-30 14:03:34 · 2402 阅读 · 0 评论 -
DJSCC2代码重现
1,ImportError: cannot import name 'Adam' from 'keras.optimizers'将from keras.optimizers import Adam改变为:from tensorflow.keras.optimizers import Adam或者2,AttributeError: Can't set the attribute "name", likely because it conflicts with an exi.原创 2022-01-12 15:23:04 · 641 阅读 · 0 评论 -
Dynamic_JSCC-main代码重现
Deep Joint Source-Channel Coding for Wireless Image Transmission with Adaptive Rate Control1,关于AttributeError: module ‘torch._C‘ has no attribute ‘_cuda_setDevice‘问题的解决2,KeyError: 'val_acc'、KeyError: 'acc'等报错信息的解决方法由于keras库版本的不同,将acc改为accuracy原创 2022-01-11 16:57:56 · 943 阅读 · 1 评论 -
Tensor Train Decomposition for Recurrent Neural Network环境配置问题
https://github.com/philip-bl/tensor_train_rnn以上为论文链接1,在pycharm中如何使用wget下载数据在文件中引用直接使用绝对路径2,TypeError: add_weight() got multiple values for argument 'name'解决方法:将add_weight()中的第一个参数命名为shape=3,AttributeError: 'tuple' object has no attribute.原创 2022-01-11 10:21:20 · 498 阅读 · 0 评论 -
python编辑器——pip install xxx报错SyntaxError: invalid syntax
python——pip install xxx报错SyntaxError: invalid syntax在安装好python后,进入python运行环境后,因为我要用pip安装开发Web App需要的第三方库,执行pip install aiohttp,发现会报错SyntaxError: invalid syntax,刚开始以为是拼写或者空格问题或者python版本问题,结果用pip3还是一样...原创 2019-10-26 17:00:34 · 2683 阅读 · 2 评论