摘要: 变分自编码器Pytorch实现。 1 class VAE(nn.Module): 2 def __init__(self): 3 super(VAE, self).__init__() 4 5 self.fc1 = nn.Linear(784, 400) 6 self.fc21 = nn.Linea 阅读全文
posted @ 2022-09-25 13:04 zxcayumi 阅读(200) 评论(0) 推荐(0) 编辑