您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 动手入门深度学习笔记-CNN模型以及进阶模型

  2. CNN模型 code实现 ## 二维互相关 import torch import torch.nn as nn def corr2d(X, K): H, W = X.shape h, w = K.shape Y = torch.zeros(H - h + 1, W - w + 1) for i in range(Y.shape[0]): for j in range(Y.shape[1]): Y[i, j] = (X[i:
  3. 所属分类:其它