dreamlike-zzg

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 3 4 5 6 7

2022年11月5日

摘要: pipeline trainloader = torch.utils.data.DataLoader(trainset, batch_size=batch_size, shuffle=True, num_workers=4, pin_memory=True)... 阅读全文
posted @ 2022-11-05 15:59 梦幻济公 阅读(53) 评论(0) 推荐(0)

摘要: 排序 s = 'aaabbc'set(s)# {'a', 'b', 'c'}sorted((s.count(x), x) for x in set(s))# [(1, 'c'), (2, 'b'), (3, 'a')]# 排序后索引>>> lis = [1,... 阅读全文
posted @ 2022-11-05 15:59 梦幻济公 阅读(27) 评论(0) 推荐(0)

摘要: gcc: error trying to exec 'cc1plus' : execvp: No such file or directory solve: https://askubuntu.com/questions/637014/gcc-error-t... 阅读全文
posted @ 2022-11-05 15:59 梦幻济公 阅读(116) 评论(0) 推荐(0)

上一页 1 ··· 3 4 5 6 7