Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 12,669 Bytes
970eef1 |
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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
import React, { useState, useEffect, useRef } from "react";
import { Box, Typography, CircularProgress, Alert, Paper } from "@mui/material";
import PlayArrowIcon from "@mui/icons-material/PlayArrow";
import AccessTimeIcon from "@mui/icons-material/AccessTime";
import LogDisplay from "./LogDisplay";
// Define all benchmark steps in sequence
const BENCHMARK_STEPS = [
"ingestion",
"upload_ingest_to_hub",
"summarization",
"chunking",
"single_shot_question_generation",
"multi_hop_question_generation",
"lighteval",
];
// Step labels for display (more user-friendly names)
const STEP_LABELS = {
ingestion: "Ingestion",
upload_ingest_to_hub: "Upload to Hub",
summarization: "Summarization",
chunking: "Chunking",
single_shot_question_generation: "Single-shot QG",
multi_hop_question_generation: "Multi-hop QG",
lighteval: "LightEval",
};
/**
* Component to handle benchmark generation and display logs
*
* @param {Object} props - Component props
* @param {string} props.sessionId - The session ID for the uploaded file
* @param {Function} props.onComplete - Function to call when generation is complete
* @returns {JSX.Element} Benchmark generator component
*/
const BenchmarkGenerator = ({ sessionId, onComplete }) => {
const [generating, setGenerating] = useState(false);
const [generationComplete, setGenerationComplete] = useState(false);
const [generationLogs, setGenerationLogs] = useState([]);
const [error, setError] = useState(null);
const [currentPhase, setCurrentPhase] = useState("initializing");
const [completedSteps, setCompletedSteps] = useState([]);
const [activeStep, setActiveStep] = useState(0);
const [elapsedTime, setElapsedTime] = useState(0);
// Reference to keep track of the polling interval
const pollingIntervalRef = useRef(null);
// Reference to keep track of the timer interval
const timerIntervalRef = useRef(null);
// Reference for starting time
const startTimeRef = useRef(null);
// Start generation on component mount
useEffect(() => {
// Set start time
startTimeRef.current = Date.now();
// Start timer
timerIntervalRef.current = setInterval(() => {
const timeElapsed = Math.floor(
(Date.now() - startTimeRef.current) / 1000
);
setElapsedTime(timeElapsed);
}, 1000);
generateBenchmark();
// Clean up the polling interval and timer when the component unmounts
return () => {
if (pollingIntervalRef.current) {
clearInterval(pollingIntervalRef.current);
}
if (timerIntervalRef.current) {
clearInterval(timerIntervalRef.current);
}
};
}, []);
// Determine the current phase and completed steps based on logs
useEffect(() => {
if (generationLogs.length === 0) return;
// Check all logs for completed stages
const newCompletedSteps = [...completedSteps];
let newActiveStep = activeStep;
generationLogs.forEach((log) => {
const match = log.match(/\[SUCCESS\] Stage completed: (\w+)/);
if (match && match[1]) {
const completedStep = match[1].trim();
if (
BENCHMARK_STEPS.includes(completedStep) &&
!newCompletedSteps.includes(completedStep)
) {
newCompletedSteps.push(completedStep);
// Set active step to the index of the next step
const stepIndex = BENCHMARK_STEPS.indexOf(completedStep);
if (stepIndex >= 0 && stepIndex + 1 > newActiveStep) {
newActiveStep = stepIndex + 1;
if (newActiveStep >= BENCHMARK_STEPS.length) {
newActiveStep = BENCHMARK_STEPS.length;
}
}
}
}
});
// Update state if there are new completed steps
if (newCompletedSteps.length > completedSteps.length) {
setCompletedSteps(newCompletedSteps);
setActiveStep(newActiveStep);
}
// Check the latest logs to determine the current phase
const recentLogs = generationLogs.slice(-10); // Check more logs
// Detect completion conditions
const isComplete =
recentLogs.some((log) =>
log.includes("[SUCCESS] Ingestion process completed successfully")
) ||
recentLogs.some((log) =>
log.includes(
"[SUCCESS] Configuration and ingestion completed successfully"
)
) ||
completedSteps.includes("lighteval") ||
newCompletedSteps.includes("lighteval");
if (isComplete) {
setCurrentPhase("complete");
setGenerationComplete(true);
// Stop polling when benchmark is complete
if (pollingIntervalRef.current) {
clearInterval(pollingIntervalRef.current);
}
// Notify parent component that generation is complete
if (onComplete) {
console.log("Notifying parent that generation is complete");
onComplete({
success: true,
sessionId,
logs: generationLogs,
});
}
} else if (
recentLogs.some((log) => log.includes("starting benchmark creation"))
) {
setCurrentPhase("benchmarking");
} else if (
recentLogs.some((log) => log.includes("Generating base configuration"))
) {
setCurrentPhase("configuring");
}
}, [generationLogs, completedSteps, activeStep, sessionId, onComplete]);
const generateBenchmark = async () => {
if (!sessionId) {
setError("Missing session ID");
return;
}
setGenerating(true);
setGenerationLogs([]);
setError(null);
setCurrentPhase("initializing");
setCompletedSteps([]);
setActiveStep(0);
try {
// Call the API to generate the benchmark
const response = await fetch("http://localhost:3001/generate-benchmark", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
session_id: sessionId,
}),
});
const result = await response.json();
if (response.ok) {
setGenerationLogs(result.logs || []);
// D'abord, on commence par interroger les logs de configuration
const pollConfigLogs = async () => {
try {
// Call the API to get the config logs
const configLogsResponse = await fetch(
`http://localhost:3001/config-logs/${sessionId}`
);
if (configLogsResponse.ok) {
const configLogsResult = await configLogsResponse.json();
// Update logs if there are new ones
if (
configLogsResult.logs &&
configLogsResult.logs.length > generationLogs.length
) {
setGenerationLogs(configLogsResult.logs);
}
// If config task is completed, switch to polling benchmark logs
if (configLogsResult.is_completed) {
// Attendre un court instant pour permettre au serveur de démarrer le benchmark
setTimeout(() => {
console.log(
"Configuration completed, switching to benchmark polling"
);
clearInterval(configPollingIntervalRef.current);
pollBenchmarkLogs();
}, 1000);
}
}
} catch (error) {
console.log("Error polling for config logs:", error);
// Don't stop polling on network errors
}
};
// Fonction pour interroger les logs du benchmark
const pollBenchmarkLogs = async () => {
// Set up polling for benchmark logs
pollingIntervalRef.current = setInterval(async () => {
// Check if we already completed
if (generationComplete) {
clearInterval(pollingIntervalRef.current);
return;
}
try {
// Call the API to get the latest benchmark logs
const logsResponse = await fetch(
`http://localhost:3001/benchmark-logs/${sessionId}`
);
if (logsResponse.ok) {
const logsResult = await logsResponse.json();
// Update logs if there are new ones
if (
logsResult.logs &&
logsResult.logs.length > generationLogs.length
) {
setGenerationLogs(logsResult.logs);
}
// Check if the task is completed
if (logsResult.is_completed) {
setGenerationComplete(true);
clearInterval(pollingIntervalRef.current);
// Notification is now handled in the useEffect above
}
}
} catch (error) {
console.log("Error polling for benchmark logs:", error);
// Don't stop polling on network errors
}
}, 3000); // Poll every 3 seconds
};
// Démarrer le polling des logs de configuration
const configPollingIntervalRef = { current: null };
configPollingIntervalRef.current = setInterval(pollConfigLogs, 1000); // Poll config logs more frequently (every second)
} else {
// Handle error
setGenerationLogs([`Error: ${result.error || "Unknown error"}`]);
setError(result.error || "Benchmark generation failed");
}
} catch (error) {
console.error("Error generating benchmark:", error);
setGenerationLogs([`Error: ${error.message || "Unknown error"}`]);
setError("Server connection error");
} finally {
setGenerating(false);
}
};
// Get title based on current phase
const getPhaseTitle = () => {
switch (currentPhase) {
case "initializing":
return "Benchmark generation...";
case "configuring":
return "Generating configuration file...";
case "benchmarking":
return "Creating benchmark...";
case "complete":
return "Benchmark generated successfully!";
default:
return "Processing...";
}
};
// Get the current step information for display
const getCurrentStepInfo = () => {
const totalSteps = BENCHMARK_STEPS.length;
const currentStepIndex = activeStep;
// If there's no active step yet
if (currentStepIndex === 0 && completedSteps.length === 0) {
return `Starting... (0%)`;
}
// If all steps are completed
if (currentStepIndex >= totalSteps) {
return `Complete (100%)`;
}
// Calculate percentage
const percentage = Math.round((currentStepIndex / totalSteps) * 100);
// Get current step name
const currentStepName =
STEP_LABELS[BENCHMARK_STEPS[currentStepIndex]] || "Processing";
return `${currentStepName} (${percentage}%)`;
};
// Format elapsed time in HH:MM:SS
const formatElapsedTime = () => {
const hours = Math.floor(elapsedTime / 3600);
const minutes = Math.floor((elapsedTime % 3600) / 60);
const seconds = elapsedTime % 60;
return [
hours.toString().padStart(2, "0"),
minutes.toString().padStart(2, "0"),
seconds.toString().padStart(2, "0"),
].join(":");
};
// If complete, stop the timer
useEffect(() => {
if (generationComplete && timerIntervalRef.current) {
clearInterval(timerIntervalRef.current);
}
}, [generationComplete]);
return (
<Paper
elevation={3}
sx={{
p: 4,
mt: 3,
mb: 3,
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
minHeight: 200,
}}
>
{error ? (
<Alert severity="error" sx={{ width: "100%" }}>
{error}
</Alert>
) : (
<>
<CircularProgress size={60} sx={{ mb: 2 }} />
<Typography variant="h6" component="div" gutterBottom>
{getPhaseTitle()}
</Typography>
{/* Step progress indicator */}
<Typography variant="body1" color="text.secondary">
{getCurrentStepInfo()}
</Typography>
{/* Timer display */}
<Box
sx={{
display: "flex",
alignItems: "center",
mt: 1,
color: "text.secondary",
}}
>
<Typography variant="body2" sx={{ opacity: 0.5 }}>
{formatElapsedTime()}
</Typography>
</Box>
</>
)}
{/* Use the LogDisplay component */}
<LogDisplay logs={generationLogs} height={300} />
</Paper>
);
};
export default BenchmarkGenerator;
|