摘要:
``` import torch
import torch.nn as nn
import torch.nn.functional as F class ResidualBlock(nn.Module): ''' 实现子module: Residual Block ''' def __init__(self,inchannel,outcha... 阅读全文
摘要:
以下为摘录的python的介绍 Python是一种解释型语言。这就是说,与C语言和C的衍生语言不同,Python代码在运行之前不需要编译。其他解释型语言还包括PHP和Ruby。 Python是动态类型语言,指的是你在声明变量时,不需要说明变量的类型。你可以直接编写类似x=111和x="I'm a s 阅读全文