├── .gitignore ├── LICENSE ├── README.md ├── private_predict ├── requirements.txt ├── skin_cancer_image.npy ├── training.ipynb └── transform_to_pb.py /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | **.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/README.md -------------------------------------------------------------------------------- /private_predict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/private_predict -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /skin_cancer_image.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/skin_cancer_image.npy -------------------------------------------------------------------------------- /training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/training.ipynb -------------------------------------------------------------------------------- /transform_to_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capeprivacy/encrypted-skin-cancer-detection/HEAD/transform_to_pb.py --------------------------------------------------------------------------------