This commit is contained in:
Manav Rathi 2024-05-16 11:10:41 +05:30
parent 2c0e8c76c3
commit cfbd7806c8
No known key found for this signature in database
2 changed files with 7 additions and 10 deletions

View file

@ -245,12 +245,9 @@ class FaceService {
) {
// await this.init();
const clusteringConfig = DEFAULT_ML_SYNC_CONFIG.faceClustering;
if (!allFaces || allFaces.length < clusteringConfig.minInputSize) {
if (!allFaces || allFaces.length < 50) {
log.info(
"[MLService] Too few faces to cluster, not running clustering: ",
allFaces.length,
`Skipping clustering since number of faces (${allFaces.length}) is less than the clustering threshold (50)`,
);
return;
}

View file

@ -26,11 +26,11 @@ class HdbscanClusteringService implements ClusteringService {
const hdbscan = new Hdbscan({
input,
minClusterSize: config.minClusterSize,
minSamples: config.minSamples,
clusterSelectionEpsilon: config.clusterSelectionEpsilon,
clusterSelectionMethod: config.clusterSelectionMethod,
debug: config.generateDebugInfo,
minClusterSize: 3,
minSamples: 5,
clusterSelectionEpsilon: 0.6,
clusterSelectionMethod: "leaf",
debug: true,
});
return {