AutoEncoder自编码器 发表于 2019-10-03 | 字数统计: 61 | 阅读时长 ≈ 1 自编码器是一种压缩特征的方法,和PCA降维类似。 自编码器主要用在降维和去噪。 def add(x, y, name=None): “””Returns x + y element-wise.“”” def sigmoid(x, name=None): “””Computes sigmoid of x element-wise. Specifically, y = 1 / (1 + exp(-x)). “””