|
1 | 1 | # Table of contents
|
2 | 2 |
|
3 | 3 | * [Alibi Detect](README.md)
|
4 |
| -* [Getting Started](overview/getting\_started.md) |
| 4 | +* [Getting Started](overview/getting_started.md) |
5 | 5 | * [Algorithm Overview](overview/algorithms.md)
|
6 | 6 | * [Saving and Loading](overview/saving.md)
|
7 |
| -* [Detector Configuration Files](overview/config\_files.md) |
8 |
| -* [Roadmap](overview/roadmap.md) |
| 7 | +* [Detector Configuration Files](overview/config_files.md) |
9 | 8 | * [Outlier Detection](outlier-detection/README.md)
|
10 | 9 | * [Methods](outlier-detection/methods/README.md)
|
11 | 10 | * [Mahalanobis Distance](od/methods/mahalanobis.md)
|
|
19 | 18 | * [Spectral Residual](od/methods/sr.md)
|
20 | 19 | * [Sequence-to-Sequence (Seq2Seq)](od/methods/seq2seq.md)
|
21 | 20 | * [Examples](outlier-detection/examples/README.md)
|
22 |
| - * [AE outlier detection on CIFAR10](examples/od\_ae\_cifar10.md) |
23 |
| - * [AEGMM and VAEGMM outlier detection on KDD Cup ‘99 dataset](examples/od\_aegmm\_kddcup.md) |
24 |
| - * [Isolation Forest outlier detection on KDD Cup ‘99 dataset](examples/od\_if\_kddcup.md) |
25 |
| - * [Likelihood Ratio Outlier Detection on Genomic Sequences](examples/od\_llr\_genome.md) |
26 |
| - * [Likelihood Ratio Outlier Detection with PixelCNN++](examples/od\_llr\_mnist.md) |
27 |
| - * [Mahalanobis outlier detection on KDD Cup ‘99 dataset](examples/od\_mahalanobis\_kddcup.md) |
28 |
| - * [Time-series outlier detection using Prophet on weather data](examples/od\_prophet\_weather.md) |
29 |
| - * [Seq2Seq time series outlier detection on ECG data](examples/od\_seq2seq\_ecg.md) |
30 |
| - * [Time series outlier detection with Seq2Seq models on synthetic data](examples/od\_seq2seq\_synth.md) |
31 |
| - * [Time series outlier detection with Spectral Residuals on synthetic data](examples/od\_sr\_synth.md) |
32 |
| - * [VAE outlier detection for income prediction](examples/od\_vae\_adult.md) |
33 |
| - * [VAE outlier detection on CIFAR10](examples/od\_vae\_cifar10.md) |
34 |
| - * [VAE outlier detection on KDD Cup ‘99 dataset](examples/od\_vae\_kddcup.md) |
| 21 | + * [AE outlier detection on CIFAR10](examples/od_ae_cifar10.md) |
| 22 | + * [AEGMM and VAEGMM outlier detection on KDD Cup ‘99 dataset](examples/od_aegmm_kddcup.md) |
| 23 | + * [Isolation Forest outlier detection on KDD Cup ‘99 dataset](examples/od_if_kddcup.md) |
| 24 | + * [Likelihood Ratio Outlier Detection on Genomic Sequences](examples/od_llr_genome.md) |
| 25 | + * [Likelihood Ratio Outlier Detection with PixelCNN++](examples/od_llr_mnist.md) |
| 26 | + * [Mahalanobis outlier detection on KDD Cup ‘99 dataset](examples/od_mahalanobis_kddcup.md) |
| 27 | + * [Time-series outlier detection using Prophet on weather data](examples/od_prophet_weather.md) |
| 28 | + * [Seq2Seq time series outlier detection on ECG data](examples/od_seq2seq_ecg.md) |
| 29 | + * [Time series outlier detection with Seq2Seq models on synthetic data](examples/od_seq2seq_synth.md) |
| 30 | + * [Time series outlier detection with Spectral Residuals on synthetic data](examples/od_sr_synth.md) |
| 31 | + * [VAE outlier detection for income prediction](examples/od_vae_adult.md) |
| 32 | + * [VAE outlier detection on CIFAR10](examples/od_vae_cifar10.md) |
| 33 | + * [VAE outlier detection on KDD Cup ‘99 dataset](examples/od_vae_kddcup.md) |
35 | 34 | * [Drift Detection](cd/README.md)
|
36 | 35 | * [Methods](cd/methods/README.md)
|
37 | 36 | * [Offline](cd/methods/offline/README.md)
|
|
53 | 52 | * [Online Cramér-von Mises](cd/methods/onlinecvmdrift.md)
|
54 | 53 | * [Online Fisher’s Exact Test](cd/methods/onlinefetdrift.md)
|
55 | 54 | * [Examples](cd/examples/README.md)
|
56 |
| - * [Categorical and mixed type data drift detection on income prediction](examples/cd\_chi2ks\_adult.md) |
57 |
| - * [Learned drift detectors on Adult Census](examples/cd\_clf\_adult.md) |
58 |
| - * [Learned drift detectors on CIFAR-10](examples/cd\_clf\_cifar10.md) |
59 |
| - * [Context-aware drift detection on news articles](examples/cd\_context\_20newsgroup.md) |
60 |
| - * [Context-aware drift detection on ECGs](examples/cd\_context\_ecg.md) |
61 |
| - * [Model Distillation drift detector on CIFAR-10](examples/cd\_distillation\_cifar10.md) |
62 |
| - * [Kolmogorov-Smirnov data drift detector on CIFAR-10](examples/cd\_ks\_cifar10.md) |
63 |
| - * [Maximum Mean Discrepancy drift detector on CIFAR-10](examples/cd\_mmd\_cifar10.md) |
64 |
| - * [Scaling up drift detection with KeOps](examples/cd\_mmd\_keops.md) |
65 |
| - * [Model uncertainty based drift detection on CIFAR-10 and Wine-Quality datasets](examples/cd\_model\_unc\_cifar10\_wine.md) |
66 |
| - * [Drift detection on molecular graphs](examples/cd\_mol.md) |
67 |
| - * [Online drift detection for Camelyon17 medical imaging dataset](examples/cd\_online\_camelyon.md) |
68 |
| - * [Online Drift Detection on the Wine Quality Dataset](examples/cd\_online\_wine.md) |
69 |
| - * [Interpretable drift detection with the spot-the-diff detector on MNIST and Wine-Quality datasets](examples/cd\_spot\_the\_diff\_mnist\_wine.md) |
70 |
| - * [Supervised drift detection on the penguins dataset](examples/cd\_supervised\_penguins.md) |
71 |
| - * [Drift detection on Amazon reviews](examples/cd\_text\_amazon.md) |
72 |
| - * [Text drift detection on IMDB movie reviews](examples/cd\_text\_imdb.md) |
| 55 | + * [Categorical and mixed type data drift detection on income prediction](examples/cd_chi2ks_adult.md) |
| 56 | + * [Learned drift detectors on Adult Census](examples/cd_clf_adult.md) |
| 57 | + * [Learned drift detectors on CIFAR-10](examples/cd_clf_cifar10.md) |
| 58 | + * [Context-aware drift detection on news articles](examples/cd_context_20newsgroup.md) |
| 59 | + * [Context-aware drift detection on ECGs](examples/cd_context_ecg.md) |
| 60 | + * [Model Distillation drift detector on CIFAR-10](examples/cd_distillation_cifar10.md) |
| 61 | + * [Kolmogorov-Smirnov data drift detector on CIFAR-10](examples/cd_ks_cifar10.md) |
| 62 | + * [Maximum Mean Discrepancy drift detector on CIFAR-10](examples/cd_mmd_cifar10.md) |
| 63 | + * [Scaling up drift detection with KeOps](examples/cd_mmd_keops.md) |
| 64 | + * [Model uncertainty based drift detection on CIFAR-10 and Wine-Quality datasets](examples/cd_model_unc_cifar10_wine.md) |
| 65 | + * [Drift detection on molecular graphs](examples/cd_mol.md) |
| 66 | + * [Online drift detection for Camelyon17 medical imaging dataset](examples/cd_online_camelyon.md) |
| 67 | + * [Online Drift Detection on the Wine Quality Dataset](examples/cd_online_wine.md) |
| 68 | + * [Interpretable drift detection with the spot-the-diff detector on MNIST and Wine-Quality datasets](examples/cd_spot_the_diff_mnist_wine.md) |
| 69 | + * [Supervised drift detection on the penguins dataset](examples/cd_supervised_penguins.md) |
| 70 | + * [Drift detection on Amazon reviews](examples/cd_text_amazon.md) |
| 71 | + * [Text drift detection on IMDB movie reviews](examples/cd_text_imdb.md) |
73 | 72 | * [Adversarial Detection](adversarial-detection/README.md)
|
74 | 73 | * [Methods](adversarial-detection/methods/README.md)
|
75 | 74 | * [Adversarial Auto-Encoder](ad/methods/adversarialae.md)
|
76 | 75 | * [Model Distillation](ad/methods/modeldistillation.md)
|
77 | 76 | * [Examples](adversarial-detection/examples/README.md)
|
78 |
| - * [Adversarial AE detection and correction on CIFAR-10](examples/ad\_ae\_cifar10.md) |
79 |
| -* [Deployment](examples/alibi\_detect\_deploy.md) |
| 77 | + * [Adversarial AE detection and correction on CIFAR-10](examples/ad_ae_cifar10.md) |
| 78 | +* [Deployment](examples/alibi_detect_deploy.md) |
80 | 79 | * [Datasets](datasets/overview.md)
|
81 | 80 | * [Models](models/overview.md)
|
82 | 81 | * [Bibliography](bibliography.md)
|
0 commit comments