Manav Rathi 1 год назад
Родитель
Сommit
2d13c1ebb5
1 измененных файлов с 7 добавлено и 1 удалено
  1. 7 1
      web/apps/photos/src/services/machineLearning/machineLearningService.ts

+ 7 - 1
web/apps/photos/src/services/machineLearning/machineLearningService.ts

@@ -166,13 +166,19 @@ class MachineLearningService {
             await this.syncFiles(syncContext);
             await this.syncFiles(syncContext);
         }
         }
 
 
+        // TODO-ML(MR): Forced disable clustering. It doesn't currently work,
+        // need to finalize it before we move out of beta.
+        //
+        // > Error: Failed to execute 'transferToImageBitmap' on
+        // > 'OffscreenCanvas': ImageBitmap construction failed
+        /*
         if (
         if (
             syncContext.outOfSyncFiles.length <= 0 ||
             syncContext.outOfSyncFiles.length <= 0 ||
-            // TODO-ML(MR): Forced disable.
             (syncContext.nSyncedFiles === batchSize && Math.random() < 0)
             (syncContext.nSyncedFiles === batchSize && Math.random() < 0)
         ) {
         ) {
             await this.syncIndex(syncContext);
             await this.syncIndex(syncContext);
         }
         }
+        */
 
 
         const mlSyncResult: MLSyncResult = {
         const mlSyncResult: MLSyncResult = {
             nOutOfSyncFiles: syncContext.outOfSyncFiles.length,
             nOutOfSyncFiles: syncContext.outOfSyncFiles.length,