Data & ReproBioinformatics & GenomicsFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-machine-learning-prediction-explanation

Maintainer FreedomIntelligence · Last updated April 1, 2026

Explain omics ML predictions with SHAP and feature importance.

OpenClawNanoClawAnalysisReproductionbio-machine-learning-prediction-explanation🧠 bioos extended suitebioos extended bioinformatics suiteexplain

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-machine-learning-prediction-explanation

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • shap_values = explainer(X_test).
  • print(f'SHAP values shape: {shap_values.values.shape}').

Source Doc

Excerpt From SKILL.md

SHAP TreeExplainer (v0.47+ API)

import shap
from sklearn.ensemble import RandomForestClassifier

model = RandomForestClassifier(n_estimators=100, random_state=42)
model.fit(X_train, y_train)

explainer = shap.TreeExplainer(model)

## Summary Plot (Global Feature Importance)

```python
import shap
import matplotlib.pyplot as plt

## Beeswarm plot: shows impact direction and magnitude

shap.plots.beeswarm(shap_values, max_display=20, show=False)
plt.tight_layout()
plt.savefig('shap_summary.png', dpi=150, bbox_inches='tight')
plt.close()

Use cases

  • Use bio-machine-learning-prediction-explanation for genomics and bioinformatics workflows.
  • Apply bio-machine-learning-prediction-explanation to sequencing, variant, or omics analysis tasks.

Not for

  • Do not rely on this catalog entry alone for installation or maintenance details.

Upstream Related Skills

  • machine-learning/omics-classifiers - Train models to interpret
  • machine-learning/biomarker-discovery - Compare with selection-based importance
  • data-visualization/heatmaps-clustering - Visualize SHAP values as heatmap

Related skills

Related skills

Back to directory
AG
Data & ReproBioinformatics & Genomics

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test w…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
AL
Data & ReproBioinformatics & Genomics

alpha-vantage

Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ technical indicators.

Claude CodeAnalysis
K-Dense-AI/claude-scientific-skillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-filtering

Filter alignments by flag, quality, region, or paired status.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-indexing

Index BAM/CRAM files with samtools index for random access.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView