├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── aml-notebooks ├── 01-iJungle-tutorial-training-pipeline.ipynb └── 02-iJungle-tutorial-inference-pipeline.ipynb ├── data ├── corrected.gz ├── kddcup.data.gz └── kddcup.names ├── docs └── media │ └── banner.png ├── scripts ├── best_iforest.py ├── feat_eng.py ├── inference.py ├── interpret.py ├── overhead.py ├── overhead_ds.py └── training.py ├── setup.py ├── src └── iJungle │ ├── __init__.py │ ├── config.py │ └── train.py └── synapse-notebooks ├── 01 - ijungle - common - feature engineering.json ├── 02 - ijungle - training - iforest training.json ├── 03 - ijungle - training - overhead.json ├── 04 - ijungle - training - best iforest.json ├── 05 - ijungle - predict - anomaly detection.json └── 06 - ijungle - predict - interpret.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /aml-notebooks/01-iJungle-tutorial-training-pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/aml-notebooks/01-iJungle-tutorial-training-pipeline.ipynb -------------------------------------------------------------------------------- /aml-notebooks/02-iJungle-tutorial-inference-pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/aml-notebooks/02-iJungle-tutorial-inference-pipeline.ipynb -------------------------------------------------------------------------------- /data/corrected.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/data/corrected.gz -------------------------------------------------------------------------------- /data/kddcup.data.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/data/kddcup.data.gz -------------------------------------------------------------------------------- /data/kddcup.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/data/kddcup.names -------------------------------------------------------------------------------- /docs/media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/docs/media/banner.png -------------------------------------------------------------------------------- /scripts/best_iforest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/best_iforest.py -------------------------------------------------------------------------------- /scripts/feat_eng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/feat_eng.py -------------------------------------------------------------------------------- /scripts/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/inference.py -------------------------------------------------------------------------------- /scripts/interpret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/interpret.py -------------------------------------------------------------------------------- /scripts/overhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/overhead.py -------------------------------------------------------------------------------- /scripts/overhead_ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/overhead_ds.py -------------------------------------------------------------------------------- /scripts/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/scripts/training.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/setup.py -------------------------------------------------------------------------------- /src/iJungle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/src/iJungle/__init__.py -------------------------------------------------------------------------------- /src/iJungle/config.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.2.0' 2 | _MODEL_DIR = 'outputs' 3 | -------------------------------------------------------------------------------- /src/iJungle/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/src/iJungle/train.py -------------------------------------------------------------------------------- /synapse-notebooks/01 - ijungle - common - feature engineering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/synapse-notebooks/01 - ijungle - common - feature engineering.json -------------------------------------------------------------------------------- /synapse-notebooks/02 - ijungle - training - iforest training.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/synapse-notebooks/02 - ijungle - training - iforest training.json -------------------------------------------------------------------------------- /synapse-notebooks/03 - ijungle - training - overhead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/synapse-notebooks/03 - ijungle - training - overhead.json -------------------------------------------------------------------------------- /synapse-notebooks/04 - ijungle - training - best iforest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/synapse-notebooks/04 - ijungle - training - best iforest.json -------------------------------------------------------------------------------- /synapse-notebooks/05 - ijungle - predict - anomaly detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/synapse-notebooks/05 - ijungle - predict - anomaly detection.json -------------------------------------------------------------------------------- /synapse-notebooks/06 - ijungle - predict - interpret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-anomaly-detection-ijungle/HEAD/synapse-notebooks/06 - ijungle - predict - interpret.json --------------------------------------------------------------------------------