()
| 9 | |
| 10 | |
| 11 | def test_plot_metrics(): |
| 12 | metrics = {"accuracy": 0.95, "precision": 0.92, "recall": 0.93, "f1_score": 0.94} |
| 13 | plot_metrics(metrics, show=False) |
| 14 | |
| 15 | |
| 16 | def test_plot_feature_importance(): |
nothing calls this directly
no test coverage detected