This dashboard a user-friendly interface for non-programmers to use KiTE -- a tool that validates and calibrates supervised classification models against bias.
We hope to empower general users to audit models and develop diagnostic plots that help identify and quantify bias in supervised ML models.
- Policy-makers and general users can use this site to generate the following visualizations:
- A calibration curve to compare the calibration of the model's probabilistic predictions.
- Model Bias quantification curves, where you can plot Prediction Bias against a set of features (
trust_features
) in the data provided. - Model Trustworthiness hypothesis testing curve based on
$ELCE^2$ -- a test statistic that quantifies bias in a set of features (trust_features
) the user specifies
- Collect and pre-process your data as a CSV.
- Make sure your CSV has your features, labels, and probabilities.
- Make sure your CSV has your features, labels, and probabilities.
-
Your CSV MUST have the following column:
-
probability
-- Accepted values are decimal values$\in [0,1]$ -
What does this mean? --
probability
represents the prediction probability for the feature set.
-
What does this mean? --
-
-
Need an Example?
- Example 1: Preprocessed BROWARD COMPASS Data
- Example 2: Homeownership Data
- Upload your cleaned data!
- Label which columns are your target (y-label) and which set of features you want to use to evaluate trustworthiness.
- Generate + Download your plots of interest!
You can submit any feedback, questions, or issues in the Issues Tab of this Repository. One of our team members will promptly respond to help you out!
- Fork this Repo
- Clone the Repo onto your computer
- Create a branch (git checkout -b new-feature)
- Make Changes
- Run necessary quality assurance tools (Formatter, Linter, etc).
- Test the site on your local machine with
streamlit run app.py
- Add your changes (
git commit -am "Commit Message"
orgit add .
followed bygit commit -m "Commit Message"
) - Push your changes to the repo (git push origin new-feature)
- Create a pull request