disable text detection
This commit is contained in:
parent
5db40129b1
commit
3b8c80a22c
1 changed files with 7 additions and 6 deletions
|
@ -29,7 +29,7 @@ import { MAX_ML_SYNC_ERROR_COUNT } from 'constants/machineLearning/config';
|
|||
import FaceService from './faceService';
|
||||
import PeopleService from './peopleService';
|
||||
import ObjectService from './objectService';
|
||||
import TextService from './textService';
|
||||
// import TextService from './textService';
|
||||
class MachineLearningService {
|
||||
private initialized = false;
|
||||
// private faceDetectionService: FaceDetectionService;
|
||||
|
@ -384,6 +384,7 @@ class MachineLearningService {
|
|||
syncContext: MLSyncContext,
|
||||
enteFile: EnteFile,
|
||||
localFile?: globalThis.File,
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
textDetectionTimeoutIndex?: number
|
||||
) {
|
||||
const fileContext: MLSyncFileContext = { enteFile, localFile };
|
||||
|
@ -430,11 +431,11 @@ class MachineLearningService {
|
|||
syncContext,
|
||||
fileContext
|
||||
),
|
||||
TextService.syncFileTextDetections(
|
||||
syncContext,
|
||||
fileContext,
|
||||
textDetectionTimeoutIndex
|
||||
),
|
||||
// TextService.syncFileTextDetections(
|
||||
// syncContext,
|
||||
// fileContext,
|
||||
// textDetectionTimeoutIndex
|
||||
// ),
|
||||
]);
|
||||
newMlFile.errorCount = 0;
|
||||
newMlFile.lastErrorMessage = undefined;
|
||||
|
|
Loading…
Add table
Reference in a new issue