Skip to content

Commit

Permalink
#1475 use all cores and change the eps to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hauck-jvsh committed Jan 15, 2023
1 parent 8ab574b commit fb26e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iped-app/resources/scripts/tasks/FaceRecognitionTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def finish(self):
if len(encodings)==0:
return

clt = DBSCAN(metric="euclidean")
clt = DBSCAN(metric="euclidean",n_jobs=-1,eps=0.3)
clt.fit(encodings)
clusters={}
print("labels",clt.labels_)
Expand Down

0 comments on commit fb26e06

Please sign in to comment.