diff --git a/mobile/lib/services/machine_learning/ml_indexing_isolate.dart b/mobile/lib/services/machine_learning/ml_indexing_isolate.dart index fa435ac0eb..481dc7915c 100644 --- a/mobile/lib/services/machine_learning/ml_indexing_isolate.dart +++ b/mobile/lib/services/machine_learning/ml_indexing_isolate.dart @@ -190,7 +190,7 @@ class MLIndexingIsolate { Future analyzeImage( FileMLInstruction instruction, ) async { - final String filePath = await getImagePathForML(instruction.enteFile); + final String filePath = await getImagePathForML(instruction.file); final Stopwatch stopwatch = Stopwatch()..start(); late MLResult result; @@ -200,7 +200,7 @@ class MLIndexingIsolate { ( MLIndexingOperation.analyzeImage, { - "enteFileID": instruction.enteFile.uploadedFileID ?? -1, + "enteFileID": instruction.file.uploadedFileID ?? -1, "filePath": filePath, "runFaces": instruction.shouldRunFaces, "runClip": instruction.shouldRunClip, @@ -221,21 +221,21 @@ class MLIndexingIsolate { result = MLResult.fromJsonString(resultJsonString); } catch (e, s) { _logger.severe( - "Could not analyze image with ID ${instruction.enteFile.uploadedFileID} \n", + "Could not analyze image with ID ${instruction.file.uploadedFileID} \n", e, s, ); debugPrint( - "This image with ID ${instruction.enteFile.uploadedFileID} has name ${instruction.enteFile.displayName}.", + "This image with ID ${instruction.file.uploadedFileID} has name ${instruction.file.displayName}.", ); final resultBuilder = - MLResult.fromEnteFileID(instruction.enteFile.uploadedFileID!) + MLResult.fromEnteFileID(instruction.file.uploadedFileID!) ..errorOccurred(); return resultBuilder; } stopwatch.stop(); _logger.info( - "Finished Analyze image with uploadedFileID ${instruction.enteFile.uploadedFileID}, in " + "Finished Analyze image with uploadedFileID ${instruction.file.uploadedFileID}, in " "${stopwatch.elapsedMilliseconds} ms (including time waiting for inference engine availability)", ); diff --git a/mobile/lib/utils/ml_util.dart b/mobile/lib/utils/ml_util.dart index e32ffaeb81..dfc18121a5 100644 --- a/mobile/lib/utils/ml_util.dart +++ b/mobile/lib/utils/ml_util.dart @@ -14,6 +14,7 @@ import "package:photos/models/file/file.dart"; import "package:photos/models/file/file_type.dart"; import "package:photos/models/ml/ml_versions.dart"; import "package:photos/services/machine_learning/face_ml/face_recognition_service.dart"; +import "package:photos/services/machine_learning/file_ml/file_ml.dart"; import "package:photos/services/machine_learning/ml_exceptions.dart"; import "package:photos/services/machine_learning/ml_result.dart"; import "package:photos/services/machine_learning/semantic_search/semantic_search_service.dart";