- 本程序实现了自编码器的基本功能,以及应用自编码器进行mnist分类
- 为了更好的理解,本程序未使用Tensorflow的自带mnist数据集,而是使用的本地的mnist数据,可在 https://pan.baidu.com/s/1dE4ilxf 下载,并将该mnist数据集与autoencoder.py放在同一目录下
- 终端输入:
python autoencoder.py
:实现自编码器基本功能 - 终端输入:
python autoencoder.py -type 1
:实现对mnist分类
python autoencoder.py
:实现自编码器基本功能python autoencoder.py -type 1
:实现对mnist分类