ente/mobile/lib/models/ml/ml_versions.dart
2024-08-28 11:08:18 +02:00

11 lines
267 B
Dart

import "dart:io" show Platform;
const faceMlVersion = 1;
const clipMlVersion = 1;
const clusterMlVersion = 1;
const minimumClusterSize = 2;
const embeddingFetchLimit = 200;
final fileDownloadMlLimit = Platform.isIOS ? 5 : 10;
const maxFileDownloadSize = 100000000;