Mercurial > repos > goeckslab > multimodal_learner
view feature_importance.py @ 3:25bb80df7c0c draft default tip
planemo upload for repository https://github.com/goeckslab/gleam.git commit f0daa5846b336584c708d88f6d7f1b5ee8dc3093
| author | goeckslab |
|---|---|
| date | Sat, 17 Jan 2026 22:53:42 +0000 |
| parents | 375c36923da1 |
| children |
line wrap: on
line source
"""Feature importance visualization utilities.""" import pandas as pd def build_feature_importance_html(predictor, df_train: pd.DataFrame, label_column: str) -> str: """Feature importance is not currently available for the MultiModal workflow.""" return ( "<p><em>Feature importance visualization is not supported for the current " "MultiModal workflow.</em></p>" )
