Waiting for validation
Vous développez un nœud 'Code' pour filtrer des prédictions ML. Quel est le problème dans ce script ?
// Filtrage des prédictions à haute confiance
const highConfidence = [];
for (const item of items) {
if (item.json.confidence > 0.9) {
highConfidence.push(item.json);
}
}
return highConfidence;
Author: WeLoveDevsStatus: Waiting for validationQuestion not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!