5 issues detected
Performance 4
Robustness 1

We found some data slices in your dataset on which your model performance is lower than average. Performance bias may happen for different reasons:

  • Not enough examples in the low-performing data slice in the training set
  • Wrong labels in the training set in the low-performing data slice
  • Drift between your training set and test set

To learn more about causes and solutions, check our guide on performance bias.

Issues

4 medium
`text` contains "movie" Precision = 0.837 (Global = 0.918) -8.81% than global 95 samples affected
(10.9% of dataset)
Show details
`text_length(text)` < 82.500 AND `text_length(text)` >= 73.500 Recall = 0.870 (Global = 0.935) -6.97% than global 45 samples affected
(5.2% of dataset)
Show details
`text_length(text)` >= 165.500 AND `text_length(text)` < 183.500 Recall = 0.872 (Global = 0.935) -6.73% than global 61 samples affected
(7.0% of dataset)
Show details
`text_length(text)` < 98.500 AND `text_length(text)` >= 86.500 Precision = 0.861 (Global = 0.918) -6.21% than global 76 samples affected
(8.7% of dataset)
Show details

Debug your issues in the Giskard hub

Install the Giskard hub app to:

  • Debug and diagnose your scan issues
  • Save your scan result as a re-executable test suite to benchmark your model
  • Extend your test suite with our catalog of ready-to-use tests

You can find installation instructions here.

from giskard import GiskardClient

# Create a test suite from your scan results
test_suite = results.generate_test_suite("My first test suite")

# Upload your test suite to your Giskard hub instance
client = GiskardClient("http://localhost:19000", "GISKARD_API_KEY")
client.create_project("my_project_id", "my_project_name")
test_suite.upload(client, "my_project_id")