ente/mobile/lib/services/object_detection/models/recognition.dart
2024-03-01 12:25:37 +05:30

19 lines
370 B
Dart

/// Represents the recognition output from the model
class Recognition {
/// Index of the result
final int id;
/// Label of the result
final String label;
/// Confidence [0.0, 1.0]
final double score;
Recognition(this.id, this.label, this.score);
@override
String toString() {
return 'Recognition(id: $id, label: $label, score: $score)';
}
}