一、斜杠/是,反斜杠是\,linux中 \ 是转义的意思,'\n'是换行,'\t'是tab。
二、Python assert(断言)用于判断一个表达式,在表达式条件为 false 的时候触发异常。
断言可以在条件不满足程序运行的情况下直接返回错误,而不必等待程序运行后出现崩溃的情况,例如我们的代码只能在 Linux 系统下运行,可以先判断当前系统是否符合条件。
如:
def bce2d_new(input, target, reduction=None):
input = F.upsample(input,size=target.size()[2:],mode='bilinear')
assert(input.size() == target.size())
pos = torch.eq(target, 1).float()
neg = torch.eq(target, 0).float()