├── .gitignore ├── LICENSE ├── README.md ├── datasets.py ├── deep_mil.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dancsalo/TensorFlow-MIL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dancsalo/TensorFlow-MIL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dancsalo/TensorFlow-MIL/HEAD/README.md -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dancsalo/TensorFlow-MIL/HEAD/datasets.py -------------------------------------------------------------------------------- /deep_mil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dancsalo/TensorFlow-MIL/HEAD/deep_mil.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==1.13.1 2 | Keras==2.2.4 3 | --------------------------------------------------------------------------------