摘要:
代码 import torch from torchvision import datasets from torch.utils.data import DataLoader import torch.nn.functional as F import torch.optim as optim f 阅读全文
摘要:
代码 import torch from torchvision import datasets from torch.utils.data import DataLoader import torch.nn.functional as F import torch.optim as optim f 阅读全文
摘要:
最大公约数 已知两个数x和y,求x和y的最大公约数 暴力循环求解: public static void gcd(int x, int y) { if (y > x) {//如果y>x,交换x与y int t = x; x = y; y = t; } for (int i = y; i > 0; i 阅读全文
摘要:
论文地址:《Very Deep Convolutional Networks for Large-Scale Image Recognition》 思维导图:https://mubu.com/explore/5JnjDt1vIng 一、背景 LSVRC:大规模图像识别挑战赛 ImageNet Lar 阅读全文