2021年10月13日
摘要: 用Callable创建线程 创建线程的办法除了继承Thread类和实现Runnable接口,还有实现Callable接口。 以下代码演示使用Callable接口: package com.cxf.multithread.collable; import java.util.concurrent.*; 阅读全文
posted @ 2021-10-13 20:55 菜小疯 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 比较不同的优化器 以下代码比较了神经网络不同优化器的收敛速度: import torch import torch.utils.data as Data import torch.nn.functional as F from torch.autograd import Variable impor 阅读全文
posted @ 2021-10-13 10:51 菜小疯 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 批数据训练 拥有大量数据时,可把数据分批送入神经网络训练。 分批代码如下: import torch import torch.utils.data as Data if __name__ == '__main__': BATCH_SIZE = 5 x = torch.linspace(1, 10, 阅读全文
posted @ 2021-10-13 09:13 菜小疯 阅读(95) 评论(0) 推荐(0) 编辑