├── .gitignore ├── LICENSE.txt ├── README.md ├── bibliography.bib ├── cheatsheet.pptx ├── img ├── adversary.PNG ├── blueprint.png ├── cheatsheet.png ├── h2o_logo.png ├── imperson.PNG ├── inversion.PNG ├── membership.PNG ├── poison.png └── watermark.PNG ├── main.pdf ├── main.tex ├── secure_ml_ideas.pdf ├── secure_ml_ideas.pptx └── secure_ml_ideas.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/README.md -------------------------------------------------------------------------------- /bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/bibliography.bib -------------------------------------------------------------------------------- /cheatsheet.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/cheatsheet.pptx -------------------------------------------------------------------------------- /img/adversary.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/adversary.PNG -------------------------------------------------------------------------------- /img/blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/blueprint.png -------------------------------------------------------------------------------- /img/cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/cheatsheet.png -------------------------------------------------------------------------------- /img/h2o_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/h2o_logo.png -------------------------------------------------------------------------------- /img/imperson.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/imperson.PNG -------------------------------------------------------------------------------- /img/inversion.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/inversion.PNG -------------------------------------------------------------------------------- /img/membership.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/membership.PNG -------------------------------------------------------------------------------- /img/poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/poison.png -------------------------------------------------------------------------------- /img/watermark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/img/watermark.PNG -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/main.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/main.tex -------------------------------------------------------------------------------- /secure_ml_ideas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/secure_ml_ideas.pdf -------------------------------------------------------------------------------- /secure_ml_ideas.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/secure_ml_ideas.pptx -------------------------------------------------------------------------------- /secure_ml_ideas.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphall663/secure_ML_ideas/HEAD/secure_ml_ideas.tex --------------------------------------------------------------------------------