├── .gitignore ├── README.md ├── assets └── presidio.gif ├── code ├── inference.py └── requirements.txt └── sagemaker-notebook.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/advanced-pii-huggingface-sagemaker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/advanced-pii-huggingface-sagemaker/HEAD/README.md -------------------------------------------------------------------------------- /assets/presidio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/advanced-pii-huggingface-sagemaker/HEAD/assets/presidio.gif -------------------------------------------------------------------------------- /code/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/advanced-pii-huggingface-sagemaker/HEAD/code/inference.py -------------------------------------------------------------------------------- /code/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/advanced-pii-huggingface-sagemaker/HEAD/code/requirements.txt -------------------------------------------------------------------------------- /sagemaker-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philschmid/advanced-pii-huggingface-sagemaker/HEAD/sagemaker-notebook.ipynb --------------------------------------------------------------------------------