├── .gitignore ├── GalaxyDataset.py ├── NEI.py ├── README.md ├── autoencoder.py ├── config.yaml ├── digitfive ├── SubPolicy.py ├── custom.py ├── femnist.py ├── mnist.py ├── mnistm.py ├── svhn.py ├── syn.py └── usps.py ├── downloadData.py ├── evaluationMetrics.py ├── fdata.py ├── mnist_bias.py ├── preprocess.py ├── requirements.txt ├── resources └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── datageneration.png │ └── structure2.png ├── runAE.sh ├── splitDataset.sh └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | data 4 | cifar10 5 | mnist 6 | -------------------------------------------------------------------------------- /GalaxyDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/GalaxyDataset.py -------------------------------------------------------------------------------- /NEI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/NEI.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/README.md -------------------------------------------------------------------------------- /autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/autoencoder.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/config.yaml -------------------------------------------------------------------------------- /digitfive/SubPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/SubPolicy.py -------------------------------------------------------------------------------- /digitfive/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/custom.py -------------------------------------------------------------------------------- /digitfive/femnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/femnist.py -------------------------------------------------------------------------------- /digitfive/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/mnist.py -------------------------------------------------------------------------------- /digitfive/mnistm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/mnistm.py -------------------------------------------------------------------------------- /digitfive/svhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/svhn.py -------------------------------------------------------------------------------- /digitfive/syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/syn.py -------------------------------------------------------------------------------- /digitfive/usps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/digitfive/usps.py -------------------------------------------------------------------------------- /downloadData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/downloadData.py -------------------------------------------------------------------------------- /evaluationMetrics.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/fdata.py -------------------------------------------------------------------------------- /mnist_bias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/mnist_bias.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/resources/images/1.png -------------------------------------------------------------------------------- /resources/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/resources/images/2.png -------------------------------------------------------------------------------- /resources/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/resources/images/3.png -------------------------------------------------------------------------------- /resources/images/datageneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/resources/images/datageneration.png -------------------------------------------------------------------------------- /resources/images/structure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/resources/images/structure2.png -------------------------------------------------------------------------------- /runAE.sh: -------------------------------------------------------------------------------- 1 | source ~/venv/bin/activate 2 | nohup python3 autoencoder.py & 3 | 4 | # [1] 25029 5 | 6 | -------------------------------------------------------------------------------- /splitDataset.sh: -------------------------------------------------------------------------------- 1 | # source ~/venv/bin/activate 2 | python3 makeDataset.py 3 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-DistributedAI/GalaxyDataset/HEAD/test.py --------------------------------------------------------------------------------