原因一:找到错误点,增加以下语句: with torch.no_grad(): outputs = Net_(inputs) 错误代码的位置。 原因二:GPU没有选对 os.environ["CUDA_VISIBLE_DEVICES"] = "0, 2, 3" 查看性能,发现nVidia的只有GPU ...
分类:
其他好文 时间:
2020-07-26 22:55:56
阅读次数:
297
feign调用出错都是这个报错,比较蛋疼 查看堆栈信息发现: 请求信息都拼接在url上了。当发送的信息多的时候就会报错。 解决办法。将信息放在body里面 1.feign接口: @PostMapping("/send_devices_info") void sendDevicesInfo(@Requ ...
分类:
其他好文 时间:
2020-07-20 13:07:20
阅读次数:
375
谐波的具体生成方法参看论文 Harmonic and Intermodulation Analysis of Nonlinear Devices Used in Virtual Bass Systems 具体的matlab代码为 function Ha = calculate_harmonics() ...
分类:
其他好文 时间:
2020-07-17 19:25:00
阅读次数:
76
谐波的具体生成方法参看论文 Harmonic and Intermodulation Analysis of Nonlinear Devices Used in Virtual Bass Systems 具体的matlab代码为 function Ha = calculate_harmonics() ...
分类:
其他好文 时间:
2020-07-17 16:24:35
阅读次数:
80
1、夜神模拟器连接不上adb的解决办法 转自 (https://www.jianshu.com/p/6041e64518a8) 最近给模拟器升级了版本,用了一段时间后,突然发现通过adb devices发现不了设备了。 image 在网络上搜索了好多解决办法,都无法解决,后来终于发现了一个可成功连接 ...
分类:
数据库 时间:
2020-07-15 15:02:58
阅读次数:
127
https://mp.weixin.qq.com/s/MUK2K1WrhcyoEsOVwpgrlw 简单介绍TestHarness的实现。 1. 测试模块 TestHarness是一个测试模块,直接继承自Module类: 2. io 测试模块向外输出一个测试是否成功的信号: 3. 实例化Exampl ...
分类:
其他好文 时间:
2020-07-14 13:17:07
阅读次数:
76
# coding: utf-8 import tensorflow as tf import os os.environ["CUDA_VISIBLE_DEVICES"] = "-1" print(tf.__version__) print(tf.test.is_gpu_available()) fr ...
分类:
其他好文 时间:
2020-07-10 10:00:02
阅读次数:
62
The OBEX application framework is a set of conventions and services designed for the purpose of creating interoperable(互操作性) devices. OBEX is a very f ...
分类:
移动开发 时间:
2020-07-05 23:14:22
阅读次数:
62
The session protocol describes the basic structure of an OBEX conversation. It consists of a format for the “conversation” between devices and a set o ...
分类:
其他好文 时间:
2020-07-05 22:44:14
阅读次数:
61
英伟达的jetson xavier 或者NX打开风扇都是通过修改下面的文件实现的。 vim /sys/devices/pwm-fan/target_pwm 或者直接 sudo sh -c "echo 150 > /sys/devices/pwm-fan/target_pwm" 但是修改上述文件的时候 ...
分类:
其他好文 时间:
2020-06-30 20:30:54
阅读次数:
375