Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | export default function TrainingFailed() { return ( <div className="flex flex-col gap-3 text-center"> <h1>Training failed</h1> <p className="text-sm text-muted-foreground"> The last machine learning training attempt did not complete successfully. </p> <p className="text-sm text-muted-foreground"> Check the Tasks panel for error details, then update the training data or mappings before trying again. </p> </div> ); } |