.gitignore
LICENSE
MANIFEST.in
README.md
install.sh
overview.svg
overview_600dpi.png
pyproject.toml
setup.cfg
setup.py
tox.ini
data/ishigami_sobol_g/app_settings.json
data/ishigami_sobol_g/data_settings.json
data/ishigami_sobol_g/total_data.csv
outputs/.gitignore
src/SAInT/__init__.py
src/SAInT/__main__.py
src/SAInT/common.py
src/SAInT/data_augmentation.py
src/SAInT/data_balancer.py
src/SAInT/data_normalizer.py
src/SAInT/data_settings.py
src/SAInT/data_visualizer.py
src/SAInT/dataloader.py
src/SAInT/dataset.py
src/SAInT/metric.py
src/SAInT/model.py
src/SAInT/modelloader.py
src/SAInT/online_normalization.py
src/SAInT/run_dash_application.py
src/SAInT/trainer.py
src/SAInT/dash_application/__init__.py
src/SAInT/dash_application/dash_component.py
src/SAInT/dash_application/logo.svg
src/SAInT/dash_application/pixel_definitions.py
src/SAInT/dash_application/saint_application.py
src/SAInT/dash_application/saint_dash_app.py
src/SAInT/dash_application/saint_dash_layout_components.py
src/SAInT/dash_application/assets/custom_reload_warning.js
src/SAInT/dash_application/callbacks/__init__.py
src/SAInT/dash_application/callbacks/add_model_callback.py
src/SAInT/dash_application/callbacks/automatic_callback.py
src/SAInT/dash_application/callbacks/console_callback.py
src/SAInT/dash_application/callbacks/create_optimizer_callback.py
src/SAInT/dash_application/callbacks/data_callback.py
src/SAInT/dash_application/callbacks/feature_selection_popup_callback.py
src/SAInT/dash_application/callbacks/gsa_callback.py
src/SAInT/dash_application/callbacks/local_explain_callback.py
src/SAInT/dash_application/callbacks/lsa_popup_callback.py
src/SAInT/dash_application/callbacks/model_callback.py
src/SAInT/dash_application/callbacks/model_config_callback.py
src/SAInT/dash_application/callbacks/plot_callback.py
src/SAInT/dash_application/callbacks/progressbar_callback.py
src/SAInT/dash_application/callbacks/scan_callback.py
src/SAInT/dash_application/callbacks/screen_resolution_callback.py
src/SAInT/dash_application/callbacks/settings_callback.py
src/SAInT/dash_application/callbacks/stop_training_callback.py
src/SAInT/dash_application/colors/__init__.py
src/SAInT/dash_application/colors/color.py
src/SAInT/dash_application/colors/color_palette.py
src/SAInT/dash_application/colors/color_palette_registry.py
src/SAInT/dash_application/common/__init__.py
src/SAInT/dash_application/common/config_conversion.py
src/SAInT/dash_application/common/dash_functions.py
src/SAInT/dash_application/common/data_dialog.py
src/SAInT/dash_application/common/image_loader.py
src/SAInT/dash_application/common/path_functions.py
src/SAInT/dash_application/components/__init__.py
src/SAInT/dash_application/components/dash_button.py
src/SAInT/dash_application/components/dash_buttongroup.py
src/SAInT/dash_application/components/dash_checklist.py
src/SAInT/dash_application/components/dash_console.py
src/SAInT/dash_application/components/dash_div.py
src/SAInT/dash_application/components/dash_dropdown.py
src/SAInT/dash_application/components/dash_graph.py
src/SAInT/dash_application/components/dash_grid.py
src/SAInT/dash_application/components/dash_header.py
src/SAInT/dash_application/components/dash_heading.py
src/SAInT/dash_application/components/dash_icon_button.py
src/SAInT/dash_application/components/dash_input.py
src/SAInT/dash_application/components/dash_interval.py
src/SAInT/dash_application/components/dash_json_editor.py
src/SAInT/dash_application/components/dash_link.py
src/SAInT/dash_application/components/dash_newline.py
src/SAInT/dash_application/components/dash_popup.py
src/SAInT/dash_application/components/dash_radio_button.py
src/SAInT/dash_application/components/dash_tab.py
src/SAInT/dash_application/components/dash_tabgroup.py
src/SAInT/dash_application/components/dash_textarea.py
src/SAInT/dash_application/components/dash_window.py
src/SAInT/dash_application/console/console.py
src/SAInT/dash_application/data_definition/data_handler.py
src/SAInT/dash_application/feature_importance/dash_global_explainer.py
src/SAInT/dash_application/interactive_plot/common.py
src/SAInT/dash_application/interactive_plot/dash_local_explainer.py
src/SAInT/dash_application/interactive_plot/interactive_plot.py
src/SAInT/dash_application/interactive_plot/local_explainer/local_lime_explainer.py
src/SAInT/dash_application/interactive_plot/local_explainer/local_shap_explainer.py
src/SAInT/dash_application/model_definition/get_model_type_from_file.py
src/SAInT/dash_application/model_definition/model_handler.py
src/SAInT/dash_application/model_definition/progress_bar.py
src/SAInT/dash_application/settings/app_settings.py
src/SAInT/metrics/__init__.py
src/SAInT/metrics/classification/__init__.py
src/SAInT/metrics/classification/binary_cross_entropy.py
src/SAInT/metrics/classification/cross_entropy.py
src/SAInT/metrics/classification/hinge.py
src/SAInT/metrics/classification/modified_huber.py
src/SAInT/metrics/classification/neglog_likelihood.py
src/SAInT/metrics/classification/ramp.py
src/SAInT/metrics/classification/smoothed_hinge.py
src/SAInT/metrics/classification/squared_hinge.py
src/SAInT/metrics/regression/__init__.py
src/SAInT/metrics/regression/logcosh.py
src/SAInT/metrics/regression/mae.py
src/SAInT/metrics/regression/mse.py
src/SAInT/metrics/regression/msle.py
src/SAInT/metrics/regression/r2.py
src/SAInT/metrics/regression/rae.py
src/SAInT/metrics/regression/rmse.py
src/SAInT/metrics/regression/rmsle.py
src/SAInT/metrics/regression/rse.py
src/SAInT/networks/__init__.py
src/SAInT/networks/classical/__init__.py
src/SAInT/networks/classical/classical.py
src/SAInT/networks/classical/decisiontree.py
src/SAInT/networks/classical/gamma_regressor.py
src/SAInT/networks/classical/grid_search.py
src/SAInT/networks/classical/multioutput_randomforest.py
src/SAInT/networks/classical/multioutput_ridge.py
src/SAInT/networks/classical/randomforest.py
src/SAInT/networks/classical/sv.py
src/SAInT/networks/classical/xgb.py
src/SAInT/networks/fastai/__init__.py
src/SAInT/networks/fastai/fastaimodel.py
src/SAInT/networks/fastai/mlp.py
src/SAInT/networks/fastai/stop_training_callback.py
src/SAInT/networks/fastai/tabresnet.py
src/SAInT/normalization/__init__.py
src/SAInT/normalization/meanstd_normalizer.py
src/SAInT/normalization/minmax_normalizer.py
src/SAInT/sa/__init__.py
src/SAInT/sa/gsa.py
src/SAInT/sa/lsa_lime.py
src/SAInT/sa/lsa_shap.py
src/SAInT/templates/__init__.py
src/SAInT/templates/app_settings.json
src/SAInT/templates/data_settings.json
src/SAInTool.egg-info/PKG-INFO
src/SAInTool.egg-info/SOURCES.txt
src/SAInTool.egg-info/dependency_links.txt
src/SAInTool.egg-info/not-zip-safe
src/SAInTool.egg-info/requires.txt
src/SAInTool.egg-info/top_level.txt
tests/test_skeleton.py