LICENSE
README.md
pyproject.toml
src/xaura/__init__.py
src/xaura/__main__.py
src/xaura/cli.py
src/xaura/launcher.py
src/xaura.egg-info/PKG-INFO
src/xaura.egg-info/SOURCES.txt
src/xaura.egg-info/dependency_links.txt
src/xaura.egg-info/entry_points.txt
src/xaura.egg-info/requires.txt
src/xaura.egg-info/top_level.txt
src/xaura/export/__init__.py
src/xaura/export/csv_export.py
src/xaura/export/exporter.py
src/xaura/export/plot_export.py
src/xaura/models/__init__.py
src/xaura/models/base.py
src/xaura/models/defaults.py
src/xaura/models/registry.py
src/xaura/models/classifiers/__init__.py
src/xaura/models/classifiers/lightgbm_cls.py
src/xaura/models/classifiers/logistic.py
src/xaura/models/classifiers/random_forest.py
src/xaura/models/classifiers/xgboost_cls.py
src/xaura/models/clusterers/__init__.py
src/xaura/models/clusterers/dbscan.py
src/xaura/models/clusterers/hierarchical.py
src/xaura/models/clusterers/kmeans.py
src/xaura/models/regressors/__init__.py
src/xaura/models/regressors/lightgbm_reg.py
src/xaura/models/regressors/linear.py
src/xaura/models/regressors/random_forest_reg.py
src/xaura/models/regressors/ridge_lasso.py
src/xaura/models/regressors/xgboost_reg.py
src/xaura/profiler/__init__.py
src/xaura/profiler/dataprofile.py
src/xaura/profiler/profiler.py
src/xaura/server/__init__.py
src/xaura/server/app.py
src/xaura/server/routes/__init__.py
src/xaura/server/routes/experiment_routes.py
src/xaura/server/routes/export_routes.py
src/xaura/server/routes/model_routes.py
src/xaura/server/routes/profile_routes.py
src/xaura/server/static/css/style.css
src/xaura/server/static/js/app.js
src/xaura/server/static/js/experiments.js
src/xaura/server/templates/base.html
src/xaura/server/templates/experiments.html
src/xaura/server/templates/index.html
src/xaura/server/templates/profile.html
src/xaura/server/templates/results.html
src/xaura/server/templates/run.html
src/xaura/store/__init__.py
src/xaura/store/sqlite_store.py
src/xaura/visualisation/__init__.py
src/xaura/visualisation/_style.py
src/xaura/visualisation/matplotlib_charts.py
src/xaura/visualisation/matplotlib_clustering.py
src/xaura/visualisation/matplotlib_regression.py
src/xaura/visualisation/plotly_charts.py
src/xaura/visualisation/plotly_clustering.py
src/xaura/visualisation/plotly_regression.py
tests/test_api.py
tests/test_classifiers.py
tests/test_cli.py
tests/test_clusterers.py
tests/test_defaults.py
tests/test_export.py
tests/test_integration.py
tests/test_profiler.py
tests/test_regressors.py
tests/test_store.py
tests/test_visualisation.py
tests/test_visualisation_clustering.py
tests/test_visualisation_regression.py