Spaces:
Sleeping
Sleeping
File size: 7,774 Bytes
4a0e21d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | import React, { useState } from "react";
import { apiClient, ExplanationResult, SpectrumData } from "../apiClient";
import "../static/style.css";
interface ExplainabilityPanelProps {
spectrumData: SpectrumData | null;
selectedModel: string;
modality: "raman" | "ftir";
onExplainabilityResult: (result: ExplanationResult) => void;
}
const ExplainabilityPanel: React.FC<ExplainabilityPanelProps> = ({
spectrumData,
selectedModel,
modality,
onExplainabilityResult,
}) => {
const [isLoading, setIsLoading] = useState(false);
const [explanation, setExplanation] = useState<ExplanationResult | null>(
null
);
const [error, setError] = useState<string | null>(null);
const analyzeWithExplanation = async () => {
if (!spectrumData) {
setError("No spectrum data is available for analysis.");
return;
}
setIsLoading(true);
setError(null);
try {
const result = await apiClient.explainSpectrum({
spectrum: spectrumData,
model_name: selectedModel,
modality: modality,
include_provenance: true, // Added the missing property
});
setExplanation(result);
onExplainabilityResult(result);
} catch (err) {
setError(
err instanceof Error
? err.message
: "An unknown error occurred during analysis."
);
} finally {
setIsLoading(false);
}
};
const renderFeatureImportance = () => {
if (!explanation?.feature_importance) return null;
const { feature_importance, prediction, class_labels } = explanation;
const {
method = "",
summary = {
max_importance: 0,
mean_importance: 0,
important_region_start: 0,
important_region_end: 0,
},
top_features = { indices: [], values: [] },
} = feature_importance;
// Combine indices and values, sort by importance, and take the top 10 for safe rendering
const topFeaturesData = top_features.indices
.map((index: number, i: number) => ({
index,
value: top_features.values[i],
}))
.sort((a, b) => b.value - a.value)
.slice(0, 10);
const maxImportance =
summary.max_importance > 0 ? summary.max_importance : 1;
return (
<div className="feature-importance-content">
<div className="importance-summary">
<div className="summary-item">
<label>Method:</label>
<span>{method.replace(/_/g, " ")}</span>
</div>
<div className="summary-item">
<label>Max Importance:</label>
<span>{summary.max_importance?.toFixed(4) ?? "N/A"}</span>
</div>
<div className="summary-item">
<label>Mean Importance:</label>
<span>{summary.mean_importance?.toFixed(4) ?? "N/A"}</span>
</div>
<div className="summary-item">
<label>Key Region:</label>
<span>
{summary.important_region_start} - {summary.important_region_end}
</span>
</div>
</div>
<h4 className="top-features-title">Top 10 Most Important Features</h4>
<div className="features-grid">
{topFeaturesData.map(({ index, value }) => (
<div key={index} className="feature-item">
<span className="feature-index">#{index}</span>
<div className="importance-bar">
<div
className="importance-fill"
style={{ width: `${(value / maxImportance) * 100}%` }}
/>
</div>
<span className="importance-value">{value.toFixed(3)}</span>
</div>
))}
</div>
<div className="interpretation-guide model-info__callout">
<h4>Interpretation Guide</h4>
<ul>
<li>
<strong>Feature Index:</strong> The position (wavenumber) in the
processed spectrum.
</li>
<li>
<strong>Importance Score:</strong> How much a feature contributed
to the final prediction.
</li>
<li>
High scores indicate features that strongly influenced the model's
decision towards **{class_labels[prediction]}**.
</li>
</ul>
</div>
</div>
);
};
const renderPredictionSummary = () => {
if (!explanation) return null;
const {
prediction,
confidence,
probabilities,
class_labels,
model_used,
spectrum_filename,
} = explanation;
const predictedClass = class_labels[prediction].toLowerCase();
const confidencePercent = (confidence * 100).toFixed(1);
return (
<div className="prediction-summary-content">
<div className={`prediction-badge ${predictedClass}`}>
{predictedClass.toUpperCase()}
</div>
<div className="confidence-score">{confidencePercent}% Confidence</div>
<div className="probability-breakdown">
{Object.entries(class_labels).map(([index, label]) => {
const numericIndex = Number(index);
return (
<div key={label} className="probability-item">
<span className="class-label">{label}</span>
<div className="probability-bar">
<div
className={`probability-fill ${label.toLowerCase()}`}
style={{ width: `${probabilities[numericIndex] * 100}%` }}
/>
</div>
<span className="probability-value">
{(probabilities[numericIndex] * 100).toFixed(1)}%
</span>
</div>
);
})}
</div>
<div className="model-info-footer">
<p>
Model: {model_used} | File: {spectrum_filename || "N/A"}
</p>
</div>
</div>
);
};
return (
<div className="explainability-panel">
<div className="card">
<div className="panel-header">
<h2 className="card__title">AI Explainability</h2>
<p className="card__subtitle">
Understand the "why" behind the model's prediction by identifying
which spectral features were most influential.
</p>
</div>
<div className="button-group">
<button
onClick={analyzeWithExplanation}
disabled={!spectrumData || isLoading}
className="btn btn--primary"
>
{isLoading ? "Analyzing..." : "Explain Prediction"}
</button>
</div>
</div>
{error && <div className="error-message">{error}</div>}
{explanation ? (
<div className="explanation-layout">
<div className="card">
<h3 className="card__title">Prediction Summary</h3>
{renderPredictionSummary()}
</div>
<div className="card">
<h3 className="card__title">Feature Importance</h3>
{renderFeatureImportance()}
</div>
</div>
) : (
!isLoading &&
!error && (
<div className="placeholder">
<p>
{spectrumData
? "Click 'Explain Prediction' to begin analysis."
: "Upload a spectrum on the 'Standard Analysis' tab to enable explainability."}
</p>
</div>
)
)}
</div>
);
};
export default ExplainabilityPanel;
|