This is a simple UI for running different outlier detection algorithms on synthesized dataset. The backend of this UI is based on the pyod
library and thus this UI can also be viewed as a simple demonstration interface of pyod
(although unofficially developed).
Just opened with a splash,
Detection results displayed,
- Install dependencies in
requirements.txt
. - run
app.py
. - In the
PARAMETERS
panel, set the parameters. - Press
RUN
to see the results.
Fixing the Random Seed
and switching the models allow you to compare the performances of different models on the same dataset. Changing the seed or the parameters of the dataset (e.g., Ratio of Outliers
, Feature Dims
) will cause a different dataset to be loaded.
- Add the
EXPORT
button to allow dataset & detection results & model export. - ...