01.03 DeepFace ~顔照合モデル評価1~

今回は前回実施した顔照合メソッドを使用して、全てのモデル・バックエンド・類似度・正規化の組み合わせを試した結果を公開します。

【注意点】
全モデル事前調査で必要なモジュールや変更点が確認されています。実施される方はインストールしておいてください。

【インストールが必要になるモジュール】
 ・ pip install opencv-python
 ・ pip install deepface
 ・ pip install tensorflow==2.12.0
 ・ pip3 install mecab-python3
 ・ pip install psutil
 ・ pip install dlib
 ・ pip install ultralytics
 ・ pip install facenet-pytorch
 ・ pip install mediapipe

要注意事項として、前回tensorflowバージョン「2.15.0」にしたばかりですか、モデル「DeepFace」のみtensorflowバージョン「2.12.0」を使用します。このためダウングレードの必要がありますが、比較後モデル「DeepFace」の評価値が低いようならバージョンを「2.15.0」に戻すことをお勧めします。

仮想環境 py36 py39
python 3.6.10 3.9.18
deepface 0.0.75 0.0.86
tensorflow 1.14.0 2.12.0


【バックYOLO8のインストール】
通常、インストールされていないモジュールやバックエンドは「dlib」のように、実行時にエラーになりますが、バックエンド「YOLO8」はエラーなしで中断しました。そこで色々試した結果、最初にバックエンド宣言を「YOLO8」から開始、もしくは「YOLO8」だけにして起動します。

    backends = [
    # 'opencv',
    # 'ssd',
    # 'dlib',
    # 'mtcnn',
    # 'retinaface',
    # 'mediapipe',
    'yolov8',
    'yunet',
    'fastmtcnn'
    ]

そうすると、自動でインストールが開始されることがわかりました。


【サンプルプログラム】
では、実際にサンプルプログラムで実施してみましょう。

【DF_FaceVerification_test03A.py】
#coding: utf-8
# ////////////////////////////////////////////////////////////////////////////
# ///【DeepFace・顔認証(Facial Verification)】
# ////////////////////////////////////////////////////////////////////////////
if "__file__" in globals():
    import os, sys
    sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
    sys.path.append(os.path.join(os.path.dirname(__file__), "..") + "//..//")
os.environ['TF_ENABLE_ONEDNN_OPTS'] = '0'
from DeZero.common.nlp_util import *
import cv2
from deepface import DeepFace
tensorflow_warning_cancel()

if __name__ == "__main__":
    img1_path = "c:\\Photo\\aragaki.jpg"
    img2_path = "c:\\Photo\\aragaki-2.jpg"

    # /// 顔認識モデル(models)
    # ////////////////////////////////////////////////////////////////////////////
    models = [
      "VGG-Face",
      "Facenet",
      "Facenet512",
      "OpenFace",
      "DeepFace",
      "DeepID",
      "ArcFace",
      "Dlib",
      "SFace",
    ]

    # /// バックエンド(backends)
    # ////////////////////////////////////////////////////////////////////////////
    backends = [
      'opencv',
      'ssd',
      'dlib',
      'mtcnn',
      'retinaface',
      'mediapipe',
      'yolov8',
      'yunet',
      'fastmtcnn'
    ]

    # /// 類似度(metrics)
    # ////////////////////////////////////////////////////////////////////////////
    metrics = ["cosine", "euclidean", "euclidean_l2"]

    # /// 正規化(normalizations)
    # ////////////////////////////////////////////////////////////////////////////
    normalizations = ["base", "raw", "Facenet", "Facenet2018", "VGGFace", "VGGFace2", "ArcFace"]

    for model  in models:
        for backend  in backends:
            for metric  in metrics:
                for normalization  in normalizations:
                    print("\n",model,",",backend,",",metric,",",normalization,",",end="")
                    # /// 顔比較(face verification) tensorflow=2.16.1(失敗)→2.15.0
                    # ////////////////////////////////////////////////////////////////////////////
                    verification = DeepFace.verify(
                        img1_path=img1_path,                        # img1_path: Union[str, np.ndarray, List[float]]
                        img2_path=img2_path,                        # img2_path: Union[str, np.ndarray, List[float]]
                        model_name=model,                           # model_name: str = "VGG-Face"
                        detector_backend = backend,                 # detector_backend: str = "opencv"
                        distance_metric=metric,                     # distance_metric: str = "cosine"
                        enforce_detection=False,                    # enforce_detection: bool = True
                        align=True,                                 # align: bool = True
                        expand_percentage= 0,                       # expand_percentage: int = 0
                        normalization=normalization,                # normalization: str = "base"
                        silent=False                                # silent: bool = False
                    )
                    print(verification['verified'],",",verification['time'],",",verification['distance'],",",verification['threshold'],",",verification['facial_areas'])

★ サンプルプログラム実施結果 1

今回使用する評価写真は2パターン用意しています。

ケース1(レベル1) :
【ポイント】
・ 写真サイズが異なります
・ 髪型のみ違うパターンです



サンプルプログラムを起動すると、不足モジュールをダウンロードしながら継続されていきます。GPU使用処理時間が少ないのかフルパワーで使用することがないので、CPUだけと大差はありませんでした。
次に、バックエンド「mtcnn」使用時に毎回進捗表示が表示されます。

# [result]
#  VGG-Face , opencv , cosine , base ,True , 2.86 , 0.6333374542244692 , 0.68 , {'img1': {'x': 102, 'y': 75, 'w': 276, 'h': 276, 'left_eye': (86, 100), 'right_eye': (187, 101)}, 'img2': {'x': 151, 'y': 118, 'w': 447, 'h': 447, 'left_eye': (147, 180), 'right_eye': (294, 173)}}
#  VGG-Face , opencv , cosine , raw ,True , 0.42 , 0.6333375914804695 , 0.68 , {'img1': {'x': 102, 'y': 75, 'w': 276, 'h': 276, 'left_eye': (86, 100), 'right_eye': (187, 101)}, 'img2': {'x': 151, 'y': 118, 'w': 447, 'h': 447, 'left_eye': (147, 180), 'right_eye': (294, 173)}}

<中略>

# VGG-Face , mtcnn , cosine , base ,
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 111ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 72ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 16ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 19ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 13ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/3 [=========>....................] - ETA: 0s
# 3/3 [==============================] - 0s 4ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 94ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 32ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 28ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 21ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 19ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 17ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 17ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 16ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 15ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 14ms/step
# 1/6 [====>.........................] - ETA: 0s
# 6/6 [==============================] - 0s 4ms/step
# 1/1 [==============================] - ETA: 0s
# 1/1 [==============================] - 0s 18ms/step
# True , 2.37 , 0.5685267811552565 , 0.68 , {'img1': {'x': 125, 'y': 75, 'w': 227, 'h': 289, 'left_eye': (188, 174), 'right_eye': (293, 175)}, 'img2': {'x': 198, 'y': 116, 'w': 335, 'h': 439, 'left_eye': (298, 299), 'right_eye': (449, 290)}}


【結果】
全てのケースは次ようになりました。

・ result (dict): 以下のキーを持つ検証結果を含む辞書。
    - 'verified' (bool): 画像が同一人物かの判定結果
        同一(True)または別の人(False)。

    - 'time' (浮動小数点数): 検証プロセスにかかった時間(秒単位)。

    - 'distance' (float): 面ベクトル間の距離の尺度。
    距離が短いほど、類似度が高いことを示します。

    - 'threshold' (float): 検証に使用される最大しきい値。
    距離がこの閾値を下回る場合、画像は一致と見なされます。

    - 'facial_areas' (dict): 両方の画像の顔の矩形の関心領域。

    - 'img1':{'x':int 最初のイメージの関心領域。


【DF_FaceVerification_test03A】
model backend metric normalization verified time distance threshold img1_x left_eye
VGG-Face opencv cosine base TRUE 2.86 0.63 0.68 102 86
VGG-Face opencv cosine raw TRUE 0.42 0.63 0.68 102 86
VGG-Face opencv cosine Facenet TRUE 0.41 0.59 0.68 102 86
VGG-Face opencv cosine Facenet2018 TRUE 0.42 0.59 0.68 102 86
VGG-Face opencv cosine VGGFace TRUE 0.42 0.61 0.68 102 86
VGG-Face opencv cosine VGGFace2 TRUE 0.42 0.61 0.68 102 86
VGG-Face opencv cosine ArcFace TRUE 0.42 0.59 0.68 102 86
VGG-Face opencv euclidean base TRUE 0.41 1.13 1.17 102 86
VGG-Face opencv euclidean raw TRUE 0.41 1.13 1.17 102 86
VGG-Face opencv euclidean Facenet TRUE 0.41 1.08 1.17 102 86
VGG-Face opencv euclidean Facenet2018 TRUE 0.41 1.09 1.17 102 86
VGG-Face opencv euclidean VGGFace TRUE 0.42 1.10 1.17 102 86
VGG-Face opencv euclidean VGGFace2 TRUE 0.41 1.10 1.17 102 86
VGG-Face opencv euclidean ArcFace TRUE 0.42 1.09 1.17 102 86
VGG-Face opencv euclidean_l2 base TRUE 0.42 1.13 1.17 102 86
VGG-Face opencv euclidean_l2 raw TRUE 0.41 1.13 1.17 102 86
VGG-Face opencv euclidean_l2 Facenet TRUE 0.41 1.08 1.17 102 86
VGG-Face opencv euclidean_l2 Facenet2018 TRUE 0.45 1.09 1.17 102 86
VGG-Face opencv euclidean_l2 VGGFace TRUE 0.45 1.10 1.17 102 86
VGG-Face opencv euclidean_l2 VGGFace2 TRUE 0.43 1.10 1.17 102 86
VGG-Face opencv euclidean_l2 ArcFace TRUE 0.44 1.09 1.17 102 86
VGG-Face ssd cosine base TRUE 0.87 0.43 0.68 283 None
VGG-Face ssd cosine raw TRUE 0.76 0.43 0.68 283 None
VGG-Face ssd cosine Facenet TRUE 0.73 0.52 0.68 283 None
VGG-Face ssd cosine Facenet2018 TRUE 0.87 0.47 0.68 283 None
VGG-Face ssd cosine VGGFace TRUE 0.73 0.51 0.68 283 None
VGG-Face ssd cosine VGGFace2 TRUE 0.76 0.51 0.68 283 None
VGG-Face ssd cosine ArcFace TRUE 0.77 0.47 0.68 283 None
VGG-Face ssd euclidean base TRUE 0.73 0.93 1.17 283 None
VGG-Face ssd euclidean raw TRUE 0.73 0.93 1.17 283 None
VGG-Face ssd euclidean Facenet TRUE 0.74 1.02 1.17 283 None
VGG-Face ssd euclidean Facenet2018 TRUE 0.72 0.97 1.17 283 None
VGG-Face ssd euclidean VGGFace TRUE 0.78 1.01 1.17 283 None
VGG-Face ssd euclidean VGGFace2 TRUE 0.71 1.01 1.17 283 None
VGG-Face ssd euclidean ArcFace TRUE 0.72 0.97 1.17 283 None
VGG-Face ssd euclidean_l2 base TRUE 0.76 0.93 1.17 283 None
VGG-Face ssd euclidean_l2 raw TRUE 0.76 0.93 1.17 283 None
VGG-Face ssd euclidean_l2 Facenet TRUE 0.76 1.02 1.17 283 None
VGG-Face ssd euclidean_l2 Facenet2018 TRUE 0.89 0.97 1.17 283 None
VGG-Face ssd euclidean_l2 VGGFace TRUE 0.80 1.01 1.17 283 None
VGG-Face ssd euclidean_l2 VGGFace2 TRUE 0.80 1.01 1.17 283 None
VGG-Face ssd euclidean_l2 ArcFace TRUE 0.73 0.97 1.17 283 None
VGG-Face dlib cosine base TRUE 1.03 0.47 0.68 117 168
VGG-Face dlib cosine raw TRUE 0.74 0.47 0.68 117 168
VGG-Face dlib cosine Facenet TRUE 0.68 0.48 0.68 117 168
VGG-Face dlib cosine Facenet2018 TRUE 0.70 0.44 0.68 117 168
VGG-Face dlib cosine VGGFace TRUE 0.69 0.47 0.68 117 168
VGG-Face dlib cosine VGGFace2 TRUE 0.71 0.47 0.68 117 168
VGG-Face dlib cosine ArcFace TRUE 0.72 0.44 0.68 117 168
VGG-Face dlib euclidean base TRUE 0.69 0.97 1.17 117 168
VGG-Face dlib euclidean raw TRUE 0.70 0.97 1.17 117 168
VGG-Face dlib euclidean Facenet TRUE 0.71 0.98 1.17 117 168
VGG-Face dlib euclidean Facenet2018 TRUE 0.69 0.94 1.17 117 168
VGG-Face dlib euclidean VGGFace TRUE 0.74 0.97 1.17 117 168
VGG-Face dlib euclidean VGGFace2 TRUE 0.78 0.97 1.17 117 168
VGG-Face dlib euclidean ArcFace TRUE 0.70 0.94 1.17 117 168
VGG-Face dlib euclidean_l2 base TRUE 0.75 0.97 1.17 117 168
VGG-Face dlib euclidean_l2 raw TRUE 0.77 0.97 1.17 117 168
VGG-Face dlib euclidean_l2 Facenet TRUE 0.76 0.98 1.17 117 168
VGG-Face dlib euclidean_l2 Facenet2018 TRUE 0.71 0.94 1.17 117 168
VGG-Face dlib euclidean_l2 VGGFace TRUE 0.76 0.97 1.17 117 168
VGG-Face dlib euclidean_l2 VGGFace2 TRUE 0.75 0.97 1.17 117 168
VGG-Face dlib euclidean_l2 ArcFace TRUE 0.70 0.94 1.17 117 168
VGG-Face mtcnn cosine base TRUE 2.37 0.57 0.68 125 188
VGG-Face mtcnn cosine raw TRUE 1.59 0.57 0.68 125 188
VGG-Face mtcnn cosine Facenet TRUE 1.60 0.53 0.68 125 188
VGG-Face mtcnn cosine Facenet2018 TRUE 1.62 0.53 0.68 125 188
VGG-Face mtcnn cosine VGGFace TRUE 1.72 0.55 0.68 125 188
VGG-Face mtcnn cosine VGGFace2 TRUE 1.67 0.55 0.68 125 188
VGG-Face mtcnn cosine ArcFace TRUE 1.66 0.53 0.68 125 188
VGG-Face mtcnn euclidean base TRUE 1.65 1.07 1.17 125 188
VGG-Face mtcnn euclidean raw TRUE 1.69 1.07 1.17 125 188
VGG-Face mtcnn euclidean Facenet TRUE 1.61 1.03 1.17 125 188
VGG-Face mtcnn euclidean Facenet2018 TRUE 1.72 1.03 1.17 125 188
VGG-Face mtcnn euclidean VGGFace TRUE 1.67 1.05 1.17 125 188
VGG-Face mtcnn euclidean VGGFace2 TRUE 1.58 1.05 1.17 125 188
VGG-Face mtcnn euclidean ArcFace TRUE 1.60 1.03 1.17 125 188
VGG-Face mtcnn euclidean_l2 base TRUE 1.69 1.07 1.17 125 188
VGG-Face mtcnn euclidean_l2 raw TRUE 1.73 1.07 1.17 125 188
VGG-Face mtcnn euclidean_l2 Facenet TRUE 1.74 1.03 1.17 125 188
VGG-Face mtcnn euclidean_l2 Facenet2018 TRUE 1.65 1.03 1.17 125 188
VGG-Face mtcnn euclidean_l2 VGGFace TRUE 1.68 1.05 1.17 125 188
VGG-Face mtcnn euclidean_l2 VGGFace2 TRUE 1.69 1.05 1.17 125 188
VGG-Face mtcnn euclidean_l2 ArcFace TRUE 1.72 1.03 1.17 125 188
VGG-Face retinaface cosine base TRUE 5.32 0.60 0.68 133 189
VGG-Face retinaface cosine raw TRUE 2.24 0.60 0.68 133 189
VGG-Face retinaface cosine Facenet TRUE 2.30 0.58 0.68 133 189
VGG-Face retinaface cosine Facenet2018 TRUE 2.30 0.58 0.68 133 189
VGG-Face retinaface cosine VGGFace TRUE 2.30 0.59 0.68 133 189
VGG-Face retinaface cosine VGGFace2 TRUE 2.31 0.59 0.68 133 189
VGG-Face retinaface cosine ArcFace TRUE 2.30 0.58 0.68 133 189
VGG-Face retinaface euclidean base TRUE 2.28 1.09 1.17 133 189
VGG-Face retinaface euclidean raw TRUE 2.28 1.09 1.17 133 189
VGG-Face retinaface euclidean Facenet TRUE 2.31 1.08 1.17 133 189
VGG-Face retinaface euclidean Facenet2018 TRUE 2.29 1.08 1.17 133 189
VGG-Face retinaface euclidean VGGFace TRUE 2.35 1.09 1.17 133 189
VGG-Face retinaface euclidean VGGFace2 TRUE 2.30 1.08 1.17 133 189
VGG-Face retinaface euclidean ArcFace TRUE 2.31 1.08 1.17 133 189
VGG-Face retinaface euclidean_l2 base TRUE 2.30 1.09 1.17 133 189
VGG-Face retinaface euclidean_l2 raw TRUE 2.30 1.09 1.17 133 189
VGG-Face retinaface euclidean_l2 Facenet TRUE 2.30 1.08 1.17 133 189
VGG-Face retinaface euclidean_l2 Facenet2018 TRUE 2.31 1.08 1.17 133 189
VGG-Face retinaface euclidean_l2 VGGFace TRUE 2.29 1.09 1.17 133 189
VGG-Face retinaface euclidean_l2 VGGFace2 TRUE 2.30 1.08 1.17 133 189
VGG-Face retinaface euclidean_l2 ArcFace TRUE 2.28 1.08 1.17 133 189
VGG-Face mediapipe cosine base TRUE 1.12 0.48 0.68 117 187
VGG-Face mediapipe cosine raw TRUE 0.30 0.48 0.68 117 187
VGG-Face mediapipe cosine Facenet TRUE 0.31 0.49 0.68 117 187
VGG-Face mediapipe cosine Facenet2018 TRUE 0.30 0.47 0.68 117 187
VGG-Face mediapipe cosine VGGFace TRUE 0.30 0.49 0.68 117 187
VGG-Face mediapipe cosine VGGFace2 TRUE 0.30 0.50 0.68 117 187
VGG-Face mediapipe cosine ArcFace TRUE 0.30 0.47 0.68 117 187
VGG-Face mediapipe euclidean base TRUE 0.30 0.98 1.17 117 187
VGG-Face mediapipe euclidean raw TRUE 0.30 0.98 1.17 117 187
VGG-Face mediapipe euclidean Facenet TRUE 0.30 0.99 1.17 117 187
VGG-Face mediapipe euclidean Facenet2018 TRUE 0.30 0.97 1.17 117 187
VGG-Face mediapipe euclidean VGGFace TRUE 0.30 0.99 1.17 117 187
VGG-Face mediapipe euclidean VGGFace2 TRUE 0.31 1.00 1.17 117 187
VGG-Face mediapipe euclidean ArcFace TRUE 0.30 0.97 1.17 117 187
VGG-Face mediapipe euclidean_l2 base TRUE 0.30 0.98 1.17 117 187
VGG-Face mediapipe euclidean_l2 raw TRUE 0.30 0.98 1.17 117 187
VGG-Face mediapipe euclidean_l2 Facenet TRUE 0.30 0.99 1.17 117 187
VGG-Face mediapipe euclidean_l2 Facenet2018 TRUE 0.31 0.97 1.17 117 187
VGG-Face mediapipe euclidean_l2 VGGFace TRUE 0.31 0.99 1.17 117 187
VGG-Face mediapipe euclidean_l2 VGGFace2 TRUE 0.31 1.00 1.17 117 187
VGG-Face mediapipe euclidean_l2 ArcFace TRUE 0.30 0.97 1.17 117 187
VGG-Face yolov8 cosine base TRUE 4.98 0.59 0.68 131 187
VGG-Face yolov8 cosine raw TRUE 0.44 0.59 0.68 131 187
VGG-Face yolov8 cosine Facenet TRUE 0.45 0.57 0.68 131 187
VGG-Face yolov8 cosine Facenet2018 TRUE 0.43 0.55 0.68 131 187
VGG-Face yolov8 cosine VGGFace TRUE 0.46 0.57 0.68 131 187
VGG-Face yolov8 cosine VGGFace2 TRUE 0.44 0.57 0.68 131 187
VGG-Face yolov8 cosine ArcFace TRUE 0.44 0.55 0.68 131 187
VGG-Face yolov8 euclidean base TRUE 0.45 1.09 1.17 131 187
VGG-Face yolov8 euclidean raw TRUE 0.45 1.09 1.17 131 187
VGG-Face yolov8 euclidean Facenet TRUE 0.45 1.07 1.17 131 187
VGG-Face yolov8 euclidean Facenet2018 TRUE 0.43 1.05 1.17 131 187
VGG-Face yolov8 euclidean VGGFace TRUE 0.43 1.07 1.17 131 187
VGG-Face yolov8 euclidean VGGFace2 TRUE 0.44 1.07 1.17 131 187
VGG-Face yolov8 euclidean ArcFace TRUE 0.44 1.05 1.17 131 187
VGG-Face yolov8 euclidean_l2 base TRUE 0.45 1.09 1.17 131 187
VGG-Face yolov8 euclidean_l2 raw TRUE 0.43 1.09 1.17 131 187
VGG-Face yolov8 euclidean_l2 Facenet TRUE 0.44 1.07 1.17 131 187
VGG-Face yolov8 euclidean_l2 Facenet2018 TRUE 0.45 1.05 1.17 131 187
VGG-Face yolov8 euclidean_l2 VGGFace TRUE 0.47 1.07 1.17 131 187
VGG-Face yolov8 euclidean_l2 VGGFace2 TRUE 0.45 1.07 1.17 131 187
VGG-Face yolov8 euclidean_l2 ArcFace TRUE 0.45 1.05 1.17 131 187
VGG-Face yunet cosine base TRUE 0.35 0.61 0.68 125 183
VGG-Face yunet cosine raw TRUE 0.37 0.61 0.68 125 183
VGG-Face yunet cosine Facenet TRUE 0.36 0.55 0.68 125 183
VGG-Face yunet cosine Facenet2018 TRUE 0.36 0.54 0.68 125 183
VGG-Face yunet cosine VGGFace TRUE 0.35 0.57 0.68 125 183
VGG-Face yunet cosine VGGFace2 TRUE 0.35 0.57 0.68 125 183
VGG-Face yunet cosine ArcFace TRUE 0.36 0.54 0.68 125 183
VGG-Face yunet euclidean base TRUE 0.36 1.10 1.17 125 183
VGG-Face yunet euclidean raw TRUE 0.35 1.10 1.17 125 183
VGG-Face yunet euclidean Facenet TRUE 0.36 1.05 1.17 125 183
VGG-Face yunet euclidean Facenet2018 TRUE 0.36 1.04 1.17 125 183
VGG-Face yunet euclidean VGGFace TRUE 0.36 1.07 1.17 125 183
VGG-Face yunet euclidean VGGFace2 TRUE 0.36 1.07 1.17 125 183
VGG-Face yunet euclidean ArcFace TRUE 0.36 1.04 1.17 125 183
VGG-Face yunet euclidean_l2 base TRUE 0.36 1.10 1.17 125 183
VGG-Face yunet euclidean_l2 raw TRUE 0.37 1.10 1.17 125 183
VGG-Face yunet euclidean_l2 Facenet TRUE 0.36 1.05 1.17 125 183
VGG-Face yunet euclidean_l2 Facenet2018 TRUE 0.36 1.04 1.17 125 183
VGG-Face yunet euclidean_l2 VGGFace TRUE 0.35 1.07 1.17 125 183
VGG-Face yunet euclidean_l2 VGGFace2 TRUE 0.36 1.07 1.17 125 183
VGG-Face yunet euclidean_l2 ArcFace TRUE 0.36 1.04 1.17 125 183
VGG-Face fastmtcnn cosine base TRUE 0.46 0.59 0.68 125 189
VGG-Face fastmtcnn cosine raw TRUE 0.43 0.59 0.68 125 189
VGG-Face fastmtcnn cosine Facenet TRUE 0.43 0.58 0.68 125 189
VGG-Face fastmtcnn cosine Facenet2018 TRUE 0.43 0.57 0.68 125 189
VGG-Face fastmtcnn cosine VGGFace TRUE 0.41 0.59 0.68 125 189
VGG-Face fastmtcnn cosine VGGFace2 TRUE 0.43 0.60 0.68 125 189
VGG-Face fastmtcnn cosine ArcFace TRUE 0.43 0.57 0.68 125 189
VGG-Face fastmtcnn euclidean base TRUE 0.41 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean raw TRUE 0.42 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean Facenet TRUE 0.42 1.07 1.17 125 189
VGG-Face fastmtcnn euclidean Facenet2018 TRUE 0.43 1.07 1.17 125 189
VGG-Face fastmtcnn euclidean VGGFace TRUE 0.42 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean VGGFace2 TRUE 0.41 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean ArcFace TRUE 0.42 1.07 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 base TRUE 0.43 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 raw TRUE 0.42 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 Facenet TRUE 0.43 1.07 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 Facenet2018 TRUE 0.43 1.07 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 VGGFace TRUE 0.42 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 VGGFace2 TRUE 0.43 1.09 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 ArcFace TRUE 0.42 1.07 1.17 125 189
Facenet opencv cosine base TRUE 3.03 0.33 0.40 102 86
Facenet opencv cosine raw TRUE 0.86 0.09 0.40 102 86
Facenet opencv cosine Facenet TRUE 0.86 0.31 0.40 102 86
Facenet opencv cosine Facenet2018 TRUE 0.86 0.30 0.40 102 86
Facenet opencv cosine VGGFace TRUE 0.86 0.10 0.40 102 86
Facenet opencv cosine VGGFace2 TRUE 0.87 0.10 0.40 102 86
Facenet opencv cosine ArcFace TRUE 0.86 0.30 0.40 102 86
Facenet opencv euclidean base TRUE 0.87 8.77 10.00 102 86
Facenet opencv euclidean raw TRUE 0.86 7.82 10.00 102 86
Facenet opencv euclidean Facenet TRUE 0.88 8.66 10.00 102 86
Facenet opencv euclidean Facenet2018 TRUE 0.89 8.55 10.00 102 86
Facenet opencv euclidean VGGFace TRUE 0.86 6.95 10.00 102 86
Facenet opencv euclidean VGGFace2 TRUE 0.86 7.07 10.00 102 86
Facenet opencv euclidean ArcFace TRUE 0.86 8.55 10.00 102 86
Facenet opencv euclidean_l2 base FALSE 0.86 0.82 0.80 102 86
Facenet opencv euclidean_l2 raw TRUE 0.86 0.42 0.80 102 86
Facenet opencv euclidean_l2 Facenet TRUE 0.86 0.79 0.80 102 86
Facenet opencv euclidean_l2 Facenet2018 TRUE 0.86 0.78 0.80 102 86
Facenet opencv euclidean_l2 VGGFace TRUE 0.85 0.44 0.80 102 86
Facenet opencv euclidean_l2 VGGFace2 TRUE 0.86 0.45 0.80 102 86
Facenet opencv euclidean_l2 ArcFace TRUE 0.85 0.78 0.80 102 86
Facenet ssd cosine base TRUE 0.95 0.17 0.40 283 None
Facenet ssd cosine raw TRUE 0.95 0.07 0.40 127 60
Facenet ssd cosine Facenet TRUE 0.96 0.28 0.40 127 60
Facenet ssd cosine Facenet2018 TRUE 0.95 0.29 0.40 127 60
Facenet ssd cosine VGGFace TRUE 0.95 0.06 0.40 283 None
Facenet ssd cosine VGGFace2 TRUE 0.95 0.06 0.40 283 None
Facenet ssd cosine ArcFace TRUE 0.95 0.29 0.40 127 60
Facenet ssd euclidean base TRUE 0.95 2.93 10.00 283 None
Facenet ssd euclidean raw TRUE 0.95 7.93 10.00 127 60
Facenet ssd euclidean Facenet TRUE 0.95 3.74 10.00 283 None
Facenet ssd euclidean Facenet2018 TRUE 0.95 4.55 10.00 283 None
Facenet ssd euclidean VGGFace TRUE 0.95 7.20 10.00 283 None
Facenet ssd euclidean VGGFace2 TRUE 0.96 7.20 10.00 283 None
Facenet ssd euclidean ArcFace TRUE 0.96 4.55 10.00 283 None
Facenet ssd euclidean_l2 base TRUE 0.95 0.59 0.80 283 None
Facenet ssd euclidean_l2 raw TRUE 0.96 0.37 0.80 127 60
Facenet ssd euclidean_l2 Facenet TRUE 0.96 0.75 0.80 127 60
Facenet ssd euclidean_l2 Facenet2018 TRUE 0.95 0.76 0.80 127 60
Facenet ssd euclidean_l2 VGGFace TRUE 0.96 0.36 0.80 283 None
Facenet ssd euclidean_l2 VGGFace2 TRUE 0.95 0.36 0.80 283 None
Facenet ssd euclidean_l2 ArcFace TRUE 0.96 0.76 0.80 127 60
Facenet dlib cosine base FALSE 0.68 0.55 0.40 117 168
Facenet dlib cosine raw TRUE 0.69 0.06 0.40 117 168
Facenet dlib cosine Facenet FALSE 0.68 0.48 0.40 117 168
Facenet dlib cosine Facenet2018 FALSE 0.68 0.47 0.40 117 168
Facenet dlib cosine VGGFace TRUE 0.68 0.08 0.40 117 168
Facenet dlib cosine VGGFace2 TRUE 0.68 0.08 0.40 117 168
Facenet dlib cosine ArcFace FALSE 0.68 0.47 0.40 117 168
Facenet dlib euclidean base FALSE 0.68 11.96 10.00 117 168
Facenet dlib euclidean raw TRUE 0.69 6.78 10.00 117 168
Facenet dlib euclidean Facenet FALSE 0.68 11.50 10.00 117 168
Facenet dlib euclidean Facenet2018 FALSE 0.68 11.28 10.00 117 168
Facenet dlib euclidean VGGFace TRUE 0.69 7.16 10.00 117 168
Facenet dlib euclidean VGGFace2 TRUE 0.68 7.27 10.00 117 168
Facenet dlib euclidean ArcFace FALSE 0.68 11.28 10.00 117 168
Facenet dlib euclidean_l2 base FALSE 0.68 1.05 0.80 117 168
Facenet dlib euclidean_l2 raw TRUE 0.68 0.34 0.80 117 168
Facenet dlib euclidean_l2 Facenet FALSE 0.68 0.98 0.80 117 168
Facenet dlib euclidean_l2 Facenet2018 FALSE 0.68 0.97 0.80 117 168
Facenet dlib euclidean_l2 VGGFace TRUE 0.68 0.40 0.80 117 168
Facenet dlib euclidean_l2 VGGFace2 TRUE 0.68 0.41 0.80 117 168
Facenet dlib euclidean_l2 ArcFace FALSE 0.68 0.97 0.80 117 168
Facenet mtcnn cosine base TRUE 1.54 0.30 0.40 125 188
Facenet mtcnn cosine raw TRUE 1.53 0.05 0.40 125 188
Facenet mtcnn cosine Facenet TRUE 1.54 0.26 0.40 125 188
Facenet mtcnn cosine Facenet2018 TRUE 1.55 0.27 0.40 125 188
Facenet mtcnn cosine VGGFace TRUE 1.54 0.05 0.40 125 188
Facenet mtcnn cosine VGGFace2 TRUE 1.54 0.05 0.40 125 188
Facenet mtcnn cosine ArcFace TRUE 1.54 0.27 0.40 125 188
Facenet mtcnn euclidean base TRUE 1.54 8.24 10.00 125 188
Facenet mtcnn euclidean raw TRUE 1.55 7.05 10.00 125 188
Facenet mtcnn euclidean Facenet TRUE 1.55 7.96 10.00 125 188
Facenet mtcnn euclidean Facenet2018 TRUE 1.54 8.00 10.00 125 188
Facenet mtcnn euclidean VGGFace TRUE 1.54 6.10 10.00 125 188
Facenet mtcnn euclidean VGGFace2 TRUE 1.54 6.15 10.00 125 188
Facenet mtcnn euclidean ArcFace TRUE 1.54 8.00 10.00 125 188
Facenet mtcnn euclidean_l2 base TRUE 1.54 0.78 0.80 125 188
Facenet mtcnn euclidean_l2 raw TRUE 1.55 0.31 0.80 125 188
Facenet mtcnn euclidean_l2 Facenet TRUE 1.54 0.73 0.80 125 188
Facenet mtcnn euclidean_l2 Facenet2018 TRUE 1.53 0.73 0.80 125 188
Facenet mtcnn euclidean_l2 VGGFace TRUE 1.54 0.32 0.80 125 188
Facenet mtcnn euclidean_l2 VGGFace2 TRUE 1.54 0.33 0.80 125 188
Facenet mtcnn euclidean_l2 ArcFace TRUE 1.54 0.73 0.80 125 188
Facenet retinaface cosine base TRUE 2.25 0.28 0.40 133 189
Facenet retinaface cosine raw TRUE 2.27 0.05 0.40 133 189
Facenet retinaface cosine Facenet TRUE 2.27 0.26 0.40 133 189
Facenet retinaface cosine Facenet2018 TRUE 2.27 0.27 0.40 133 189
Facenet retinaface cosine VGGFace TRUE 2.25 0.08 0.40 133 189
Facenet retinaface cosine VGGFace2 TRUE 2.31 0.08 0.40 133 189
Facenet retinaface cosine ArcFace TRUE 2.26 0.27 0.40 133 189
Facenet retinaface euclidean base TRUE 2.28 7.89 10.00 133 189
Facenet retinaface euclidean raw TRUE 2.28 7.94 10.00 133 189
Facenet retinaface euclidean Facenet TRUE 2.29 7.85 10.00 133 189
Facenet retinaface euclidean Facenet2018 TRUE 2.29 8.12 10.00 133 189
Facenet retinaface euclidean VGGFace TRUE 2.28 6.97 10.00 133 189
Facenet retinaface euclidean VGGFace2 TRUE 2.29 7.02 10.00 133 189
Facenet retinaface euclidean ArcFace TRUE 2.28 8.12 10.00 133 189
Facenet retinaface euclidean_l2 base TRUE 2.30 0.74 0.80 133 189
Facenet retinaface euclidean_l2 raw TRUE 2.33 0.33 0.80 133 189
Facenet retinaface euclidean_l2 Facenet TRUE 2.29 0.71 0.80 133 189
Facenet retinaface euclidean_l2 Facenet2018 TRUE 2.27 0.74 0.80 133 189
Facenet retinaface euclidean_l2 VGGFace TRUE 2.27 0.40 0.80 133 189
Facenet retinaface euclidean_l2 VGGFace2 TRUE 2.27 0.40 0.80 133 189
Facenet retinaface euclidean_l2 ArcFace TRUE 2.28 0.74 0.80 133 189
Facenet mediapipe cosine base FALSE 0.35 0.41 0.40 117 187
Facenet mediapipe cosine raw TRUE 0.35 0.05 0.40 117 187
Facenet mediapipe cosine Facenet FALSE 0.35 0.47 0.40 117 187
Facenet mediapipe cosine Facenet2018 FALSE 0.35 0.45 0.40 117 187
Facenet mediapipe cosine VGGFace TRUE 0.34 0.05 0.40 117 187
Facenet mediapipe cosine VGGFace2 TRUE 0.34 0.05 0.40 117 187
Facenet mediapipe cosine ArcFace FALSE 0.35 0.45 0.40 117 187
Facenet mediapipe euclidean base FALSE 0.34 10.29 10.00 117 187
Facenet mediapipe euclidean raw TRUE 0.35 6.16 10.00 117 187
Facenet mediapipe euclidean Facenet FALSE 0.35 11.23 10.00 117 187
Facenet mediapipe euclidean Facenet2018 FALSE 0.35 11.07 10.00 117 187
Facenet mediapipe euclidean VGGFace TRUE 0.35 5.76 10.00 117 187
Facenet mediapipe euclidean VGGFace2 TRUE 0.35 5.84 10.00 117 187
Facenet mediapipe euclidean ArcFace FALSE 0.35 11.07 10.00 117 187
Facenet mediapipe euclidean_l2 base FALSE 0.35 0.91 0.80 117 187
Facenet mediapipe euclidean_l2 raw TRUE 0.35 0.31 0.80 117 187
Facenet mediapipe euclidean_l2 Facenet FALSE 0.35 0.97 0.80 117 187
Facenet mediapipe euclidean_l2 Facenet2018 FALSE 0.35 0.94 0.80 117 187
Facenet mediapipe euclidean_l2 VGGFace TRUE 0.35 0.32 0.80 117 187
Facenet mediapipe euclidean_l2 VGGFace2 TRUE 0.35 0.33 0.80 117 187
Facenet mediapipe euclidean_l2 ArcFace FALSE 0.35 0.94 0.80 117 187
Facenet yolov8 cosine base TRUE 0.51 0.29 0.40 131 187
Facenet yolov8 cosine raw TRUE 0.50 0.04 0.40 131 187
Facenet yolov8 cosine Facenet TRUE 0.50 0.26 0.40 131 187
Facenet yolov8 cosine Facenet2018 TRUE 0.49 0.28 0.40 131 187
Facenet yolov8 cosine VGGFace TRUE 0.49 0.05 0.40 131 187
Facenet yolov8 cosine VGGFace2 TRUE 0.51 0.05 0.40 131 187
Facenet yolov8 cosine ArcFace TRUE 0.49 0.28 0.40 131 187
Facenet yolov8 euclidean base TRUE 0.49 8.11 10.00 131 187
Facenet yolov8 euclidean raw TRUE 0.50 5.74 10.00 131 187
Facenet yolov8 euclidean Facenet TRUE 0.49 7.87 10.00 131 187
Facenet yolov8 euclidean Facenet2018 TRUE 0.49 8.21 10.00 131 187
Facenet yolov8 euclidean VGGFace TRUE 0.49 5.22 10.00 131 187
Facenet yolov8 euclidean VGGFace2 TRUE 0.50 5.28 10.00 131 187
Facenet yolov8 euclidean ArcFace TRUE 0.50 8.21 10.00 131 187
Facenet yolov8 euclidean_l2 base TRUE 0.50 0.76 0.80 131 187
Facenet yolov8 euclidean_l2 raw TRUE 0.49 0.29 0.80 131 187
Facenet yolov8 euclidean_l2 Facenet TRUE 0.48 0.72 0.80 131 187
Facenet yolov8 euclidean_l2 Facenet2018 TRUE 0.48 0.75 0.80 131 187
Facenet yolov8 euclidean_l2 VGGFace TRUE 0.48 0.32 0.80 131 187
Facenet yolov8 euclidean_l2 VGGFace2 TRUE 0.50 0.33 0.80 131 187
Facenet yolov8 euclidean_l2 ArcFace TRUE 0.49 0.75 0.80 131 187
Facenet yunet cosine base TRUE 0.41 0.31 0.40 125 183
Facenet yunet cosine raw TRUE 0.41 0.05 0.40 125 183
Facenet yunet cosine Facenet TRUE 0.40 0.30 0.40 125 183
Facenet yunet cosine Facenet2018 TRUE 0.41 0.29 0.40 125 183
Facenet yunet cosine VGGFace TRUE 0.40 0.06 0.40 125 183
Facenet yunet cosine VGGFace2 TRUE 0.40 0.07 0.40 125 183
Facenet yunet cosine ArcFace TRUE 0.41 0.29 0.40 125 183
Facenet yunet euclidean base TRUE 0.40 8.55 10.00 125 183
Facenet yunet euclidean raw TRUE 0.41 6.83 10.00 125 183
Facenet yunet euclidean Facenet TRUE 0.40 8.78 10.00 125 183
Facenet yunet euclidean Facenet2018 TRUE 0.40 8.62 10.00 125 183
Facenet yunet euclidean VGGFace TRUE 0.40 5.68 10.00 125 183
Facenet yunet euclidean VGGFace2 TRUE 0.40 5.74 10.00 125 183
Facenet yunet euclidean ArcFace TRUE 0.40 8.62 10.00 125 183
Facenet yunet euclidean_l2 base TRUE 0.40 0.78 0.80 125 183
Facenet yunet euclidean_l2 raw TRUE 0.41 0.33 0.80 125 183
Facenet yunet euclidean_l2 Facenet TRUE 0.40 0.78 0.80 125 183
Facenet yunet euclidean_l2 Facenet2018 TRUE 0.40 0.77 0.80 125 183
Facenet yunet euclidean_l2 VGGFace TRUE 0.40 0.36 0.80 125 183
Facenet yunet euclidean_l2 VGGFace2 TRUE 0.40 0.36 0.80 125 183
Facenet yunet euclidean_l2 ArcFace TRUE 0.41 0.76 0.80 125 183
Facenet fastmtcnn cosine base TRUE 0.46 0.29 0.40 125 189
Facenet fastmtcnn cosine raw TRUE 0.47 0.03 0.40 125 189
Facenet fastmtcnn cosine Facenet TRUE 0.47 0.27 0.40 125 189
Facenet fastmtcnn cosine Facenet2018 TRUE 0.48 0.28 0.40 125 189
Facenet fastmtcnn cosine VGGFace TRUE 0.48 0.04 0.40 125 189
Facenet fastmtcnn cosine VGGFace2 TRUE 0.48 0.04 0.40 125 189
Facenet fastmtcnn cosine ArcFace TRUE 0.47 0.28 0.40 125 189
Facenet fastmtcnn euclidean base TRUE 0.47 8.08 10.00 125 189
Facenet fastmtcnn euclidean raw TRUE 0.48 6.73 10.00 125 189
Facenet fastmtcnn euclidean Facenet TRUE 0.47 7.99 10.00 125 189
Facenet fastmtcnn euclidean Facenet2018 TRUE 0.48 8.13 10.00 125 189
Facenet fastmtcnn euclidean VGGFace TRUE 0.48 5.87 10.00 125 189
Facenet fastmtcnn euclidean VGGFace2 TRUE 0.47 5.83 10.00 125 189
Facenet fastmtcnn euclidean ArcFace TRUE 0.47 8.13 10.00 125 189
Facenet fastmtcnn euclidean_l2 base TRUE 0.47 0.76 0.80 125 189
Facenet fastmtcnn euclidean_l2 raw TRUE 0.47 0.24 0.80 125 189
Facenet fastmtcnn euclidean_l2 Facenet TRUE 0.48 0.74 0.80 125 189
Facenet fastmtcnn euclidean_l2 Facenet2018 TRUE 0.47 0.75 0.80 125 189
Facenet fastmtcnn euclidean_l2 VGGFace TRUE 0.48 0.29 0.80 125 189
Facenet fastmtcnn euclidean_l2 VGGFace2 TRUE 0.48 0.30 0.80 125 189
Facenet fastmtcnn euclidean_l2 ArcFace TRUE 0.48 0.75 0.80 125 189
Facenet512 opencv cosine base TRUE 2.71 0.25 0.30 102 86
Facenet512 opencv cosine raw TRUE 0.86 0.04 0.30 102 86
Facenet512 opencv cosine Facenet FALSE 0.86 0.47 0.30 102 86
Facenet512 opencv cosine Facenet2018 TRUE 0.85 0.27 0.30 102 86
Facenet512 opencv cosine VGGFace TRUE 0.86 0.10 0.30 102 86
Facenet512 opencv cosine VGGFace2 TRUE 0.86 0.11 0.30 102 86
Facenet512 opencv cosine ArcFace TRUE 0.86 0.27 0.30 102 86
Facenet512 opencv euclidean base TRUE 0.86 15.96 23.56 102 86
Facenet512 opencv euclidean raw FALSE 0.86 34.86 23.56 102 86
Facenet512 opencv euclidean Facenet TRUE 0.86 21.83 23.56 102 86
Facenet512 opencv euclidean Facenet2018 TRUE 0.85 16.09 23.56 102 86
Facenet512 opencv euclidean VGGFace FALSE 0.86 85.29 23.56 102 86
Facenet512 opencv euclidean VGGFace2 FALSE 0.86 87.20 23.56 102 86
Facenet512 opencv euclidean ArcFace TRUE 0.87 16.08 23.56 102 86
Facenet512 opencv euclidean_l2 base TRUE 0.86 0.70 1.04 102 86
Facenet512 opencv euclidean_l2 raw TRUE 0.86 0.30 1.04 102 86
Facenet512 opencv euclidean_l2 Facenet TRUE 0.86 0.97 1.04 102 86
Facenet512 opencv euclidean_l2 Facenet2018 TRUE 0.85 0.73 1.04 102 86
Facenet512 opencv euclidean_l2 VGGFace TRUE 0.85 0.44 1.04 102 86
Facenet512 opencv euclidean_l2 VGGFace2 TRUE 0.86 0.47 1.04 102 86
Facenet512 opencv euclidean_l2 ArcFace TRUE 0.85 0.73 1.04 102 86
Facenet512 ssd cosine base FALSE 0.96 0.32 0.30 127 60
Facenet512 ssd cosine raw TRUE 0.96 0.02 0.30 127 60
Facenet512 ssd cosine Facenet FALSE 0.97 0.43 0.30 127 60
Facenet512 ssd cosine Facenet2018 FALSE 0.96 0.35 0.30 127 60
Facenet512 ssd cosine VGGFace TRUE 0.96 0.04 0.30 283 None
Facenet512 ssd cosine VGGFace2 TRUE 0.96 0.04 0.30 283 None
Facenet512 ssd cosine ArcFace FALSE 0.97 0.35 0.30 127 60
Facenet512 ssd euclidean base TRUE 0.96 9.49 23.56 283 None
Facenet512 ssd euclidean raw FALSE 0.96 29.19 23.56 127 60
Facenet512 ssd euclidean Facenet TRUE 0.95 10.82 23.56 283 None
Facenet512 ssd euclidean Facenet2018 TRUE 0.95 16.38 23.56 283 None
Facenet512 ssd euclidean VGGFace FALSE 0.95 61.70 23.56 127 60
Facenet512 ssd euclidean VGGFace2 FALSE 0.96 55.58 23.56 127 60
Facenet512 ssd euclidean ArcFace TRUE 0.95 16.10 23.56 283 None
Facenet512 ssd euclidean_l2 base TRUE 0.96 0.80 1.04 127 60
Facenet512 ssd euclidean_l2 raw TRUE 0.95 0.20 1.04 127 60
Facenet512 ssd euclidean_l2 Facenet TRUE 0.95 0.92 1.04 127 60
Facenet512 ssd euclidean_l2 Facenet2018 TRUE 0.96 0.83 1.04 127 60
Facenet512 ssd euclidean_l2 VGGFace TRUE 0.96 0.28 1.04 283 None
Facenet512 ssd euclidean_l2 VGGFace2 TRUE 0.96 0.28 1.04 283 None
Facenet512 ssd euclidean_l2 ArcFace TRUE 0.96 0.83 1.04 127 60
Facenet512 dlib cosine base TRUE 0.68 0.23 0.30 117 168
Facenet512 dlib cosine raw TRUE 0.69 0.04 0.30 117 168
Facenet512 dlib cosine Facenet FALSE 0.69 0.46 0.30 117 168
Facenet512 dlib cosine Facenet2018 TRUE 0.69 0.26 0.30 117 168
Facenet512 dlib cosine VGGFace TRUE 0.68 0.25 0.30 117 168
Facenet512 dlib cosine VGGFace2 TRUE 0.69 0.26 0.30 117 168
Facenet512 dlib cosine ArcFace TRUE 0.68 0.26 0.30 117 168
Facenet512 dlib euclidean base TRUE 0.68 16.03 23.56 117 168
Facenet512 dlib euclidean raw FALSE 0.69 34.56 23.56 117 168
Facenet512 dlib euclidean Facenet TRUE 0.69 22.47 23.56 117 168
Facenet512 dlib euclidean Facenet2018 TRUE 0.69 16.22 23.56 117 168
Facenet512 dlib euclidean VGGFace FALSE 0.69 133.52 23.56 117 168
Facenet512 dlib euclidean VGGFace2 FALSE 0.69 136.71 23.56 117 168
Facenet512 dlib euclidean ArcFace TRUE 0.69 16.21 23.56 117 168
Facenet512 dlib euclidean_l2 base TRUE 0.69 0.68 1.04 117 168
Facenet512 dlib euclidean_l2 raw TRUE 0.69 0.28 1.04 117 168
Facenet512 dlib euclidean_l2 Facenet TRUE 0.68 0.96 1.04 117 168
Facenet512 dlib euclidean_l2 Facenet2018 TRUE 0.68 0.72 1.04 117 168
Facenet512 dlib euclidean_l2 VGGFace TRUE 0.69 0.70 1.04 117 168
Facenet512 dlib euclidean_l2 VGGFace2 TRUE 0.68 0.72 1.04 117 168
Facenet512 dlib euclidean_l2 ArcFace TRUE 0.69 0.72 1.04 117 168
Facenet512 mtcnn cosine base TRUE 1.54 0.28 0.30 125 188
Facenet512 mtcnn cosine raw TRUE 1.53 0.05 0.30 125 188
Facenet512 mtcnn cosine Facenet FALSE 1.55 0.38 0.30 125 188
Facenet512 mtcnn cosine Facenet2018 TRUE 1.54 0.28 0.30 125 188
Facenet512 mtcnn cosine VGGFace TRUE 1.54 0.07 0.30 125 188
Facenet512 mtcnn cosine VGGFace2 TRUE 1.55 0.08 0.30 125 188
Facenet512 mtcnn cosine ArcFace TRUE 1.54 0.28 0.30 125 188
Facenet512 mtcnn euclidean base TRUE 1.54 16.49 23.56 125 188
Facenet512 mtcnn euclidean raw FALSE 1.54 34.95 23.56 125 188
Facenet512 mtcnn euclidean Facenet TRUE 1.82 18.91 23.56 125 188
Facenet512 mtcnn euclidean Facenet2018 TRUE 1.54 16.20 23.56 125 188
Facenet512 mtcnn euclidean VGGFace FALSE 1.54 77.69 23.56 125 188
Facenet512 mtcnn euclidean VGGFace2 FALSE 1.55 76.69 23.56 125 188
Facenet512 mtcnn euclidean ArcFace TRUE 1.56 16.21 23.56 125 188
Facenet512 mtcnn euclidean_l2 base TRUE 1.54 0.75 1.04 125 188
Facenet512 mtcnn euclidean_l2 raw TRUE 1.55 0.33 1.04 125 188
Facenet512 mtcnn euclidean_l2 Facenet TRUE 1.56 0.87 1.04 125 188
Facenet512 mtcnn euclidean_l2 Facenet2018 TRUE 1.55 0.75 1.04 125 188
Facenet512 mtcnn euclidean_l2 VGGFace TRUE 1.54 0.38 1.04 125 188
Facenet512 mtcnn euclidean_l2 VGGFace2 TRUE 1.55 0.39 1.04 125 188
Facenet512 mtcnn euclidean_l2 ArcFace TRUE 1.55 0.75 1.04 125 188
Facenet512 retinaface cosine base TRUE 2.30 0.27 0.30 133 189
Facenet512 retinaface cosine raw TRUE 2.31 0.06 0.30 133 189
Facenet512 retinaface cosine Facenet FALSE 2.30 0.42 0.30 133 189
Facenet512 retinaface cosine Facenet2018 FALSE 2.28 0.35 0.30 133 189
Facenet512 retinaface cosine VGGFace TRUE 2.30 0.06 0.30 133 189
Facenet512 retinaface cosine VGGFace2 TRUE 2.28 0.07 0.30 133 189
Facenet512 retinaface cosine ArcFace FALSE 2.31 0.35 0.30 133 189
Facenet512 retinaface euclidean base TRUE 2.30 16.77 23.56 133 189
Facenet512 retinaface euclidean raw FALSE 2.30 45.20 23.56 133 189
Facenet512 retinaface euclidean Facenet TRUE 2.26 20.83 23.56 133 189
Facenet512 retinaface euclidean Facenet2018 TRUE 2.31 18.39 23.56 133 189
Facenet512 retinaface euclidean VGGFace FALSE 2.29 79.39 23.56 133 189
Facenet512 retinaface euclidean VGGFace2 FALSE 2.29 78.42 23.56 133 189
Facenet512 retinaface euclidean ArcFace TRUE 2.28 18.39 23.56 133 189
Facenet512 retinaface euclidean_l2 base TRUE 2.32 0.73 1.04 133 189
Facenet512 retinaface euclidean_l2 raw TRUE 2.31 0.36 1.04 133 189
Facenet512 retinaface euclidean_l2 Facenet TRUE 2.28 0.92 1.04 133 189
Facenet512 retinaface euclidean_l2 Facenet2018 TRUE 2.30 0.83 1.04 133 189
Facenet512 retinaface euclidean_l2 VGGFace TRUE 2.28 0.35 1.04 133 189
Facenet512 retinaface euclidean_l2 VGGFace2 TRUE 2.30 0.36 1.04 133 189
Facenet512 retinaface euclidean_l2 ArcFace TRUE 2.32 0.83 1.04 133 189
Facenet512 mediapipe cosine base TRUE 0.38 0.26 0.30 117 187
Facenet512 mediapipe cosine raw TRUE 0.36 0.05 0.30 117 187
Facenet512 mediapipe cosine Facenet FALSE 0.36 0.50 0.30 117 187
Facenet512 mediapipe cosine Facenet2018 TRUE 0.35 0.26 0.30 117 187
Facenet512 mediapipe cosine VGGFace TRUE 0.36 0.09 0.30 117 187
Facenet512 mediapipe cosine VGGFace2 TRUE 0.36 0.10 0.30 117 187
Facenet512 mediapipe cosine ArcFace TRUE 0.36 0.26 0.30 117 187
Facenet512 mediapipe euclidean base TRUE 0.36 16.44 23.56 117 187
Facenet512 mediapipe euclidean raw FALSE 0.35 41.59 23.56 117 187
Facenet512 mediapipe euclidean Facenet TRUE 0.35 23.46 23.56 117 187
Facenet512 mediapipe euclidean Facenet2018 TRUE 0.36 15.87 23.56 117 187
Facenet512 mediapipe euclidean VGGFace FALSE 0.36 77.56 23.56 117 187
Facenet512 mediapipe euclidean VGGFace2 FALSE 0.36 79.30 23.56 117 187
Facenet512 mediapipe euclidean ArcFace TRUE 0.36 15.86 23.56 117 187
Facenet512 mediapipe euclidean_l2 base TRUE 0.36 0.72 1.04 117 187
Facenet512 mediapipe euclidean_l2 raw TRUE 0.35 0.32 1.04 117 187
Facenet512 mediapipe euclidean_l2 Facenet TRUE 0.36 1.00 1.04 117 187
Facenet512 mediapipe euclidean_l2 Facenet2018 TRUE 0.35 0.72 1.04 117 187
Facenet512 mediapipe euclidean_l2 VGGFace TRUE 0.36 0.43 1.04 117 187
Facenet512 mediapipe euclidean_l2 VGGFace2 TRUE 0.36 0.45 1.04 117 187
Facenet512 mediapipe euclidean_l2 ArcFace TRUE 0.35 0.72 1.04 117 187
Facenet512 yolov8 cosine base TRUE 0.51 0.29 0.30 131 187
Facenet512 yolov8 cosine raw TRUE 0.51 0.03 0.30 131 187
Facenet512 yolov8 cosine Facenet FALSE 0.50 0.41 0.30 131 187
Facenet512 yolov8 cosine Facenet2018 FALSE 0.50 0.31 0.30 131 187
Facenet512 yolov8 cosine VGGFace TRUE 0.49 0.07 0.30 131 187
Facenet512 yolov8 cosine VGGFace2 TRUE 0.51 0.07 0.30 131 187
Facenet512 yolov8 cosine ArcFace FALSE 0.49 0.31 0.30 131 187
Facenet512 yolov8 euclidean base TRUE 0.49 17.02 23.56 131 187
Facenet512 yolov8 euclidean raw FALSE 0.48 41.21 23.56 131 187
Facenet512 yolov8 euclidean Facenet TRUE 0.50 19.92 23.56 131 187
Facenet512 yolov8 euclidean Facenet2018 TRUE 0.49 17.20 23.56 131 187
Facenet512 yolov8 euclidean VGGFace FALSE 0.49 75.38 23.56 131 187
Facenet512 yolov8 euclidean VGGFace2 FALSE 0.50 72.34 23.56 131 187
Facenet512 yolov8 euclidean ArcFace TRUE 0.50 17.21 23.56 131 187
Facenet512 yolov8 euclidean_l2 base TRUE 0.50 0.77 1.04 131 187
Facenet512 yolov8 euclidean_l2 raw TRUE 0.50 0.26 1.04 131 187
Facenet512 yolov8 euclidean_l2 Facenet TRUE 0.50 0.90 1.04 131 187
Facenet512 yolov8 euclidean_l2 Facenet2018 TRUE 0.50 0.78 1.04 131 187
Facenet512 yolov8 euclidean_l2 VGGFace TRUE 0.50 0.38 1.04 131 187
Facenet512 yolov8 euclidean_l2 VGGFace2 TRUE 0.50 0.37 1.04 131 187
Facenet512 yolov8 euclidean_l2 ArcFace TRUE 0.49 0.78 1.04 131 187
Facenet512 yunet cosine base TRUE 0.41 0.28 0.30 125 183
Facenet512 yunet cosine raw TRUE 0.40 0.08 0.30 125 183
Facenet512 yunet cosine Facenet FALSE 0.40 0.41 0.30 125 183
Facenet512 yunet cosine Facenet2018 TRUE 0.41 0.29 0.30 125 183
Facenet512 yunet cosine VGGFace TRUE 0.41 0.09 0.30 125 183
Facenet512 yunet cosine VGGFace2 TRUE 0.40 0.09 0.30 125 183
Facenet512 yunet cosine ArcFace TRUE 0.42 0.29 0.30 125 183
Facenet512 yunet euclidean base TRUE 0.40 16.63 23.56 125 183
Facenet512 yunet euclidean raw FALSE 0.40 57.41 23.56 125 183
Facenet512 yunet euclidean Facenet TRUE 0.41 19.68 23.56 125 183
Facenet512 yunet euclidean Facenet2018 TRUE 0.41 16.74 23.56 125 183
Facenet512 yunet euclidean VGGFace FALSE 0.41 79.62 23.56 125 183
Facenet512 yunet euclidean VGGFace2 FALSE 0.40 78.57 23.56 125 183
Facenet512 yunet euclidean ArcFace TRUE 0.40 16.74 23.56 125 183
Facenet512 yunet euclidean_l2 base TRUE 0.40 0.75 1.04 125 183
Facenet512 yunet euclidean_l2 raw TRUE 0.41 0.40 1.04 125 183
Facenet512 yunet euclidean_l2 Facenet TRUE 0.41 0.90 1.04 125 183
Facenet512 yunet euclidean_l2 Facenet2018 TRUE 0.41 0.77 1.04 125 183
Facenet512 yunet euclidean_l2 VGGFace TRUE 0.41 0.43 1.04 125 183
Facenet512 yunet euclidean_l2 VGGFace2 TRUE 0.41 0.44 1.04 125 183
Facenet512 yunet euclidean_l2 ArcFace TRUE 0.41 0.77 1.04 125 183
Facenet512 fastmtcnn cosine base TRUE 0.46 0.29 0.30 125 189
Facenet512 fastmtcnn cosine raw TRUE 0.47 0.04 0.30 125 189
Facenet512 fastmtcnn cosine Facenet FALSE 0.48 0.40 0.30 125 189
Facenet512 fastmtcnn cosine Facenet2018 FALSE 0.48 0.31 0.30 125 189
Facenet512 fastmtcnn cosine VGGFace TRUE 0.49 0.08 0.30 125 189
Facenet512 fastmtcnn cosine VGGFace2 TRUE 0.48 0.09 0.30 125 189
Facenet512 fastmtcnn cosine ArcFace FALSE 0.48 0.31 0.30 125 189
Facenet512 fastmtcnn euclidean base TRUE 0.48 16.97 23.56 125 189
Facenet512 fastmtcnn euclidean raw FALSE 0.48 29.38 23.56 125 189
Facenet512 fastmtcnn euclidean Facenet TRUE 0.48 19.37 23.56 125 189
Facenet512 fastmtcnn euclidean Facenet2018 TRUE 0.49 17.31 23.56 125 189
Facenet512 fastmtcnn euclidean VGGFace FALSE 0.48 83.07 23.56 125 189
Facenet512 fastmtcnn euclidean VGGFace2 FALSE 0.49 83.49 23.56 125 189
Facenet512 fastmtcnn euclidean ArcFace TRUE 0.47 17.32 23.56 125 189
Facenet512 fastmtcnn euclidean_l2 base TRUE 0.49 0.77 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 raw TRUE 0.48 0.28 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 Facenet TRUE 0.48 0.89 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 Facenet2018 TRUE 0.48 0.79 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 VGGFace TRUE 0.48 0.39 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 VGGFace2 TRUE 0.49 0.41 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 ArcFace TRUE 0.48 0.79 1.04 125 189
OpenFace opencv cosine base FALSE 1.43 0.27 0.10 102 86
OpenFace opencv cosine raw TRUE 0.64 0.01 0.10 102 86
OpenFace opencv cosine Facenet FALSE 0.64 0.25 0.10 102 86
OpenFace opencv cosine Facenet2018 FALSE 0.64 0.23 0.10 102 86
OpenFace opencv cosine VGGFace TRUE 0.64 0.02 0.10 102 86
OpenFace opencv cosine VGGFace2 TRUE 0.64 0.02 0.10 102 86
OpenFace opencv cosine ArcFace FALSE 0.64 0.23 0.10 102 86
OpenFace opencv euclidean base FALSE 0.64 0.74 0.55 102 86
OpenFace opencv euclidean raw TRUE 0.64 0.16 0.55 102 86
OpenFace opencv euclidean Facenet FALSE 0.64 0.71 0.55 102 86
OpenFace opencv euclidean Facenet2018 FALSE 0.64 0.68 0.55 102 86
OpenFace opencv euclidean VGGFace TRUE 0.64 0.22 0.55 102 86
OpenFace opencv euclidean VGGFace2 TRUE 0.64 0.22 0.55 102 86
OpenFace opencv euclidean ArcFace FALSE 0.64 0.68 0.55 102 86
OpenFace opencv euclidean_l2 base FALSE 0.64 0.74 0.55 102 86
OpenFace opencv euclidean_l2 raw TRUE 0.64 0.16 0.55 102 86
OpenFace opencv euclidean_l2 Facenet FALSE 0.64 0.71 0.55 102 86
OpenFace opencv euclidean_l2 Facenet2018 FALSE 0.64 0.68 0.55 102 86
OpenFace opencv euclidean_l2 VGGFace TRUE 0.64 0.22 0.55 102 86
OpenFace opencv euclidean_l2 VGGFace2 TRUE 0.64 0.22 0.55 102 86
OpenFace opencv euclidean_l2 ArcFace FALSE 0.64 0.68 0.55 102 86
OpenFace ssd cosine base FALSE 0.52 0.22 0.10 283 None
OpenFace ssd cosine raw TRUE 0.53 0.01 0.10 127 60
OpenFace ssd cosine Facenet FALSE 0.52 0.22 0.10 283 None
OpenFace ssd cosine Facenet2018 FALSE 0.52 0.13 0.10 283 None
OpenFace ssd cosine VGGFace TRUE 0.52 0.03 0.10 283 None
OpenFace ssd cosine VGGFace2 TRUE 0.52 0.03 0.10 283 None
OpenFace ssd cosine ArcFace FALSE 0.53 0.13 0.10 283 None
OpenFace ssd euclidean base FALSE 0.53 0.66 0.55 283 None
OpenFace ssd euclidean raw TRUE 0.52 0.14 0.55 127 60
OpenFace ssd euclidean Facenet FALSE 0.52 0.66 0.55 283 None
OpenFace ssd euclidean Facenet2018 TRUE 0.52 0.51 0.55 283 None
OpenFace ssd euclidean VGGFace TRUE 0.52 0.23 0.55 283 None
OpenFace ssd euclidean VGGFace2 TRUE 0.53 0.23 0.55 283 None
OpenFace ssd euclidean ArcFace TRUE 0.52 0.51 0.55 283 None
OpenFace ssd euclidean_l2 base FALSE 0.52 0.66 0.55 283 None
OpenFace ssd euclidean_l2 raw TRUE 0.52 0.14 0.55 127 60
OpenFace ssd euclidean_l2 Facenet FALSE 0.53 0.66 0.55 283 None
OpenFace ssd euclidean_l2 Facenet2018 TRUE 0.52 0.51 0.55 283 None
OpenFace ssd euclidean_l2 VGGFace TRUE 0.53 0.23 0.55 283 None
OpenFace ssd euclidean_l2 VGGFace2 TRUE 0.52 0.23 0.55 283 None
OpenFace ssd euclidean_l2 ArcFace TRUE 0.52 0.51 0.55 283 None
OpenFace dlib cosine base FALSE 0.47 0.40 0.10 117 168
OpenFace dlib cosine raw TRUE 0.47 0.01 0.10 117 168
OpenFace dlib cosine Facenet FALSE 0.47 0.12 0.10 117 168
OpenFace dlib cosine Facenet2018 FALSE 0.47 0.16 0.10 117 168
OpenFace dlib cosine VGGFace TRUE 0.46 0.04 0.10 117 168
OpenFace dlib cosine VGGFace2 TRUE 0.47 0.04 0.10 117 168
OpenFace dlib cosine ArcFace FALSE 0.49 0.16 0.10 117 168
OpenFace dlib euclidean base FALSE 0.48 0.89 0.55 117 168
OpenFace dlib euclidean raw TRUE 0.48 0.12 0.55 117 168
OpenFace dlib euclidean Facenet TRUE 0.47 0.50 0.55 117 168
OpenFace dlib euclidean Facenet2018 FALSE 0.47 0.57 0.55 117 168
OpenFace dlib euclidean VGGFace TRUE 0.47 0.27 0.55 117 168
OpenFace dlib euclidean VGGFace2 TRUE 0.47 0.27 0.55 117 168
OpenFace dlib euclidean ArcFace FALSE 0.47 0.57 0.55 117 168
OpenFace dlib euclidean_l2 base FALSE 0.47 0.89 0.55 117 168
OpenFace dlib euclidean_l2 raw TRUE 0.47 0.12 0.55 117 168
OpenFace dlib euclidean_l2 Facenet TRUE 0.47 0.50 0.55 117 168
OpenFace dlib euclidean_l2 Facenet2018 FALSE 0.47 0.57 0.55 117 168
OpenFace dlib euclidean_l2 VGGFace TRUE 0.47 0.27 0.55 117 168
OpenFace dlib euclidean_l2 VGGFace2 TRUE 0.46 0.27 0.55 117 168
OpenFace dlib euclidean_l2 ArcFace FALSE 0.47 0.57 0.55 117 168
OpenFace mtcnn cosine base FALSE 1.33 0.21 0.10 125 188
OpenFace mtcnn cosine raw TRUE 1.33 0.01 0.10 125 188
OpenFace mtcnn cosine Facenet FALSE 1.33 0.15 0.10 125 188
OpenFace mtcnn cosine Facenet2018 FALSE 1.33 0.13 0.10 125 188
OpenFace mtcnn cosine VGGFace TRUE 1.32 0.04 0.10 125 188
OpenFace mtcnn cosine VGGFace2 TRUE 1.32 0.04 0.10 125 188
OpenFace mtcnn cosine ArcFace FALSE 1.33 0.13 0.10 125 188
OpenFace mtcnn euclidean base FALSE 1.34 0.65 0.55 125 188
OpenFace mtcnn euclidean raw TRUE 1.34 0.17 0.55 125 188
OpenFace mtcnn euclidean Facenet TRUE 1.34 0.54 0.55 125 188
OpenFace mtcnn euclidean Facenet2018 TRUE 1.33 0.52 0.55 125 188
OpenFace mtcnn euclidean VGGFace TRUE 1.34 0.27 0.55 125 188
OpenFace mtcnn euclidean VGGFace2 TRUE 1.36 0.28 0.55 125 188
OpenFace mtcnn euclidean ArcFace TRUE 1.33 0.52 0.55 125 188
OpenFace mtcnn euclidean_l2 base FALSE 1.34 0.65 0.55 125 188
OpenFace mtcnn euclidean_l2 raw TRUE 1.33 0.17 0.55 125 188
OpenFace mtcnn euclidean_l2 Facenet TRUE 1.34 0.54 0.55 125 188
OpenFace mtcnn euclidean_l2 Facenet2018 TRUE 1.34 0.52 0.55 125 188
OpenFace mtcnn euclidean_l2 VGGFace TRUE 1.33 0.27 0.55 125 188
OpenFace mtcnn euclidean_l2 VGGFace2 TRUE 1.33 0.28 0.55 125 188
OpenFace mtcnn euclidean_l2 ArcFace TRUE 1.34 0.52 0.55 125 188
OpenFace retinaface cosine base FALSE 2.15 0.37 0.10 133 189
OpenFace retinaface cosine raw TRUE 2.10 0.02 0.10 133 189
OpenFace retinaface cosine Facenet FALSE 1.99 0.20 0.10 133 189
OpenFace retinaface cosine Facenet2018 FALSE 1.99 0.12 0.10 133 189
OpenFace retinaface cosine VGGFace TRUE 2.00 0.02 0.10 133 189
OpenFace retinaface cosine VGGFace2 TRUE 2.00 0.02 0.10 133 189
OpenFace retinaface cosine ArcFace FALSE 1.99 0.12 0.10 133 189
OpenFace retinaface euclidean base FALSE 2.00 0.86 0.55 133 189
OpenFace retinaface euclidean raw TRUE 1.99 0.17 0.55 133 189
OpenFace retinaface euclidean Facenet FALSE 2.01 0.64 0.55 133 189
OpenFace retinaface euclidean Facenet2018 TRUE 2.00 0.50 0.55 133 189
OpenFace retinaface euclidean VGGFace TRUE 2.00 0.21 0.55 133 189
OpenFace retinaface euclidean VGGFace2 TRUE 2.01 0.21 0.55 133 189
OpenFace retinaface euclidean ArcFace TRUE 2.00 0.50 0.55 133 189
OpenFace retinaface euclidean_l2 base FALSE 2.00 0.86 0.55 133 189
OpenFace retinaface euclidean_l2 raw TRUE 2.00 0.17 0.55 133 189
OpenFace retinaface euclidean_l2 Facenet FALSE 2.02 0.64 0.55 133 189
OpenFace retinaface euclidean_l2 Facenet2018 TRUE 2.01 0.50 0.55 133 189
OpenFace retinaface euclidean_l2 VGGFace TRUE 2.00 0.21 0.55 133 189
OpenFace retinaface euclidean_l2 VGGFace2 TRUE 2.01 0.21 0.55 133 189
OpenFace retinaface euclidean_l2 ArcFace TRUE 2.00 0.50 0.55 133 189
OpenFace mediapipe cosine base FALSE 0.16 0.42 0.10 117 187
OpenFace mediapipe cosine raw TRUE 0.15 0.01 0.10 117 187
OpenFace mediapipe cosine Facenet FALSE 0.14 0.34 0.10 117 187
OpenFace mediapipe cosine Facenet2018 FALSE 0.14 0.53 0.10 117 187
OpenFace mediapipe cosine VGGFace TRUE 0.14 0.03 0.10 117 187
OpenFace mediapipe cosine VGGFace2 TRUE 0.13 0.03 0.10 117 187
OpenFace mediapipe cosine ArcFace FALSE 0.13 0.53 0.10 117 187
OpenFace mediapipe euclidean base FALSE 0.13 0.91 0.55 117 187
OpenFace mediapipe euclidean raw TRUE 0.13 0.12 0.55 117 187
OpenFace mediapipe euclidean Facenet FALSE 0.13 0.83 0.55 117 187
OpenFace mediapipe euclidean Facenet2018 FALSE 0.13 1.02 0.55 117 187
OpenFace mediapipe euclidean VGGFace TRUE 0.14 0.26 0.55 117 187
OpenFace mediapipe euclidean VGGFace2 TRUE 0.14 0.25 0.55 117 187
OpenFace mediapipe euclidean ArcFace FALSE 0.13 1.03 0.55 117 187
OpenFace mediapipe euclidean_l2 base FALSE 0.14 0.91 0.55 117 187
OpenFace mediapipe euclidean_l2 raw TRUE 0.13 0.12 0.55 117 187
OpenFace mediapipe euclidean_l2 Facenet FALSE 0.13 0.83 0.55 117 187
OpenFace mediapipe euclidean_l2 Facenet2018 FALSE 0.13 1.02 0.55 117 187
OpenFace mediapipe euclidean_l2 VGGFace TRUE 0.13 0.26 0.55 117 187
OpenFace mediapipe euclidean_l2 VGGFace2 TRUE 0.13 0.25 0.55 117 187
OpenFace mediapipe euclidean_l2 ArcFace FALSE 0.13 1.03 0.55 117 187
OpenFace yolov8 cosine base FALSE 0.28 0.16 0.10 131 187
OpenFace yolov8 cosine raw TRUE 0.27 0.02 0.10 131 187
OpenFace yolov8 cosine Facenet FALSE 0.27 0.12 0.10 131 187
OpenFace yolov8 cosine Facenet2018 FALSE 0.27 0.31 0.10 131 187
OpenFace yolov8 cosine VGGFace TRUE 0.26 0.03 0.10 131 187
OpenFace yolov8 cosine VGGFace2 TRUE 0.27 0.03 0.10 131 187
OpenFace yolov8 cosine ArcFace FALSE 0.26 0.31 0.10 131 187
OpenFace yolov8 euclidean base FALSE 0.27 0.57 0.55 131 187
OpenFace yolov8 euclidean raw TRUE 0.26 0.19 0.55 131 187
OpenFace yolov8 euclidean Facenet TRUE 0.26 0.48 0.55 131 187
OpenFace yolov8 euclidean Facenet2018 FALSE 0.27 0.79 0.55 131 187
OpenFace yolov8 euclidean VGGFace TRUE 0.26 0.25 0.55 131 187
OpenFace yolov8 euclidean VGGFace2 TRUE 0.27 0.25 0.55 131 187
OpenFace yolov8 euclidean ArcFace FALSE 0.28 0.79 0.55 131 187
OpenFace yolov8 euclidean_l2 base FALSE 0.29 0.57 0.55 131 187
OpenFace yolov8 euclidean_l2 raw TRUE 0.27 0.19 0.55 131 187
OpenFace yolov8 euclidean_l2 Facenet TRUE 0.27 0.48 0.55 131 187
OpenFace yolov8 euclidean_l2 Facenet2018 FALSE 0.27 0.79 0.55 131 187
OpenFace yolov8 euclidean_l2 VGGFace TRUE 0.27 0.25 0.55 131 187
OpenFace yolov8 euclidean_l2 VGGFace2 TRUE 0.25 0.25 0.55 131 187
OpenFace yolov8 euclidean_l2 ArcFace FALSE 0.27 0.79 0.55 131 187
OpenFace yunet cosine base FALSE 0.19 0.16 0.10 125 183
OpenFace yunet cosine raw TRUE 0.18 0.01 0.10 125 183
OpenFace yunet cosine Facenet FALSE 0.18 0.21 0.10 125 183
OpenFace yunet cosine Facenet2018 FALSE 0.18 0.30 0.10 125 183
OpenFace yunet cosine VGGFace TRUE 0.18 0.02 0.10 125 183
OpenFace yunet cosine VGGFace2 TRUE 0.18 0.02 0.10 125 183
OpenFace yunet cosine ArcFace FALSE 0.18 0.30 0.10 125 183
OpenFace yunet euclidean base FALSE 0.19 0.57 0.55 125 183
OpenFace yunet euclidean raw TRUE 0.18 0.15 0.55 125 183
OpenFace yunet euclidean Facenet FALSE 0.18 0.64 0.55 125 183
OpenFace yunet euclidean Facenet2018 FALSE 0.18 0.77 0.55 125 183
OpenFace yunet euclidean VGGFace TRUE 0.18 0.20 0.55 125 183
OpenFace yunet euclidean VGGFace2 TRUE 0.18 0.20 0.55 125 183
OpenFace yunet euclidean ArcFace FALSE 0.18 0.77 0.55 125 183
OpenFace yunet euclidean_l2 base FALSE 0.18 0.57 0.55 125 183
OpenFace yunet euclidean_l2 raw TRUE 0.18 0.15 0.55 125 183
OpenFace yunet euclidean_l2 Facenet FALSE 0.18 0.64 0.55 125 183
OpenFace yunet euclidean_l2 Facenet2018 FALSE 0.18 0.77 0.55 125 183
OpenFace yunet euclidean_l2 VGGFace TRUE 0.18 0.20 0.55 125 183
OpenFace yunet euclidean_l2 VGGFace2 TRUE 0.18 0.20 0.55 125 183
OpenFace yunet euclidean_l2 ArcFace FALSE 0.18 0.77 0.55 125 183
OpenFace fastmtcnn cosine base FALSE 0.24 0.27 0.10 125 189
OpenFace fastmtcnn cosine raw TRUE 0.25 0.01 0.10 125 189
OpenFace fastmtcnn cosine Facenet FALSE 0.25 0.10 0.10 125 189
OpenFace fastmtcnn cosine Facenet2018 FALSE 0.24 0.17 0.10 125 189
OpenFace fastmtcnn cosine VGGFace TRUE 0.25 0.04 0.10 125 189
OpenFace fastmtcnn cosine VGGFace2 TRUE 0.26 0.04 0.10 125 189
OpenFace fastmtcnn cosine ArcFace FALSE 0.25 0.17 0.10 125 189
OpenFace fastmtcnn euclidean base FALSE 0.24 0.73 0.55 125 189
OpenFace fastmtcnn euclidean raw TRUE 0.25 0.17 0.55 125 189
OpenFace fastmtcnn euclidean Facenet TRUE 0.26 0.45 0.55 125 189
OpenFace fastmtcnn euclidean Facenet2018 FALSE 0.25 0.59 0.55 125 189
OpenFace fastmtcnn euclidean VGGFace TRUE 0.24 0.27 0.55 125 189
OpenFace fastmtcnn euclidean VGGFace2 TRUE 0.25 0.28 0.55 125 189
OpenFace fastmtcnn euclidean ArcFace FALSE 0.25 0.59 0.55 125 189
OpenFace fastmtcnn euclidean_l2 base FALSE 0.25 0.73 0.55 125 189
OpenFace fastmtcnn euclidean_l2 raw TRUE 0.24 0.17 0.55 125 189
OpenFace fastmtcnn euclidean_l2 Facenet TRUE 0.24 0.45 0.55 125 189
OpenFace fastmtcnn euclidean_l2 Facenet2018 FALSE 0.25 0.59 0.55 125 189
OpenFace fastmtcnn euclidean_l2 VGGFace TRUE 0.25 0.27 0.55 125 189
OpenFace fastmtcnn euclidean_l2 VGGFace2 TRUE 0.25 0.28 0.55 125 189
OpenFace fastmtcnn euclidean_l2 ArcFace FALSE 0.25 0.59 0.55 125 189
DeepFace opencv cosine base FALSE 10.71 0.45 0.23 102 86
DeepFace opencv cosine raw FALSE 2.90 0.50 0.23 102 86
DeepFace opencv cosine Facenet FALSE 2.92 0.32 0.23 102 86
DeepFace opencv cosine Facenet2018 FALSE 2.90 0.28 0.23 102 86
DeepFace opencv cosine VGGFace FALSE 2.91 0.36 0.23 102 86
DeepFace opencv cosine VGGFace2 FALSE 2.88 0.37 0.23 102 86
DeepFace opencv cosine ArcFace FALSE 2.90 0.28 0.23 102 86
DeepFace opencv euclidean base FALSE 2.87 70.71 64.00 102 86
DeepFace opencv euclidean raw FALSE 2.88 10201.88 64.00 102 86
DeepFace opencv euclidean Facenet FALSE 2.88 218.69 64.00 102 86
DeepFace opencv euclidean Facenet2018 FALSE 2.89 118.71 64.00 102 86
DeepFace opencv euclidean VGGFace FALSE 2.88 11270.80 64.00 102 86
DeepFace opencv euclidean VGGFace2 FALSE 2.89 11237.68 64.00 102 86
DeepFace opencv euclidean ArcFace FALSE 2.88 118.33 64.00 102 86
DeepFace opencv euclidean_l2 base FALSE 2.86 0.95 0.64 102 86
DeepFace opencv euclidean_l2 raw FALSE 2.88 1.00 0.64 102 86
DeepFace opencv euclidean_l2 Facenet FALSE 2.88 0.80 0.64 102 86
DeepFace opencv euclidean_l2 Facenet2018 FALSE 2.88 0.75 0.64 102 86
DeepFace opencv euclidean_l2 VGGFace FALSE 2.87 0.85 0.64 102 86
DeepFace opencv euclidean_l2 VGGFace2 FALSE 2.88 0.86 0.64 102 86
DeepFace opencv euclidean_l2 ArcFace FALSE 2.87 0.75 0.64 102 86
DeepFace ssd cosine base FALSE 5.02 0.37 0.23 127 60
DeepFace ssd cosine raw FALSE 5.00 0.42 0.23 283 None
DeepFace ssd cosine Facenet FALSE 4.99 0.27 0.23 283 None
DeepFace ssd cosine Facenet2018 FALSE 5.00 0.25 0.23 127 60
DeepFace ssd cosine VGGFace FALSE 4.98 0.28 0.23 127 60
DeepFace ssd cosine VGGFace2 FALSE 4.98 0.28 0.23 127 60
DeepFace ssd cosine ArcFace FALSE 5.02 0.25 0.23 127 60
DeepFace ssd euclidean base FALSE 4.98 64.00 64.00 127 60
DeepFace ssd euclidean raw FALSE 5.03 10220.76 64.00 127 60
DeepFace ssd euclidean Facenet FALSE 5.00 166.74 64.00 127 60
DeepFace ssd euclidean Facenet2018 FALSE 5.03 116.76 64.00 127 60
DeepFace ssd euclidean VGGFace FALSE 5.00 10827.16 64.00 127 60
DeepFace ssd euclidean VGGFace2 FALSE 5.01 10794.68 64.00 127 60
DeepFace ssd euclidean ArcFace FALSE 4.98 116.38 64.00 127 60
DeepFace ssd euclidean_l2 base FALSE 4.99 0.86 0.64 127 60
DeepFace ssd euclidean_l2 raw FALSE 5.01 0.92 0.64 283 None
DeepFace ssd euclidean_l2 Facenet FALSE 5.00 0.74 0.64 283 None
DeepFace ssd euclidean_l2 Facenet2018 FALSE 5.05 0.70 0.64 127 60
DeepFace ssd euclidean_l2 VGGFace FALSE 5.03 0.75 0.64 127 60
DeepFace ssd euclidean_l2 VGGFace2 FALSE 4.97 0.75 0.64 127 60
DeepFace ssd euclidean_l2 ArcFace FALSE 5.00 0.70 0.64 127 60
DeepFace dlib cosine base FALSE 3.13 0.47 0.23 117 168
DeepFace dlib cosine raw FALSE 2.69 0.50 0.23 117 168
DeepFace dlib cosine Facenet FALSE 2.72 0.36 0.23 117 168
DeepFace dlib cosine Facenet2018 FALSE 2.71 0.44 0.23 117 168
DeepFace dlib cosine VGGFace FALSE 2.68 0.48 0.23 117 168
DeepFace dlib cosine VGGFace2 FALSE 2.70 0.48 0.23 117 168
DeepFace dlib cosine ArcFace FALSE 2.68 0.44 0.23 117 168
DeepFace dlib euclidean base FALSE 2.70 76.52 64.00 117 168
DeepFace dlib euclidean raw FALSE 2.71 9022.63 64.00 117 168
DeepFace dlib euclidean Facenet FALSE 2.68 224.69 64.00 117 168
DeepFace dlib euclidean Facenet2018 FALSE 2.67 122.35 64.00 117 168
DeepFace dlib euclidean VGGFace FALSE 2.70 9864.62 64.00 117 168
DeepFace dlib euclidean VGGFace2 FALSE 2.68 9860.09 64.00 117 168
DeepFace dlib euclidean ArcFace FALSE 2.72 122.01 64.00 117 168
DeepFace dlib euclidean_l2 base FALSE 2.69 0.97 0.64 117 168
DeepFace dlib euclidean_l2 raw FALSE 2.69 1.00 0.64 117 168
DeepFace dlib euclidean_l2 Facenet FALSE 2.68 0.85 0.64 117 168
DeepFace dlib euclidean_l2 Facenet2018 FALSE 2.69 0.93 0.64 117 168
DeepFace dlib euclidean_l2 VGGFace FALSE 2.71 0.98 0.64 117 168
DeepFace dlib euclidean_l2 VGGFace2 FALSE 2.68 0.98 0.64 117 168
DeepFace dlib euclidean_l2 ArcFace FALSE 2.67 0.93 0.64 117 168
DeepFace mtcnn cosine base FALSE 3.54 0.44 0.23 125 188
DeepFace mtcnn cosine raw FALSE 3.55 0.50 0.23 125 188
DeepFace mtcnn cosine Facenet FALSE 3.56 0.30 0.23 125 188
DeepFace mtcnn cosine Facenet2018 FALSE 3.56 0.25 0.23 125 188
DeepFace mtcnn cosine VGGFace FALSE 3.56 0.29 0.23 125 188
DeepFace mtcnn cosine VGGFace2 FALSE 3.55 0.29 0.23 125 188
DeepFace mtcnn cosine ArcFace FALSE 3.63 0.25 0.23 125 188
DeepFace mtcnn euclidean base FALSE 3.57 72.78 64.00 125 188
DeepFace mtcnn euclidean raw FALSE 3.56 11066.55 64.00 125 188
DeepFace mtcnn euclidean Facenet FALSE 3.54 177.95 64.00 125 188
DeepFace mtcnn euclidean Facenet2018 FALSE 3.56 124.82 64.00 125 188
DeepFace mtcnn euclidean VGGFace FALSE 3.56 11944.90 64.00 125 188
DeepFace mtcnn euclidean VGGFace2 FALSE 3.53 11922.60 64.00 125 188
DeepFace mtcnn euclidean ArcFace FALSE 3.54 124.43 64.00 125 188
DeepFace mtcnn euclidean_l2 base FALSE 3.56 0.94 0.64 125 188
DeepFace mtcnn euclidean_l2 raw FALSE 3.59 1.00 0.64 125 188
DeepFace mtcnn euclidean_l2 Facenet FALSE 3.55 0.77 0.64 125 188
DeepFace mtcnn euclidean_l2 Facenet2018 FALSE 3.58 0.71 0.64 125 188
DeepFace mtcnn euclidean_l2 VGGFace FALSE 3.63 0.76 0.64 125 188
DeepFace mtcnn euclidean_l2 VGGFace2 FALSE 3.65 0.77 0.64 125 188
DeepFace mtcnn euclidean_l2 ArcFace FALSE 3.55 0.71 0.64 125 188
DeepFace retinaface cosine base FALSE 4.34 0.40 0.23 133 189
DeepFace retinaface cosine raw FALSE 4.35 0.47 0.23 133 189
DeepFace retinaface cosine Facenet FALSE 4.40 0.28 0.23 133 189
DeepFace retinaface cosine Facenet2018 TRUE 4.33 0.23 0.23 133 189
DeepFace retinaface cosine VGGFace FALSE 4.38 0.26 0.23 133 189
DeepFace retinaface cosine VGGFace2 FALSE 4.33 0.26 0.23 133 189
DeepFace retinaface cosine ArcFace TRUE 4.36 0.23 0.23 133 189
DeepFace retinaface euclidean base FALSE 4.34 69.85 64.00 133 189
DeepFace retinaface euclidean raw FALSE 4.37 10957.77 64.00 133 189
DeepFace retinaface euclidean Facenet FALSE 4.33 165.19 64.00 133 189
DeepFace retinaface euclidean Facenet2018 FALSE 4.38 117.30 64.00 133 189
DeepFace retinaface euclidean VGGFace FALSE 4.38 11102.76 64.00 133 189
DeepFace retinaface euclidean VGGFace2 FALSE 4.33 11098.57 64.00 133 189
DeepFace retinaface euclidean ArcFace FALSE 4.35 116.94 64.00 133 189
DeepFace retinaface euclidean_l2 base FALSE 4.34 0.89 0.64 133 189
DeepFace retinaface euclidean_l2 raw FALSE 4.32 0.97 0.64 133 189
DeepFace retinaface euclidean_l2 Facenet FALSE 4.34 0.75 0.64 133 189
DeepFace retinaface euclidean_l2 Facenet2018 FALSE 4.38 0.67 0.64 133 189
DeepFace retinaface euclidean_l2 VGGFace FALSE 4.41 0.71 0.64 133 189
DeepFace retinaface euclidean_l2 VGGFace2 FALSE 4.37 0.72 0.64 133 189
DeepFace retinaface euclidean_l2 ArcFace FALSE 4.37 0.67 0.64 133 189
DeepFace mediapipe cosine base FALSE 2.38 0.56 0.23 117 187
DeepFace mediapipe cosine raw FALSE 2.37 0.57 0.23 117 187
DeepFace mediapipe cosine Facenet FALSE 2.39 0.37 0.23 117 187
DeepFace mediapipe cosine Facenet2018 FALSE 2.35 0.42 0.23 117 187
DeepFace mediapipe cosine VGGFace FALSE 2.36 0.51 0.23 117 187
DeepFace mediapipe cosine VGGFace2 FALSE 2.37 0.52 0.23 117 187
DeepFace mediapipe cosine ArcFace FALSE 2.38 0.42 0.23 117 187
DeepFace mediapipe euclidean base FALSE 2.36 80.80 64.00 117 187
DeepFace mediapipe euclidean raw FALSE 2.37 9385.52 64.00 117 187
DeepFace mediapipe euclidean Facenet FALSE 2.35 211.44 64.00 117 187
DeepFace mediapipe euclidean Facenet2018 FALSE 2.36 118.08 64.00 117 187
DeepFace mediapipe euclidean VGGFace FALSE 2.37 10106.27 64.00 117 187
DeepFace mediapipe euclidean VGGFace2 FALSE 2.39 10111.53 64.00 117 187
DeepFace mediapipe euclidean ArcFace FALSE 2.36 117.76 64.00 117 187
DeepFace mediapipe euclidean_l2 base FALSE 2.36 1.06 0.64 117 187
DeepFace mediapipe euclidean_l2 raw FALSE 2.38 1.07 0.64 117 187
DeepFace mediapipe euclidean_l2 Facenet FALSE 2.39 0.86 0.64 117 187
DeepFace mediapipe euclidean_l2 Facenet2018 FALSE 2.35 0.92 0.64 117 187
DeepFace mediapipe euclidean_l2 VGGFace FALSE 2.36 1.01 0.64 117 187
DeepFace mediapipe euclidean_l2 VGGFace2 FALSE 2.37 1.02 0.64 117 187
DeepFace mediapipe euclidean_l2 ArcFace FALSE 2.37 0.92 0.64 117 187
DeepFace yolov8 cosine base FALSE 2.59 0.45 0.23 131 187
DeepFace yolov8 cosine raw FALSE 2.49 0.49 0.23 131 187
DeepFace yolov8 cosine Facenet FALSE 2.55 0.29 0.23 131 187
DeepFace yolov8 cosine Facenet2018 FALSE 2.54 0.25 0.23 131 187
DeepFace yolov8 cosine VGGFace FALSE 2.53 0.29 0.23 131 187
DeepFace yolov8 cosine VGGFace2 FALSE 2.50 0.30 0.23 131 187
DeepFace yolov8 cosine ArcFace FALSE 2.52 0.25 0.23 131 187
DeepFace yolov8 euclidean base FALSE 2.50 69.71 64.00 131 187
DeepFace yolov8 euclidean raw FALSE 2.54 10310.88 64.00 131 187
DeepFace yolov8 euclidean Facenet FALSE 2.51 163.02 64.00 131 187
DeepFace yolov8 euclidean Facenet2018 FALSE 2.50 113.37 64.00 131 187
DeepFace yolov8 euclidean VGGFace FALSE 2.50 10758.30 64.00 131 187
DeepFace yolov8 euclidean VGGFace2 FALSE 2.49 10754.78 64.00 131 187
DeepFace yolov8 euclidean ArcFace FALSE 2.52 113.02 64.00 131 187
DeepFace yolov8 euclidean_l2 base FALSE 2.50 0.95 0.64 131 187
DeepFace yolov8 euclidean_l2 raw FALSE 2.53 0.99 0.64 131 187
DeepFace yolov8 euclidean_l2 Facenet FALSE 2.51 0.76 0.64 131 187
DeepFace yolov8 euclidean_l2 Facenet2018 FALSE 2.52 0.71 0.64 131 187
DeepFace yolov8 euclidean_l2 VGGFace FALSE 2.48 0.76 0.64 131 187
DeepFace yolov8 euclidean_l2 VGGFace2 FALSE 2.51 0.77 0.64 131 187
DeepFace yolov8 euclidean_l2 ArcFace FALSE 2.50 0.71 0.64 131 187
DeepFace yunet cosine base FALSE 2.40 0.45 0.23 125 183
DeepFace yunet cosine raw FALSE 2.41 0.48 0.23 125 183
DeepFace yunet cosine Facenet FALSE 2.40 0.31 0.23 125 183
DeepFace yunet cosine Facenet2018 FALSE 2.39 0.26 0.23 125 183
DeepFace yunet cosine VGGFace FALSE 2.40 0.30 0.23 125 183
DeepFace yunet cosine VGGFace2 FALSE 2.66 0.30 0.23 125 183
DeepFace yunet cosine ArcFace FALSE 2.40 0.26 0.23 125 183
DeepFace yunet euclidean base FALSE 2.41 72.63 64.00 125 183
DeepFace yunet euclidean raw FALSE 2.42 10855.07 64.00 125 183
DeepFace yunet euclidean Facenet FALSE 2.40 188.53 64.00 125 183
DeepFace yunet euclidean Facenet2018 FALSE 2.42 125.07 64.00 125 183
DeepFace yunet euclidean VGGFace FALSE 2.41 12461.98 64.00 125 183
DeepFace yunet euclidean VGGFace2 FALSE 2.40 12436.83 64.00 125 183
DeepFace yunet euclidean ArcFace FALSE 2.39 124.67 64.00 125 183
DeepFace yunet euclidean_l2 base FALSE 2.42 0.95 0.64 125 183
DeepFace yunet euclidean_l2 raw FALSE 2.43 0.98 0.64 125 183
DeepFace yunet euclidean_l2 Facenet FALSE 2.40 0.78 0.64 125 183
DeepFace yunet euclidean_l2 Facenet2018 FALSE 2.39 0.72 0.64 125 183
DeepFace yunet euclidean_l2 VGGFace FALSE 2.40 0.77 0.64 125 183
DeepFace yunet euclidean_l2 VGGFace2 FALSE 2.40 0.77 0.64 125 183
DeepFace yunet euclidean_l2 ArcFace FALSE 2.40 0.72 0.64 125 183
DeepFace fastmtcnn cosine base FALSE 2.49 0.44 0.23 125 189
DeepFace fastmtcnn cosine raw FALSE 2.51 0.50 0.23 125 189
DeepFace fastmtcnn cosine Facenet FALSE 2.52 0.30 0.23 125 189
DeepFace fastmtcnn cosine Facenet2018 FALSE 2.50 0.25 0.23 125 189
DeepFace fastmtcnn cosine VGGFace FALSE 2.51 0.29 0.23 125 189
DeepFace fastmtcnn cosine VGGFace2 FALSE 2.48 0.30 0.23 125 189
DeepFace fastmtcnn cosine ArcFace FALSE 2.50 0.25 0.23 125 189
DeepFace fastmtcnn euclidean base FALSE 2.50 73.65 64.00 125 189
DeepFace fastmtcnn euclidean raw FALSE 2.47 11269.98 64.00 125 189
DeepFace fastmtcnn euclidean Facenet FALSE 2.50 176.11 64.00 125 189
DeepFace fastmtcnn euclidean Facenet2018 FALSE 2.46 123.98 64.00 125 189
DeepFace fastmtcnn euclidean VGGFace FALSE 2.48 11919.30 64.00 125 189
DeepFace fastmtcnn euclidean VGGFace2 FALSE 2.50 11918.56 64.00 125 189
DeepFace fastmtcnn euclidean ArcFace FALSE 2.52 123.59 64.00 125 189
DeepFace fastmtcnn euclidean_l2 base FALSE 2.46 0.94 0.64 125 189
DeepFace fastmtcnn euclidean_l2 raw FALSE 2.51 1.00 0.64 125 189
DeepFace fastmtcnn euclidean_l2 Facenet FALSE 2.52 0.78 0.64 125 189
DeepFace fastmtcnn euclidean_l2 Facenet2018 FALSE 2.51 0.71 0.64 125 189
DeepFace fastmtcnn euclidean_l2 VGGFace FALSE 2.48 0.76 0.64 125 189
DeepFace fastmtcnn euclidean_l2 VGGFace2 FALSE 2.51 0.77 0.64 125 189
DeepFace fastmtcnn euclidean_l2 ArcFace FALSE 2.47 0.71 0.64 125 189
DeepID opencv cosine base FALSE 0.61 0.08 0.02 102 86
DeepID opencv cosine raw FALSE 0.53 0.09 0.02 102 86
DeepID opencv cosine Facenet FALSE 0.53 0.14 0.02 102 86
DeepID opencv cosine Facenet2018 FALSE 0.53 0.21 0.02 102 86
DeepID opencv cosine VGGFace FALSE 0.53 0.19 0.02 102 86
DeepID opencv cosine VGGFace2 FALSE 0.53 0.19 0.02 102 86
DeepID opencv cosine ArcFace FALSE 0.53 0.21 0.02 102 86
DeepID opencv euclidean base FALSE 0.53 102.99 45.00 102 86
DeepID opencv euclidean raw FALSE 0.53 26421.83 45.00 102 86
DeepID opencv euclidean Facenet FALSE 0.53 321.36 45.00 102 86
DeepID opencv euclidean Facenet2018 FALSE 0.54 182.77 45.00 102 86
DeepID opencv euclidean VGGFace FALSE 0.53 23405.09 45.00 102 86
DeepID opencv euclidean VGGFace2 FALSE 0.53 23530.69 45.00 102 86
DeepID opencv euclidean ArcFace FALSE 0.53 182.05 45.00 102 86
DeepID opencv euclidean_l2 base FALSE 0.53 0.40 0.17 102 86
DeepID opencv euclidean_l2 raw FALSE 0.53 0.42 0.17 102 86
DeepID opencv euclidean_l2 Facenet FALSE 0.53 0.52 0.17 102 86
DeepID opencv euclidean_l2 Facenet2018 FALSE 0.53 0.64 0.17 102 86
DeepID opencv euclidean_l2 VGGFace FALSE 0.53 0.62 0.17 102 86
DeepID opencv euclidean_l2 VGGFace2 FALSE 0.53 0.62 0.17 102 86
DeepID opencv euclidean_l2 ArcFace FALSE 0.53 0.64 0.17 102 86
DeepID ssd cosine base FALSE 0.32 0.07 0.02 127 60
DeepID ssd cosine raw FALSE 0.31 0.08 0.02 127 60
DeepID ssd cosine Facenet FALSE 0.31 0.13 0.02 127 60
DeepID ssd cosine Facenet2018 FALSE 0.31 0.15 0.02 127 60
DeepID ssd cosine VGGFace FALSE 0.32 0.16 0.02 127 60
DeepID ssd cosine VGGFace2 FALSE 0.31 0.16 0.02 127 60
DeepID ssd cosine ArcFace FALSE 0.31 0.15 0.02 127 60
DeepID ssd euclidean base FALSE 0.31 103.44 45.00 127 60
DeepID ssd euclidean raw FALSE 0.31 26677.13 45.00 127 60
DeepID ssd euclidean Facenet FALSE 0.31 356.06 45.00 127 60
DeepID ssd euclidean Facenet2018 FALSE 0.32 173.21 45.00 127 60
DeepID ssd euclidean VGGFace FALSE 0.32 23198.40 45.00 127 60
DeepID ssd euclidean VGGFace2 FALSE 0.31 23449.17 45.00 127 60
DeepID ssd euclidean ArcFace FALSE 0.31 172.52 45.00 127 60
DeepID ssd euclidean_l2 base FALSE 0.31 0.38 0.17 127 60
DeepID ssd euclidean_l2 raw FALSE 0.31 0.41 0.17 127 60
DeepID ssd euclidean_l2 Facenet FALSE 0.31 0.51 0.17 127 60
DeepID ssd euclidean_l2 Facenet2018 FALSE 0.31 0.55 0.17 127 60
DeepID ssd euclidean_l2 VGGFace FALSE 0.31 0.57 0.17 127 60
DeepID ssd euclidean_l2 VGGFace2 FALSE 0.31 0.57 0.17 127 60
DeepID ssd euclidean_l2 ArcFace FALSE 0.31 0.55 0.17 127 60
DeepID dlib cosine base FALSE 0.36 0.03 0.02 117 168
DeepID dlib cosine raw FALSE 0.36 0.04 0.02 117 168
DeepID dlib cosine Facenet FALSE 0.36 0.09 0.02 117 168
DeepID dlib cosine Facenet2018 FALSE 0.36 0.14 0.02 117 168
DeepID dlib cosine VGGFace FALSE 0.36 0.12 0.02 117 168
DeepID dlib cosine VGGFace2 FALSE 0.36 0.12 0.02 117 168
DeepID dlib cosine ArcFace FALSE 0.36 0.14 0.02 117 168
DeepID dlib euclidean base FALSE 0.37 75.65 45.00 117 168
DeepID dlib euclidean raw FALSE 0.37 19679.41 45.00 117 168
DeepID dlib euclidean Facenet FALSE 0.36 209.15 45.00 117 168
DeepID dlib euclidean Facenet2018 FALSE 0.36 154.49 45.00 117 168
DeepID dlib euclidean VGGFace FALSE 0.36 19410.74 45.00 117 168
DeepID dlib euclidean VGGFace2 FALSE 0.36 19517.52 45.00 117 168
DeepID dlib euclidean ArcFace FALSE 0.36 153.86 45.00 117 168
DeepID dlib euclidean_l2 base FALSE 0.36 0.26 0.17 117 168
DeepID dlib euclidean_l2 raw FALSE 0.36 0.29 0.17 117 168
DeepID dlib euclidean_l2 Facenet FALSE 0.36 0.43 0.17 117 168
DeepID dlib euclidean_l2 Facenet2018 FALSE 0.36 0.53 0.17 117 168
DeepID dlib euclidean_l2 VGGFace FALSE 0.36 0.49 0.17 117 168
DeepID dlib euclidean_l2 VGGFace2 FALSE 0.36 0.50 0.17 117 168
DeepID dlib euclidean_l2 ArcFace FALSE 0.36 0.52 0.17 117 168
DeepID mtcnn cosine base FALSE 1.23 0.07 0.02 125 188
DeepID mtcnn cosine raw FALSE 1.22 0.08 0.02 125 188
DeepID mtcnn cosine Facenet FALSE 1.24 0.13 0.02 125 188
DeepID mtcnn cosine Facenet2018 FALSE 1.23 0.15 0.02 125 188
DeepID mtcnn cosine VGGFace FALSE 1.23 0.17 0.02 125 188
DeepID mtcnn cosine VGGFace2 FALSE 1.22 0.17 0.02 125 188
DeepID mtcnn cosine ArcFace FALSE 1.22 0.15 0.02 125 188
DeepID mtcnn euclidean base FALSE 1.23 100.00 45.00 125 188
DeepID mtcnn euclidean raw FALSE 1.23 25862.65 45.00 125 188
DeepID mtcnn euclidean Facenet FALSE 1.23 333.32 45.00 125 188
DeepID mtcnn euclidean Facenet2018 FALSE 1.22 172.49 45.00 125 188
DeepID mtcnn euclidean VGGFace FALSE 1.23 23162.26 45.00 125 188
DeepID mtcnn euclidean VGGFace2 FALSE 1.22 23381.99 45.00 125 188
DeepID mtcnn euclidean ArcFace FALSE 1.23 171.80 45.00 125 188
DeepID mtcnn euclidean_l2 base FALSE 1.21 0.37 0.17 125 188
DeepID mtcnn euclidean_l2 raw FALSE 1.22 0.39 0.17 125 188
DeepID mtcnn euclidean_l2 Facenet FALSE 1.21 0.51 0.17 125 188
DeepID mtcnn euclidean_l2 Facenet2018 FALSE 1.23 0.55 0.17 125 188
DeepID mtcnn euclidean_l2 VGGFace FALSE 1.22 0.58 0.17 125 188
DeepID mtcnn euclidean_l2 VGGFace2 FALSE 1.22 0.58 0.17 125 188
DeepID mtcnn euclidean_l2 ArcFace FALSE 1.26 0.55 0.17 125 188
DeepID retinaface cosine base FALSE 1.91 0.08 0.02 133 189
DeepID retinaface cosine raw FALSE 1.87 0.09 0.02 133 189
DeepID retinaface cosine Facenet FALSE 1.85 0.13 0.02 133 189
DeepID retinaface cosine Facenet2018 FALSE 1.91 0.15 0.02 133 189
DeepID retinaface cosine VGGFace FALSE 1.93 0.17 0.02 133 189
DeepID retinaface cosine VGGFace2 FALSE 1.87 0.17 0.02 133 189
DeepID retinaface cosine ArcFace FALSE 1.95 0.15 0.02 133 189
DeepID retinaface euclidean base FALSE 1.95 107.95 45.00 133 189
DeepID retinaface euclidean raw FALSE 1.89 27927.72 45.00 133 189
DeepID retinaface euclidean Facenet FALSE 1.87 370.46 45.00 133 189
DeepID retinaface euclidean Facenet2018 FALSE 1.89 171.74 45.00 133 189
DeepID retinaface euclidean VGGFace FALSE 1.96 23345.48 45.00 133 189
DeepID retinaface euclidean VGGFace2 FALSE 1.94 23648.52 45.00 133 189
DeepID retinaface euclidean ArcFace FALSE 1.91 171.06 45.00 133 189
DeepID retinaface euclidean_l2 base FALSE 1.93 0.40 0.17 133 189
DeepID retinaface euclidean_l2 raw FALSE 1.93 0.42 0.17 133 189
DeepID retinaface euclidean_l2 Facenet FALSE 1.87 0.52 0.17 133 189
DeepID retinaface euclidean_l2 Facenet2018 FALSE 1.89 0.55 0.17 133 189
DeepID retinaface euclidean_l2 VGGFace FALSE 1.91 0.58 0.17 133 189
DeepID retinaface euclidean_l2 VGGFace2 FALSE 1.91 0.58 0.17 133 189
DeepID retinaface euclidean_l2 ArcFace FALSE 1.96 0.55 0.17 133 189
DeepID mediapipe cosine base FALSE 0.03 0.05 0.02 117 187
DeepID mediapipe cosine raw FALSE 0.04 0.06 0.02 117 187
DeepID mediapipe cosine Facenet FALSE 0.03 0.12 0.02 117 187
DeepID mediapipe cosine Facenet2018 FALSE 0.03 0.22 0.02 117 187
DeepID mediapipe cosine VGGFace FALSE 0.03 0.19 0.02 117 187
DeepID mediapipe cosine VGGFace2 FALSE 0.03 0.19 0.02 117 187
DeepID mediapipe cosine ArcFace FALSE 0.03 0.22 0.02 117 187
DeepID mediapipe euclidean base FALSE 0.03 85.65 45.00 117 187
DeepID mediapipe euclidean raw FALSE 0.03 21996.86 45.00 117 187
DeepID mediapipe euclidean Facenet FALSE 0.03 241.18 45.00 117 187
DeepID mediapipe euclidean Facenet2018 FALSE 0.03 186.75 45.00 117 187
DeepID mediapipe euclidean VGGFace FALSE 0.03 22655.84 45.00 117 187
DeepID mediapipe euclidean VGGFace2 FALSE 0.03 22731.76 45.00 117 187
DeepID mediapipe euclidean ArcFace FALSE 0.03 186.00 45.00 117 187
DeepID mediapipe euclidean_l2 base FALSE 0.03 0.31 0.17 117 187
DeepID mediapipe euclidean_l2 raw FALSE 0.03 0.34 0.17 117 187
DeepID mediapipe euclidean_l2 Facenet FALSE 0.03 0.50 0.17 117 187
DeepID mediapipe euclidean_l2 Facenet2018 FALSE 0.03 0.66 0.17 117 187
DeepID mediapipe euclidean_l2 VGGFace FALSE 0.03 0.61 0.17 117 187
DeepID mediapipe euclidean_l2 VGGFace2 FALSE 0.03 0.61 0.17 117 187
DeepID mediapipe euclidean_l2 ArcFace FALSE 0.03 0.66 0.17 117 187
DeepID yolov8 cosine base FALSE 0.16 0.06 0.02 131 187
DeepID yolov8 cosine raw FALSE 0.16 0.07 0.02 131 187
DeepID yolov8 cosine Facenet FALSE 0.15 0.12 0.02 131 187
DeepID yolov8 cosine Facenet2018 FALSE 0.15 0.14 0.02 131 187
DeepID yolov8 cosine VGGFace FALSE 0.16 0.15 0.02 131 187
DeepID yolov8 cosine VGGFace2 FALSE 0.15 0.15 0.02 131 187
DeepID yolov8 cosine ArcFace FALSE 0.14 0.14 0.02 131 187
DeepID yolov8 euclidean base FALSE 0.15 91.67 45.00 131 187
DeepID yolov8 euclidean raw FALSE 0.15 23798.56 45.00 131 187
DeepID yolov8 euclidean Facenet FALSE 0.15 296.96 45.00 131 187
DeepID yolov8 euclidean Facenet2018 FALSE 0.15 164.15 45.00 131 187
DeepID yolov8 euclidean VGGFace FALSE 0.16 22175.42 45.00 131 187
DeepID yolov8 euclidean VGGFace2 FALSE 0.16 22301.71 45.00 131 187
DeepID yolov8 euclidean ArcFace FALSE 0.15 163.50 45.00 131 187
DeepID yolov8 euclidean_l2 base FALSE 0.14 0.34 0.17 131 187
DeepID yolov8 euclidean_l2 raw FALSE 0.16 0.37 0.17 131 187
DeepID yolov8 euclidean_l2 Facenet FALSE 0.14 0.49 0.17 131 187
DeepID yolov8 euclidean_l2 Facenet2018 FALSE 0.16 0.52 0.17 131 187
DeepID yolov8 euclidean_l2 VGGFace FALSE 0.15 0.55 0.17 131 187
DeepID yolov8 euclidean_l2 VGGFace2 FALSE 0.15 0.55 0.17 131 187
DeepID yolov8 euclidean_l2 ArcFace FALSE 0.15 0.52 0.17 131 187
DeepID yunet cosine base FALSE 0.08 0.07 0.02 125 183
DeepID yunet cosine raw FALSE 0.09 0.08 0.02 125 183
DeepID yunet cosine Facenet FALSE 0.08 0.12 0.02 125 183
DeepID yunet cosine Facenet2018 FALSE 0.08 0.13 0.02 125 183
DeepID yunet cosine VGGFace FALSE 0.08 0.14 0.02 125 183
DeepID yunet cosine VGGFace2 FALSE 0.08 0.14 0.02 125 183
DeepID yunet cosine ArcFace FALSE 0.08 0.13 0.02 125 183
DeepID yunet euclidean base FALSE 0.08 98.35 45.00 125 183
DeepID yunet euclidean raw FALSE 0.08 25303.35 45.00 125 183
DeepID yunet euclidean Facenet FALSE 0.08 310.12 45.00 125 183
DeepID yunet euclidean Facenet2018 FALSE 0.08 162.17 45.00 125 183
DeepID yunet euclidean VGGFace FALSE 0.08 21195.87 45.00 125 183
DeepID yunet euclidean VGGFace2 FALSE 0.07 21347.83 45.00 125 183
DeepID yunet euclidean ArcFace FALSE 0.08 161.53 45.00 125 183
DeepID yunet euclidean_l2 base FALSE 0.08 0.36 0.17 125 183
DeepID yunet euclidean_l2 raw FALSE 0.08 0.39 0.17 125 183
DeepID yunet euclidean_l2 Facenet FALSE 0.08 0.49 0.17 125 183
DeepID yunet euclidean_l2 Facenet2018 FALSE 0.08 0.51 0.17 125 183
DeepID yunet euclidean_l2 VGGFace FALSE 0.08 0.53 0.17 125 183
DeepID yunet euclidean_l2 VGGFace2 FALSE 0.08 0.53 0.17 125 183
DeepID yunet euclidean_l2 ArcFace FALSE 0.08 0.51 0.17 125 183
DeepID fastmtcnn cosine base FALSE 0.13 0.06 0.02 125 189
DeepID fastmtcnn cosine raw FALSE 0.13 0.07 0.02 125 189
DeepID fastmtcnn cosine Facenet FALSE 0.14 0.12 0.02 125 189
DeepID fastmtcnn cosine Facenet2018 FALSE 0.13 0.14 0.02 125 189
DeepID fastmtcnn cosine VGGFace FALSE 0.13 0.15 0.02 125 189
DeepID fastmtcnn cosine VGGFace2 FALSE 0.14 0.16 0.02 125 189
DeepID fastmtcnn cosine ArcFace FALSE 0.13 0.14 0.02 125 189
DeepID fastmtcnn euclidean base FALSE 0.13 95.48 45.00 125 189
DeepID fastmtcnn euclidean raw FALSE 0.13 24647.90 45.00 125 189
DeepID fastmtcnn euclidean Facenet FALSE 0.14 310.46 45.00 125 189
DeepID fastmtcnn euclidean Facenet2018 FALSE 0.13 163.98 45.00 125 189
DeepID fastmtcnn euclidean VGGFace FALSE 0.13 22044.98 45.00 125 189
DeepID fastmtcnn euclidean VGGFace2 FALSE 0.13 22232.51 45.00 125 189
DeepID fastmtcnn euclidean ArcFace FALSE 0.13 163.33 45.00 125 189
DeepID fastmtcnn euclidean_l2 base FALSE 0.14 0.35 0.17 125 189
DeepID fastmtcnn euclidean_l2 raw FALSE 0.14 0.37 0.17 125 189
DeepID fastmtcnn euclidean_l2 Facenet FALSE 0.14 0.49 0.17 125 189
DeepID fastmtcnn euclidean_l2 Facenet2018 FALSE 0.13 0.53 0.17 125 189
DeepID fastmtcnn euclidean_l2 VGGFace FALSE 0.13 0.55 0.17 125 189
DeepID fastmtcnn euclidean_l2 VGGFace2 FALSE 0.13 0.56 0.17 125 189
DeepID fastmtcnn euclidean_l2 ArcFace FALSE 0.13 0.53 0.17 125 189
ArcFace opencv cosine base TRUE 1.83 0.48 0.68 102 86
ArcFace opencv cosine raw TRUE 0.79 0.12 0.68 102 86
ArcFace opencv cosine Facenet TRUE 0.79 0.56 0.68 102 86
ArcFace opencv cosine Facenet2018 TRUE 0.79 0.52 0.68 102 86
ArcFace opencv cosine VGGFace TRUE 0.78 0.12 0.68 102 86
ArcFace opencv cosine VGGFace2 TRUE 0.79 0.13 0.68 102 86
ArcFace opencv cosine ArcFace TRUE 0.79 0.52 0.68 102 86
ArcFace opencv euclidean base TRUE 0.79 3.55 4.15 102 86
ArcFace opencv euclidean raw FALSE 0.79 4412.95 4.15 102 86
ArcFace opencv euclidean Facenet FALSE 0.79 23.50 4.15 102 86
ArcFace opencv euclidean Facenet2018 TRUE 0.79 3.83 4.15 102 86
ArcFace opencv euclidean VGGFace FALSE 0.79 4860.02 4.15 102 86
ArcFace opencv euclidean VGGFace2 FALSE 0.80 4781.63 4.15 102 86
ArcFace opencv euclidean ArcFace TRUE 0.79 3.83 4.15 102 86
ArcFace opencv euclidean_l2 base TRUE 0.78 0.98 1.13 102 86
ArcFace opencv euclidean_l2 raw TRUE 0.79 0.50 1.13 102 86
ArcFace opencv euclidean_l2 Facenet TRUE 0.79 1.06 1.13 102 86
ArcFace opencv euclidean_l2 Facenet2018 TRUE 0.79 1.02 1.13 102 86
ArcFace opencv euclidean_l2 VGGFace TRUE 0.79 0.50 1.13 102 86
ArcFace opencv euclidean_l2 VGGFace2 TRUE 0.79 0.50 1.13 102 86
ArcFace opencv euclidean_l2 ArcFace TRUE 0.78 1.02 1.13 102 86
ArcFace ssd cosine base TRUE 0.83 0.04 0.68 283 None
ArcFace ssd cosine raw TRUE 0.83 0.12 0.68 127 60
ArcFace ssd cosine Facenet TRUE 0.83 0.30 0.68 283 None
ArcFace ssd cosine Facenet2018 TRUE 0.83 0.07 0.68 283 None
ArcFace ssd cosine VGGFace TRUE 0.84 0.07 0.68 127 60
ArcFace ssd cosine VGGFace2 TRUE 0.84 0.07 0.68 127 60
ArcFace ssd cosine ArcFace TRUE 0.83 0.07 0.68 283 None
ArcFace ssd euclidean base TRUE 0.83 1.74 4.15 283 None
ArcFace ssd euclidean raw FALSE 0.83 4166.21 4.15 283 None
ArcFace ssd euclidean Facenet FALSE 0.83 14.41 4.15 283 None
ArcFace ssd euclidean Facenet2018 TRUE 0.83 1.46 4.15 283 None
ArcFace ssd euclidean VGGFace FALSE 0.83 4808.30 4.15 127 60
ArcFace ssd euclidean VGGFace2 FALSE 0.83 4745.28 4.15 127 60
ArcFace ssd euclidean ArcFace TRUE 0.83 1.41 4.15 283 None
ArcFace ssd euclidean_l2 base TRUE 0.84 0.29 1.13 283 None
ArcFace ssd euclidean_l2 raw TRUE 0.83 0.50 1.13 127 60
ArcFace ssd euclidean_l2 Facenet TRUE 0.83 0.77 1.13 283 None
ArcFace ssd euclidean_l2 Facenet2018 TRUE 0.83 0.39 1.13 283 None
ArcFace ssd euclidean_l2 VGGFace TRUE 0.83 0.36 1.13 127 60
ArcFace ssd euclidean_l2 VGGFace2 TRUE 0.84 0.37 1.13 127 60
ArcFace ssd euclidean_l2 ArcFace TRUE 0.83 0.36 1.13 283 None
ArcFace dlib cosine base TRUE 0.62 0.49 0.68 117 168
ArcFace dlib cosine raw TRUE 0.63 0.11 0.68 117 168
ArcFace dlib cosine Facenet TRUE 0.62 0.20 0.68 117 168
ArcFace dlib cosine Facenet2018 TRUE 0.62 0.49 0.68 117 168
ArcFace dlib cosine VGGFace TRUE 0.62 0.18 0.68 117 168
ArcFace dlib cosine VGGFace2 TRUE 0.62 0.18 0.68 117 168
ArcFace dlib cosine ArcFace TRUE 0.63 0.49 0.68 117 168
ArcFace dlib euclidean base TRUE 0.63 3.00 4.15 117 168
ArcFace dlib euclidean raw FALSE 0.62 4830.40 4.15 117 168
ArcFace dlib euclidean Facenet FALSE 0.63 20.29 4.15 117 168
ArcFace dlib euclidean Facenet2018 TRUE 0.63 3.22 4.15 117 168
ArcFace dlib euclidean VGGFace FALSE 0.62 3254.40 4.15 117 168
ArcFace dlib euclidean VGGFace2 FALSE 0.63 3197.00 4.15 117 168
ArcFace dlib euclidean ArcFace TRUE 0.62 3.22 4.15 117 168
ArcFace dlib euclidean_l2 base TRUE 0.62 0.99 1.13 117 168
ArcFace dlib euclidean_l2 raw TRUE 0.63 0.48 1.13 117 168
ArcFace dlib euclidean_l2 Facenet TRUE 0.62 0.64 1.13 117 168
ArcFace dlib euclidean_l2 Facenet2018 TRUE 0.62 0.99 1.13 117 168
ArcFace dlib euclidean_l2 VGGFace TRUE 0.63 0.59 1.13 117 168
ArcFace dlib euclidean_l2 VGGFace2 TRUE 0.62 0.59 1.13 117 168
ArcFace dlib euclidean_l2 ArcFace TRUE 0.63 0.99 1.13 117 168
ArcFace mtcnn cosine base TRUE 1.50 0.50 0.68 125 188
ArcFace mtcnn cosine raw TRUE 1.49 0.11 0.68 125 188
ArcFace mtcnn cosine Facenet TRUE 1.47 0.34 0.68 125 188
ArcFace mtcnn cosine Facenet2018 TRUE 1.49 0.54 0.68 125 188
ArcFace mtcnn cosine VGGFace TRUE 1.48 0.06 0.68 125 188
ArcFace mtcnn cosine VGGFace2 TRUE 1.50 0.06 0.68 125 188
ArcFace mtcnn cosine ArcFace TRUE 1.48 0.54 0.68 125 188
ArcFace mtcnn euclidean base TRUE 1.49 3.39 4.15 125 188
ArcFace mtcnn euclidean raw FALSE 1.49 3830.48 4.15 125 188
ArcFace mtcnn euclidean Facenet FALSE 1.49 15.10 4.15 125 188
ArcFace mtcnn euclidean Facenet2018 TRUE 1.50 3.66 4.15 125 188
ArcFace mtcnn euclidean VGGFace FALSE 1.48 3789.70 4.15 125 188
ArcFace mtcnn euclidean VGGFace2 FALSE 1.79 3734.27 4.15 125 188
ArcFace mtcnn euclidean ArcFace TRUE 1.49 3.68 4.15 125 188
ArcFace mtcnn euclidean_l2 base TRUE 1.51 1.00 1.13 125 188
ArcFace mtcnn euclidean_l2 raw TRUE 1.50 0.47 1.13 125 188
ArcFace mtcnn euclidean_l2 Facenet TRUE 1.50 0.82 1.13 125 188
ArcFace mtcnn euclidean_l2 Facenet2018 TRUE 1.49 1.04 1.13 125 188
ArcFace mtcnn euclidean_l2 VGGFace TRUE 1.50 0.35 1.13 125 188
ArcFace mtcnn euclidean_l2 VGGFace2 TRUE 1.49 0.35 1.13 125 188
ArcFace mtcnn euclidean_l2 ArcFace TRUE 1.49 1.04 1.13 125 188
ArcFace retinaface cosine base TRUE 2.21 0.53 0.68 133 189
ArcFace retinaface cosine raw TRUE 2.25 0.11 0.68 133 189
ArcFace retinaface cosine Facenet TRUE 2.32 0.41 0.68 133 189
ArcFace retinaface cosine Facenet2018 TRUE 2.18 0.56 0.68 133 189
ArcFace retinaface cosine VGGFace TRUE 2.17 0.05 0.68 133 189
ArcFace retinaface cosine VGGFace2 TRUE 2.18 0.05 0.68 133 189
ArcFace retinaface cosine ArcFace TRUE 2.26 0.57 0.68 133 189
ArcFace retinaface euclidean base TRUE 2.22 3.35 4.15 133 189
ArcFace retinaface euclidean raw FALSE 2.32 3783.01 4.15 133 189
ArcFace retinaface euclidean Facenet FALSE 2.37 15.48 4.15 133 189
ArcFace retinaface euclidean Facenet2018 TRUE 2.22 3.59 4.15 133 189
ArcFace retinaface euclidean VGGFace FALSE 2.24 4251.46 4.15 133 189
ArcFace retinaface euclidean VGGFace2 FALSE 2.17 4197.19 4.15 133 189
ArcFace retinaface euclidean ArcFace TRUE 2.17 3.61 4.15 133 189
ArcFace retinaface euclidean_l2 base TRUE 2.17 1.03 1.13 133 189
ArcFace retinaface euclidean_l2 raw TRUE 2.22 0.48 1.13 133 189
ArcFace retinaface euclidean_l2 Facenet TRUE 2.19 0.91 1.13 133 189
ArcFace retinaface euclidean_l2 Facenet2018 TRUE 2.18 1.06 1.13 133 189
ArcFace retinaface euclidean_l2 VGGFace TRUE 2.17 0.33 1.13 133 189
ArcFace retinaface euclidean_l2 VGGFace2 TRUE 2.20 0.33 1.13 133 189
ArcFace retinaface euclidean_l2 ArcFace TRUE 2.22 1.07 1.13 133 189
ArcFace mediapipe cosine base TRUE 0.30 0.52 0.68 117 187
ArcFace mediapipe cosine raw TRUE 0.30 0.15 0.68 117 187
ArcFace mediapipe cosine Facenet TRUE 0.29 0.24 0.68 117 187
ArcFace mediapipe cosine Facenet2018 TRUE 0.29 0.55 0.68 117 187
ArcFace mediapipe cosine VGGFace TRUE 0.30 0.19 0.68 117 187
ArcFace mediapipe cosine VGGFace2 TRUE 0.30 0.19 0.68 117 187
ArcFace mediapipe cosine ArcFace TRUE 0.29 0.55 0.68 117 187
ArcFace mediapipe euclidean base TRUE 0.30 3.48 4.15 117 187
ArcFace mediapipe euclidean raw FALSE 0.29 5515.34 4.15 117 187
ArcFace mediapipe euclidean Facenet FALSE 0.29 22.64 4.15 117 187
ArcFace mediapipe euclidean Facenet2018 TRUE 0.29 3.73 4.15 117 187
ArcFace mediapipe euclidean VGGFace FALSE 0.30 3565.09 4.15 117 187
ArcFace mediapipe euclidean VGGFace2 FALSE 0.29 3505.45 4.15 117 187
ArcFace mediapipe euclidean ArcFace TRUE 0.29 3.73 4.15 117 187
ArcFace mediapipe euclidean_l2 base TRUE 0.30 1.02 1.13 117 187
ArcFace mediapipe euclidean_l2 raw TRUE 0.30 0.54 1.13 117 187
ArcFace mediapipe euclidean_l2 Facenet TRUE 0.30 0.70 1.13 117 187
ArcFace mediapipe euclidean_l2 Facenet2018 TRUE 0.31 1.05 1.13 117 187
ArcFace mediapipe euclidean_l2 VGGFace TRUE 0.29 0.61 1.13 117 187
ArcFace mediapipe euclidean_l2 VGGFace2 TRUE 0.29 0.61 1.13 117 187
ArcFace mediapipe euclidean_l2 ArcFace TRUE 0.29 1.05 1.13 117 187
ArcFace yolov8 cosine base TRUE 0.46 0.51 0.68 131 187
ArcFace yolov8 cosine raw TRUE 0.44 0.11 0.68 131 187
ArcFace yolov8 cosine Facenet TRUE 0.44 0.29 0.68 131 187
ArcFace yolov8 cosine Facenet2018 TRUE 0.43 0.51 0.68 131 187
ArcFace yolov8 cosine VGGFace TRUE 0.44 0.07 0.68 131 187
ArcFace yolov8 cosine VGGFace2 TRUE 0.44 0.07 0.68 131 187
ArcFace yolov8 cosine ArcFace TRUE 0.43 0.52 0.68 131 187
ArcFace yolov8 euclidean base TRUE 0.44 3.51 4.15 131 187
ArcFace yolov8 euclidean raw FALSE 0.42 3752.17 4.15 131 187
ArcFace yolov8 euclidean Facenet FALSE 0.44 14.23 4.15 131 187
ArcFace yolov8 euclidean Facenet2018 TRUE 0.45 3.68 4.15 131 187
ArcFace yolov8 euclidean VGGFace FALSE 0.43 3669.13 4.15 131 187
ArcFace yolov8 euclidean VGGFace2 FALSE 0.44 3622.89 4.15 131 187
ArcFace yolov8 euclidean ArcFace TRUE 0.42 3.69 4.15 131 187
ArcFace yolov8 euclidean_l2 base TRUE 0.45 1.01 1.13 131 187
ArcFace yolov8 euclidean_l2 raw TRUE 0.43 0.46 1.13 131 187
ArcFace yolov8 euclidean_l2 Facenet TRUE 0.44 0.76 1.13 131 187
ArcFace yolov8 euclidean_l2 Facenet2018 TRUE 0.43 1.01 1.13 131 187
ArcFace yolov8 euclidean_l2 VGGFace TRUE 0.44 0.36 1.13 131 187
ArcFace yolov8 euclidean_l2 VGGFace2 TRUE 0.44 0.37 1.13 131 187
ArcFace yolov8 euclidean_l2 ArcFace TRUE 0.44 1.02 1.13 131 187
ArcFace yunet cosine base TRUE 0.35 0.51 0.68 125 183
ArcFace yunet cosine raw TRUE 0.34 0.12 0.68 125 183
ArcFace yunet cosine Facenet TRUE 0.34 0.30 0.68 125 183
ArcFace yunet cosine Facenet2018 TRUE 0.35 0.55 0.68 125 183
ArcFace yunet cosine VGGFace TRUE 0.35 0.07 0.68 125 183
ArcFace yunet cosine VGGFace2 TRUE 0.34 0.07 0.68 125 183
ArcFace yunet cosine ArcFace TRUE 0.34 0.55 0.68 125 183
ArcFace yunet euclidean base TRUE 0.33 3.31 4.15 125 183
ArcFace yunet euclidean raw FALSE 0.35 4200.56 4.15 125 183
ArcFace yunet euclidean Facenet FALSE 0.35 16.62 4.15 125 183
ArcFace yunet euclidean Facenet2018 TRUE 0.35 3.63 4.15 125 183
ArcFace yunet euclidean VGGFace FALSE 0.34 3806.35 4.15 125 183
ArcFace yunet euclidean VGGFace2 FALSE 0.34 3746.37 4.15 125 183
ArcFace yunet euclidean ArcFace TRUE 0.35 3.62 4.15 125 183
ArcFace yunet euclidean_l2 base TRUE 0.34 1.01 1.13 125 183
ArcFace yunet euclidean_l2 raw TRUE 0.35 0.49 1.13 125 183
ArcFace yunet euclidean_l2 Facenet TRUE 0.34 0.77 1.13 125 183
ArcFace yunet euclidean_l2 Facenet2018 TRUE 0.34 1.05 1.13 125 183
ArcFace yunet euclidean_l2 VGGFace TRUE 0.34 0.37 1.13 125 183
ArcFace yunet euclidean_l2 VGGFace2 TRUE 0.34 0.37 1.13 125 183
ArcFace yunet euclidean_l2 ArcFace TRUE 0.35 1.05 1.13 125 183
ArcFace fastmtcnn cosine base TRUE 0.40 0.49 0.68 125 189
ArcFace fastmtcnn cosine raw TRUE 0.41 0.11 0.68 125 189
ArcFace fastmtcnn cosine Facenet TRUE 0.43 0.30 0.68 125 189
ArcFace fastmtcnn cosine Facenet2018 TRUE 0.41 0.52 0.68 125 189
ArcFace fastmtcnn cosine VGGFace TRUE 0.42 0.05 0.68 125 189
ArcFace fastmtcnn cosine VGGFace2 TRUE 0.41 0.05 0.68 125 189
ArcFace fastmtcnn cosine ArcFace TRUE 0.42 0.52 0.68 125 189
ArcFace fastmtcnn euclidean base TRUE 0.42 3.36 4.15 125 189
ArcFace fastmtcnn euclidean raw FALSE 0.41 3738.95 4.15 125 189
ArcFace fastmtcnn euclidean Facenet FALSE 0.42 14.31 4.15 125 189
ArcFace fastmtcnn euclidean Facenet2018 TRUE 0.41 3.60 4.15 125 189
ArcFace fastmtcnn euclidean VGGFace FALSE 0.41 3487.96 4.15 125 189
ArcFace fastmtcnn euclidean VGGFace2 FALSE 0.41 3440.24 4.15 125 189
ArcFace fastmtcnn euclidean ArcFace TRUE 0.41 3.60 4.15 125 189
ArcFace fastmtcnn euclidean_l2 base TRUE 0.42 0.99 1.13 125 189
ArcFace fastmtcnn euclidean_l2 raw TRUE 0.41 0.46 1.13 125 189
ArcFace fastmtcnn euclidean_l2 Facenet TRUE 0.42 0.77 1.13 125 189
ArcFace fastmtcnn euclidean_l2 Facenet2018 TRUE 0.41 1.02 1.13 125 189
ArcFace fastmtcnn euclidean_l2 VGGFace TRUE 0.41 0.33 1.13 125 189
ArcFace fastmtcnn euclidean_l2 VGGFace2 TRUE 0.42 0.33 1.13 125 189
ArcFace fastmtcnn euclidean_l2 ArcFace TRUE 0.41 1.02 1.13 125 189
Dlib opencv cosine base TRUE 1.43 0.07 0.07 102 86
Dlib opencv cosine raw TRUE 1.36 0.07 0.07 102 86
Dlib opencv cosine Facenet TRUE 1.36 0.03 0.07 102 86
Dlib opencv cosine Facenet2018 TRUE 1.36 0.06 0.07 102 86
Dlib opencv cosine VGGFace TRUE 1.36 0.03 0.07 102 86
Dlib opencv cosine VGGFace2 TRUE 1.36 0.04 0.07 102 86
Dlib opencv cosine ArcFace TRUE 1.37 0.07 0.07 102 86
Dlib opencv euclidean base TRUE 1.36 0.53 0.60 102 86
Dlib opencv euclidean raw TRUE 1.35 0.53 0.60 102 86
Dlib opencv euclidean Facenet TRUE 1.35 0.30 0.60 102 86
Dlib opencv euclidean Facenet2018 TRUE 1.36 0.48 0.60 102 86
Dlib opencv euclidean VGGFace TRUE 1.36 0.33 0.60 102 86
Dlib opencv euclidean VGGFace2 TRUE 1.36 0.36 0.60 102 86
Dlib opencv euclidean ArcFace TRUE 1.36 0.48 0.60 102 86
Dlib opencv euclidean_l2 base TRUE 1.36 0.36 0.40 102 86
Dlib opencv euclidean_l2 raw TRUE 1.37 0.36 0.40 102 86
Dlib opencv euclidean_l2 Facenet TRUE 1.35 0.23 0.40 102 86
Dlib opencv euclidean_l2 Facenet2018 TRUE 1.36 0.36 0.40 102 86
Dlib opencv euclidean_l2 VGGFace TRUE 1.36 0.25 0.40 102 86
Dlib opencv euclidean_l2 VGGFace2 TRUE 1.35 0.27 0.40 102 86
Dlib opencv euclidean_l2 ArcFace TRUE 1.36 0.36 0.40 102 86
Dlib ssd cosine base TRUE 1.96 0.04 0.07 283 None
Dlib ssd cosine raw TRUE 1.96 0.04 0.07 283 None
Dlib ssd cosine Facenet TRUE 1.96 0.01 0.07 283 None
Dlib ssd cosine Facenet2018 TRUE 1.96 0.04 0.07 283 None
Dlib ssd cosine VGGFace TRUE 1.96 0.02 0.07 283 None
Dlib ssd cosine VGGFace2 TRUE 1.96 0.02 0.07 283 None
Dlib ssd cosine ArcFace TRUE 1.95 0.04 0.07 283 None
Dlib ssd euclidean base TRUE 1.95 0.36 0.60 283 None
Dlib ssd euclidean raw TRUE 1.96 0.36 0.60 283 None
Dlib ssd euclidean Facenet TRUE 1.96 0.20 0.60 283 None
Dlib ssd euclidean Facenet2018 TRUE 1.97 0.40 0.60 283 None
Dlib ssd euclidean VGGFace TRUE 1.96 0.29 0.60 283 None
Dlib ssd euclidean VGGFace2 TRUE 1.96 0.29 0.60 283 None
Dlib ssd euclidean ArcFace TRUE 1.96 0.40 0.60 283 None
Dlib ssd euclidean_l2 base TRUE 1.96 0.27 0.40 283 None
Dlib ssd euclidean_l2 raw TRUE 1.95 0.27 0.40 283 None
Dlib ssd euclidean_l2 Facenet TRUE 1.96 0.16 0.40 283 None
Dlib ssd euclidean_l2 Facenet2018 TRUE 1.96 0.29 0.40 283 None
Dlib ssd euclidean_l2 VGGFace TRUE 1.96 0.22 0.40 283 None
Dlib ssd euclidean_l2 VGGFace2 TRUE 1.95 0.21 0.40 283 None
Dlib ssd euclidean_l2 ArcFace TRUE 1.97 0.30 0.40 283 None
Dlib dlib cosine base TRUE 1.19 0.03 0.07 117 168
Dlib dlib cosine raw TRUE 1.19 0.03 0.07 117 168
Dlib dlib cosine Facenet TRUE 1.18 0.03 0.07 117 168
Dlib dlib cosine Facenet2018 FALSE 1.18 0.08 0.07 117 168
Dlib dlib cosine VGGFace TRUE 1.18 0.03 0.07 117 168
Dlib dlib cosine VGGFace2 TRUE 1.18 0.03 0.07 117 168
Dlib dlib cosine ArcFace FALSE 1.18 0.08 0.07 117 168
Dlib dlib euclidean base TRUE 1.18 0.36 0.60 117 168
Dlib dlib euclidean raw TRUE 1.18 0.36 0.60 117 168
Dlib dlib euclidean Facenet TRUE 1.18 0.29 0.60 117 168
Dlib dlib euclidean Facenet2018 TRUE 1.20 0.51 0.60 117 168
Dlib dlib euclidean VGGFace TRUE 1.19 0.33 0.60 117 168
Dlib dlib euclidean VGGFace2 TRUE 1.18 0.32 0.60 117 168
Dlib dlib euclidean ArcFace TRUE 1.18 0.51 0.60 117 168
Dlib dlib euclidean_l2 base TRUE 1.18 0.24 0.40 117 168
Dlib dlib euclidean_l2 raw TRUE 1.18 0.24 0.40 117 168
Dlib dlib euclidean_l2 Facenet TRUE 1.18 0.23 0.40 117 168
Dlib dlib euclidean_l2 Facenet2018 TRUE 1.18 0.40 0.40 117 168
Dlib dlib euclidean_l2 VGGFace TRUE 1.18 0.25 0.40 117 168
Dlib dlib euclidean_l2 VGGFace2 TRUE 1.18 0.24 0.40 117 168
Dlib dlib euclidean_l2 ArcFace TRUE 1.18 0.39 0.40 117 168
Dlib mtcnn cosine base FALSE 2.05 0.10 0.07 125 188
Dlib mtcnn cosine raw FALSE 2.05 0.10 0.07 125 188
Dlib mtcnn cosine Facenet TRUE 2.04 0.01 0.07 125 188
Dlib mtcnn cosine Facenet2018 TRUE 2.06 0.07 0.07 125 188
Dlib mtcnn cosine VGGFace TRUE 2.05 0.04 0.07 125 188
Dlib mtcnn cosine VGGFace2 TRUE 2.06 0.04 0.07 125 188
Dlib mtcnn cosine ArcFace TRUE 2.06 0.07 0.07 125 188
Dlib mtcnn euclidean base FALSE 2.05 0.64 0.60 125 188
Dlib mtcnn euclidean raw FALSE 2.08 0.64 0.60 125 188
Dlib mtcnn euclidean Facenet TRUE 2.06 0.23 0.60 125 188
Dlib mtcnn euclidean Facenet2018 TRUE 2.05 0.48 0.60 125 188
Dlib mtcnn euclidean VGGFace TRUE 2.04 0.38 0.60 125 188
Dlib mtcnn euclidean VGGFace2 TRUE 2.06 0.38 0.60 125 188
Dlib mtcnn euclidean ArcFace TRUE 2.05 0.48 0.60 125 188
Dlib mtcnn euclidean_l2 base FALSE 2.06 0.44 0.40 125 188
Dlib mtcnn euclidean_l2 raw FALSE 2.06 0.44 0.40 125 188
Dlib mtcnn euclidean_l2 Facenet TRUE 2.06 0.17 0.40 125 188
Dlib mtcnn euclidean_l2 Facenet2018 TRUE 2.05 0.36 0.40 125 188
Dlib mtcnn euclidean_l2 VGGFace TRUE 2.05 0.29 0.40 125 188
Dlib mtcnn euclidean_l2 VGGFace2 TRUE 2.05 0.29 0.40 125 188
Dlib mtcnn euclidean_l2 ArcFace TRUE 2.05 0.36 0.40 125 188
Dlib retinaface cosine base FALSE 2.90 0.07 0.07 133 189
Dlib retinaface cosine raw FALSE 2.89 0.07 0.07 133 189
Dlib retinaface cosine Facenet TRUE 2.94 0.01 0.07 133 189
Dlib retinaface cosine Facenet2018 TRUE 2.97 0.07 0.07 133 189
Dlib retinaface cosine VGGFace TRUE 2.90 0.03 0.07 133 189
Dlib retinaface cosine VGGFace2 TRUE 2.76 0.04 0.07 133 189
Dlib retinaface cosine ArcFace TRUE 2.92 0.07 0.07 133 189
Dlib retinaface euclidean base TRUE 2.96 0.56 0.60 133 189
Dlib retinaface euclidean raw TRUE 2.98 0.56 0.60 133 189
Dlib retinaface euclidean Facenet TRUE 2.97 0.20 0.60 133 189
Dlib retinaface euclidean Facenet2018 TRUE 3.01 0.49 0.60 133 189
Dlib retinaface euclidean VGGFace TRUE 2.82 0.34 0.60 133 189
Dlib retinaface euclidean VGGFace2 TRUE 2.84 0.35 0.60 133 189
Dlib retinaface euclidean ArcFace TRUE 2.83 0.49 0.60 133 189
Dlib retinaface euclidean_l2 base TRUE 2.96 0.38 0.40 133 189
Dlib retinaface euclidean_l2 raw TRUE 2.83 0.38 0.40 133 189
Dlib retinaface euclidean_l2 Facenet TRUE 2.82 0.15 0.40 133 189
Dlib retinaface euclidean_l2 Facenet2018 TRUE 2.89 0.37 0.40 133 189
Dlib retinaface euclidean_l2 VGGFace TRUE 2.82 0.26 0.40 133 189
Dlib retinaface euclidean_l2 VGGFace2 TRUE 2.90 0.27 0.40 133 189
Dlib retinaface euclidean_l2 ArcFace TRUE 2.84 0.37 0.40 133 189
Dlib mediapipe cosine base TRUE 0.85 0.04 0.07 117 187
Dlib mediapipe cosine raw TRUE 0.86 0.04 0.07 117 187
Dlib mediapipe cosine Facenet TRUE 0.85 0.03 0.07 117 187
Dlib mediapipe cosine Facenet2018 TRUE 0.85 0.07 0.07 117 187
Dlib mediapipe cosine VGGFace TRUE 0.85 0.03 0.07 117 187
Dlib mediapipe cosine VGGFace2 TRUE 0.85 0.04 0.07 117 187
Dlib mediapipe cosine ArcFace TRUE 0.86 0.07 0.07 117 187
Dlib mediapipe euclidean base TRUE 0.86 0.39 0.60 117 187
Dlib mediapipe euclidean raw TRUE 0.85 0.39 0.60 117 187
Dlib mediapipe euclidean Facenet TRUE 0.86 0.30 0.60 117 187
Dlib mediapipe euclidean Facenet2018 TRUE 0.85 0.50 0.60 117 187
Dlib mediapipe euclidean VGGFace TRUE 0.86 0.34 0.60 117 187
Dlib mediapipe euclidean VGGFace2 TRUE 0.85 0.36 0.60 117 187
Dlib mediapipe euclidean ArcFace TRUE 0.85 0.50 0.60 117 187
Dlib mediapipe euclidean_l2 base TRUE 0.85 0.27 0.40 117 187
Dlib mediapipe euclidean_l2 raw TRUE 0.85 0.27 0.40 117 187
Dlib mediapipe euclidean_l2 Facenet TRUE 0.85 0.24 0.40 117 187
Dlib mediapipe euclidean_l2 Facenet2018 TRUE 0.85 0.37 0.40 117 187
Dlib mediapipe euclidean_l2 VGGFace TRUE 0.85 0.25 0.40 117 187
Dlib mediapipe euclidean_l2 VGGFace2 TRUE 0.85 0.27 0.40 117 187
Dlib mediapipe euclidean_l2 ArcFace TRUE 0.85 0.37 0.40 117 187
Dlib yolov8 cosine base TRUE 1.02 0.06 0.07 131 187
Dlib yolov8 cosine raw TRUE 1.00 0.06 0.07 131 187
Dlib yolov8 cosine Facenet TRUE 0.99 0.02 0.07 131 187
Dlib yolov8 cosine Facenet2018 FALSE 0.98 0.07 0.07 131 187
Dlib yolov8 cosine VGGFace TRUE 0.97 0.03 0.07 131 187
Dlib yolov8 cosine VGGFace2 TRUE 0.98 0.04 0.07 131 187
Dlib yolov8 cosine ArcFace FALSE 0.97 0.07 0.07 131 187
Dlib yolov8 euclidean base TRUE 0.99 0.48 0.60 131 187
Dlib yolov8 euclidean raw TRUE 0.98 0.48 0.60 131 187
Dlib yolov8 euclidean Facenet TRUE 0.98 0.27 0.60 131 187
Dlib yolov8 euclidean Facenet2018 TRUE 0.98 0.49 0.60 131 187
Dlib yolov8 euclidean VGGFace TRUE 0.97 0.33 0.60 131 187
Dlib yolov8 euclidean VGGFace2 TRUE 0.99 0.39 0.60 131 187
Dlib yolov8 euclidean ArcFace TRUE 0.99 0.49 0.60 131 187
Dlib yolov8 euclidean_l2 base TRUE 0.98 0.33 0.40 131 187
Dlib yolov8 euclidean_l2 raw TRUE 0.98 0.33 0.40 131 187
Dlib yolov8 euclidean_l2 Facenet TRUE 1.00 0.21 0.40 131 187
Dlib yolov8 euclidean_l2 Facenet2018 TRUE 1.00 0.38 0.40 131 187
Dlib yolov8 euclidean_l2 VGGFace TRUE 0.99 0.25 0.40 131 187
Dlib yolov8 euclidean_l2 VGGFace2 TRUE 1.00 0.29 0.40 131 187
Dlib yolov8 euclidean_l2 ArcFace TRUE 0.99 0.38 0.40 131 187
Dlib yunet cosine base TRUE 0.90 0.04 0.07 125 183
Dlib yunet cosine raw TRUE 0.90 0.04 0.07 125 183
Dlib yunet cosine Facenet TRUE 0.90 0.04 0.07 125 183
Dlib yunet cosine Facenet2018 TRUE 0.90 0.05 0.07 125 183
Dlib yunet cosine VGGFace TRUE 0.90 0.03 0.07 125 183
Dlib yunet cosine VGGFace2 TRUE 0.90 0.02 0.07 125 183
Dlib yunet cosine ArcFace TRUE 0.90 0.05 0.07 125 183
Dlib yunet euclidean base TRUE 0.90 0.43 0.60 125 183
Dlib yunet euclidean raw TRUE 0.90 0.43 0.60 125 183
Dlib yunet euclidean Facenet TRUE 0.90 0.34 0.60 125 183
Dlib yunet euclidean Facenet2018 TRUE 0.90 0.40 0.60 125 183
Dlib yunet euclidean VGGFace TRUE 0.90 0.30 0.60 125 183
Dlib yunet euclidean VGGFace2 TRUE 0.89 0.29 0.60 125 183
Dlib yunet euclidean ArcFace TRUE 0.90 0.40 0.60 125 183
Dlib yunet euclidean_l2 base TRUE 0.89 0.29 0.40 125 183
Dlib yunet euclidean_l2 raw TRUE 0.90 0.29 0.40 125 183
Dlib yunet euclidean_l2 Facenet TRUE 0.91 0.27 0.40 125 183
Dlib yunet euclidean_l2 Facenet2018 TRUE 0.90 0.31 0.40 125 183
Dlib yunet euclidean_l2 VGGFace TRUE 0.90 0.23 0.40 125 183
Dlib yunet euclidean_l2 VGGFace2 TRUE 0.89 0.22 0.40 125 183
Dlib yunet euclidean_l2 ArcFace TRUE 0.89 0.31 0.40 125 183
Dlib fastmtcnn cosine base FALSE 0.98 0.09 0.07 125 189
Dlib fastmtcnn cosine raw FALSE 0.96 0.09 0.07 125 189
Dlib fastmtcnn cosine Facenet TRUE 0.97 0.02 0.07 125 189
Dlib fastmtcnn cosine Facenet2018 FALSE 0.96 0.07 0.07 125 189
Dlib fastmtcnn cosine VGGFace TRUE 0.97 0.04 0.07 125 189
Dlib fastmtcnn cosine VGGFace2 TRUE 0.97 0.04 0.07 125 189
Dlib fastmtcnn cosine ArcFace FALSE 0.97 0.07 0.07 125 189
Dlib fastmtcnn euclidean base FALSE 0.97 0.64 0.60 125 189
Dlib fastmtcnn euclidean raw FALSE 0.97 0.64 0.60 125 189
Dlib fastmtcnn euclidean Facenet TRUE 0.97 0.22 0.60 125 189
Dlib fastmtcnn euclidean Facenet2018 TRUE 0.96 0.50 0.60 125 189
Dlib fastmtcnn euclidean VGGFace TRUE 0.95 0.38 0.60 125 189
Dlib fastmtcnn euclidean VGGFace2 TRUE 0.95 0.37 0.60 125 189
Dlib fastmtcnn euclidean ArcFace TRUE 0.98 0.50 0.60 125 189
Dlib fastmtcnn euclidean_l2 base FALSE 0.99 0.44 0.40 125 189
Dlib fastmtcnn euclidean_l2 raw FALSE 0.95 0.44 0.40 125 189
Dlib fastmtcnn euclidean_l2 Facenet TRUE 0.97 0.17 0.40 125 189
Dlib fastmtcnn euclidean_l2 Facenet2018 TRUE 0.96 0.38 0.40 125 189
Dlib fastmtcnn euclidean_l2 VGGFace TRUE 0.97 0.29 0.40 125 189
Dlib fastmtcnn euclidean_l2 VGGFace2 TRUE 0.96 0.28 0.40 125 189
Dlib fastmtcnn euclidean_l2 ArcFace TRUE 0.96 0.38 0.40 125 189
SFace opencv cosine base FALSE 0.68 0.78 0.59 102 86
SFace opencv cosine raw TRUE 0.58 0.37 0.59 102 86
SFace opencv cosine Facenet TRUE 0.58 0.39 0.59 102 86
SFace opencv cosine Facenet2018 TRUE 0.58 0.56 0.59 102 86
SFace opencv cosine VGGFace TRUE 0.58 0.53 0.59 102 86
SFace opencv cosine VGGFace2 TRUE 0.58 0.44 0.59 102 86
SFace opencv cosine ArcFace TRUE 0.58 0.56 0.59 102 86
SFace opencv euclidean base FALSE 0.58 11.81 10.73 102 86
SFace opencv euclidean raw TRUE 0.58 6.96 10.73 102 86
SFace opencv euclidean Facenet TRUE 0.58 4.73 10.73 102 86
SFace opencv euclidean Facenet2018 TRUE 0.58 8.18 10.73 102 86
SFace opencv euclidean VGGFace TRUE 0.58 6.55 10.73 102 86
SFace opencv euclidean VGGFace2 TRUE 0.57 4.73 10.73 102 86
SFace opencv euclidean ArcFace TRUE 0.58 8.17 10.73 102 86
SFace opencv euclidean_l2 base FALSE 0.57 1.25 1.06 102 86
SFace opencv euclidean_l2 raw TRUE 0.58 0.86 1.06 102 86
SFace opencv euclidean_l2 Facenet TRUE 0.58 0.89 1.06 102 86
SFace opencv euclidean_l2 Facenet2018 FALSE 0.58 1.06 1.06 102 86
SFace opencv euclidean_l2 VGGFace TRUE 0.58 1.03 1.06 102 86
SFace opencv euclidean_l2 VGGFace2 TRUE 0.58 0.93 1.06 102 86
SFace opencv euclidean_l2 ArcFace FALSE 0.58 1.06 1.06 102 86
SFace ssd cosine base FALSE 0.40 0.65 0.59 127 60
SFace ssd cosine raw TRUE 0.41 0.40 0.59 283 None
SFace ssd cosine Facenet TRUE 0.40 0.47 0.59 127 60
SFace ssd cosine Facenet2018 TRUE 0.41 0.58 0.59 127 60
SFace ssd cosine VGGFace TRUE 0.41 0.53 0.59 283 None
SFace ssd cosine VGGFace2 TRUE 0.41 0.42 0.59 283 None
SFace ssd cosine ArcFace FALSE 0.41 0.62 0.59 127 60
SFace ssd euclidean base TRUE 0.41 3.84 10.73 283 None
SFace ssd euclidean raw TRUE 0.41 2.66 10.73 283 None
SFace ssd euclidean Facenet TRUE 0.41 4.53 10.73 283 None
SFace ssd euclidean Facenet2018 TRUE 0.41 4.72 10.73 283 None
SFace ssd euclidean VGGFace TRUE 0.41 3.29 10.73 283 None
SFace ssd euclidean VGGFace2 TRUE 0.41 2.98 10.73 283 None
SFace ssd euclidean ArcFace TRUE 0.41 4.94 10.73 283 None
SFace ssd euclidean_l2 base FALSE 0.41 1.14 1.06 127 60
SFace ssd euclidean_l2 raw TRUE 0.41 0.89 1.06 283 None
SFace ssd euclidean_l2 Facenet TRUE 0.41 0.97 1.06 127 60
SFace ssd euclidean_l2 Facenet2018 FALSE 0.41 1.08 1.06 127 60
SFace ssd euclidean_l2 VGGFace TRUE 0.41 1.03 1.06 283 None
SFace ssd euclidean_l2 VGGFace2 TRUE 0.41 0.92 1.06 283 None
SFace ssd euclidean_l2 ArcFace FALSE 0.41 1.11 1.06 127 60
SFace dlib cosine base TRUE 0.41 0.52 0.59 117 168
SFace dlib cosine raw TRUE 0.40 0.40 0.59 117 168
SFace dlib cosine Facenet TRUE 0.41 0.33 0.59 117 168
SFace dlib cosine Facenet2018 FALSE 0.41 0.61 0.59 117 168
SFace dlib cosine VGGFace TRUE 0.41 0.45 0.59 117 168
SFace dlib cosine VGGFace2 TRUE 0.41 0.37 0.59 117 168
SFace dlib cosine ArcFace FALSE 0.41 0.61 0.59 117 168
SFace dlib euclidean base TRUE 0.41 9.66 10.73 117 168
SFace dlib euclidean raw TRUE 0.41 4.90 10.73 117 168
SFace dlib euclidean Facenet TRUE 0.41 3.77 10.73 117 168
SFace dlib euclidean Facenet2018 TRUE 0.41 7.29 10.73 117 168
SFace dlib euclidean VGGFace TRUE 0.40 4.62 10.73 117 168
SFace dlib euclidean VGGFace2 TRUE 0.42 4.04 10.73 117 168
SFace dlib euclidean ArcFace TRUE 0.41 7.28 10.73 117 168
SFace dlib euclidean_l2 base TRUE 0.41 1.02 1.06 117 168
SFace dlib euclidean_l2 raw TRUE 0.41 0.90 1.06 117 168
SFace dlib euclidean_l2 Facenet TRUE 0.41 0.81 1.06 117 168
SFace dlib euclidean_l2 Facenet2018 FALSE 0.41 1.10 1.06 117 168
SFace dlib euclidean_l2 VGGFace TRUE 0.41 0.95 1.06 117 168
SFace dlib euclidean_l2 VGGFace2 TRUE 0.41 0.86 1.06 117 168
SFace dlib euclidean_l2 ArcFace FALSE 0.41 1.10 1.06 117 168
SFace mtcnn cosine base FALSE 1.29 1.01 0.59 125 188
SFace mtcnn cosine raw TRUE 1.30 0.53 0.59 125 188
SFace mtcnn cosine Facenet TRUE 1.29 0.58 0.59 125 188
SFace mtcnn cosine Facenet2018 FALSE 1.50 0.76 0.59 125 188
SFace mtcnn cosine VGGFace TRUE 1.29 0.48 0.59 125 188
SFace mtcnn cosine VGGFace2 TRUE 1.29 0.37 0.59 125 188
SFace mtcnn cosine ArcFace FALSE 1.29 0.82 0.59 125 188
SFace mtcnn euclidean base FALSE 1.29 13.47 10.73 125 188
SFace mtcnn euclidean raw TRUE 1.31 6.82 10.73 125 188
SFace mtcnn euclidean Facenet TRUE 1.29 6.70 10.73 125 188
SFace mtcnn euclidean Facenet2018 TRUE 1.29 8.97 10.73 125 188
SFace mtcnn euclidean VGGFace TRUE 1.31 6.52 10.73 125 188
SFace mtcnn euclidean VGGFace2 TRUE 1.30 4.28 10.73 125 188
SFace mtcnn euclidean ArcFace TRUE 1.29 9.52 10.73 125 188
SFace mtcnn euclidean_l2 base FALSE 1.30 1.42 1.06 125 188
SFace mtcnn euclidean_l2 raw TRUE 1.29 1.02 1.06 125 188
SFace mtcnn euclidean_l2 Facenet FALSE 1.30 1.08 1.06 125 188
SFace mtcnn euclidean_l2 Facenet2018 FALSE 1.29 1.23 1.06 125 188
SFace mtcnn euclidean_l2 VGGFace TRUE 1.30 0.98 1.06 125 188
SFace mtcnn euclidean_l2 VGGFace2 TRUE 1.30 0.87 1.06 125 188
SFace mtcnn euclidean_l2 ArcFace FALSE 1.30 1.28 1.06 125 188
SFace retinaface cosine base FALSE 1.93 0.79 0.59 133 189
SFace retinaface cosine raw TRUE 2.24 0.51 0.59 133 189
SFace retinaface cosine Facenet TRUE 2.06 0.54 0.59 133 189
SFace retinaface cosine Facenet2018 FALSE 2.04 0.70 0.59 133 189
SFace retinaface cosine VGGFace TRUE 2.13 0.47 0.59 133 189
SFace retinaface cosine VGGFace2 TRUE 2.09 0.37 0.59 133 189
SFace retinaface cosine ArcFace FALSE 1.99 0.72 0.59 133 189
SFace retinaface euclidean base TRUE 2.05 10.65 10.73 133 189
SFace retinaface euclidean raw TRUE 2.13 6.93 10.73 133 189
SFace retinaface euclidean Facenet TRUE 2.09 5.78 10.73 133 189
SFace retinaface euclidean Facenet2018 TRUE 2.09 8.61 10.73 133 189
SFace retinaface euclidean VGGFace TRUE 2.07 5.90 10.73 133 189
SFace retinaface euclidean VGGFace2 TRUE 1.95 4.19 10.73 133 189
SFace retinaface euclidean ArcFace TRUE 1.98 8.91 10.73 133 189
SFace retinaface euclidean_l2 base FALSE 1.99 1.25 1.06 133 189
SFace retinaface euclidean_l2 raw TRUE 1.98 1.01 1.06 133 189
SFace retinaface euclidean_l2 Facenet TRUE 1.99 1.04 1.06 133 189
SFace retinaface euclidean_l2 Facenet2018 FALSE 2.05 1.19 1.06 133 189
SFace retinaface euclidean_l2 VGGFace TRUE 1.98 0.96 1.06 133 189
SFace retinaface euclidean_l2 VGGFace2 TRUE 2.02 0.86 1.06 133 189
SFace retinaface euclidean_l2 ArcFace FALSE 2.02 1.20 1.06 133 189
SFace mediapipe cosine base TRUE 0.09 0.49 0.59 117 187
SFace mediapipe cosine raw TRUE 0.10 0.42 0.59 117 187
SFace mediapipe cosine Facenet TRUE 0.09 0.32 0.59 117 187
SFace mediapipe cosine Facenet2018 FALSE 0.09 0.64 0.59 117 187
SFace mediapipe cosine VGGFace TRUE 0.08 0.44 0.59 117 187
SFace mediapipe cosine VGGFace2 TRUE 0.08 0.26 0.59 117 187
SFace mediapipe cosine ArcFace FALSE 0.08 0.64 0.59 117 187
SFace mediapipe euclidean base TRUE 0.08 9.83 10.73 117 187
SFace mediapipe euclidean raw TRUE 0.08 5.08 10.73 117 187
SFace mediapipe euclidean Facenet TRUE 0.08 4.13 10.73 117 187
SFace mediapipe euclidean Facenet2018 TRUE 0.08 7.96 10.73 117 187
SFace mediapipe euclidean VGGFace TRUE 0.07 5.31 10.73 117 187
SFace mediapipe euclidean VGGFace2 TRUE 0.08 3.46 10.73 117 187
SFace mediapipe euclidean ArcFace TRUE 0.08 7.93 10.73 117 187
SFace mediapipe euclidean_l2 base TRUE 0.07 0.99 1.06 117 187
SFace mediapipe euclidean_l2 raw TRUE 0.08 0.91 1.06 117 187
SFace mediapipe euclidean_l2 Facenet TRUE 0.08 0.80 1.06 117 187
SFace mediapipe euclidean_l2 Facenet2018 FALSE 0.08 1.13 1.06 117 187
SFace mediapipe euclidean_l2 VGGFace TRUE 0.07 0.93 1.06 117 187
SFace mediapipe euclidean_l2 VGGFace2 TRUE 0.08 0.73 1.06 117 187
SFace mediapipe euclidean_l2 ArcFace FALSE 0.08 1.13 1.06 117 187
SFace yolov8 cosine base FALSE 0.22 0.63 0.59 131 187
SFace yolov8 cosine raw TRUE 0.21 0.43 0.59 131 187
SFace yolov8 cosine Facenet TRUE 0.19 0.56 0.59 131 187
SFace yolov8 cosine Facenet2018 FALSE 0.18 0.67 0.59 131 187
SFace yolov8 cosine VGGFace TRUE 0.20 0.56 0.59 131 187
SFace yolov8 cosine VGGFace2 TRUE 0.21 0.36 0.59 131 187
SFace yolov8 cosine ArcFace FALSE 0.19 0.72 0.59 131 187
SFace yolov8 euclidean base TRUE 0.18 9.79 10.73 131 187
SFace yolov8 euclidean raw TRUE 0.18 6.53 10.73 131 187
SFace yolov8 euclidean Facenet TRUE 0.20 6.72 10.73 131 187
SFace yolov8 euclidean Facenet2018 TRUE 0.20 8.36 10.73 131 187
SFace yolov8 euclidean VGGFace TRUE 0.18 6.65 10.73 131 187
SFace yolov8 euclidean VGGFace2 TRUE 0.19 4.11 10.73 131 187
SFace yolov8 euclidean ArcFace TRUE 0.18 8.77 10.73 131 187
SFace yolov8 euclidean_l2 base FALSE 0.18 1.12 1.06 131 187
SFace yolov8 euclidean_l2 raw TRUE 0.20 0.93 1.06 131 187
SFace yolov8 euclidean_l2 Facenet TRUE 0.19 1.05 1.06 131 187
SFace yolov8 euclidean_l2 Facenet2018 FALSE 0.20 1.16 1.06 131 187
SFace yolov8 euclidean_l2 VGGFace FALSE 0.17 1.06 1.06 131 187
SFace yolov8 euclidean_l2 VGGFace2 TRUE 0.19 0.84 1.06 131 187
SFace yolov8 euclidean_l2 ArcFace FALSE 0.20 1.20 1.06 131 187
SFace yunet cosine base FALSE 0.13 0.63 0.59 125 183
SFace yunet cosine raw TRUE 0.13 0.37 0.59 125 183
SFace yunet cosine Facenet TRUE 0.13 0.55 0.59 125 183
SFace yunet cosine Facenet2018 TRUE 0.12 0.58 0.59 125 183
SFace yunet cosine VGGFace TRUE 0.12 0.47 0.59 125 183
SFace yunet cosine VGGFace2 TRUE 0.12 0.35 0.59 125 183
SFace yunet cosine ArcFace FALSE 0.12 0.59 0.59 125 183
SFace yunet euclidean base TRUE 0.13 10.07 10.73 125 183
SFace yunet euclidean raw TRUE 0.12 5.64 10.73 125 183
SFace yunet euclidean Facenet TRUE 0.12 6.48 10.73 125 183
SFace yunet euclidean Facenet2018 TRUE 0.13 7.54 10.73 125 183
SFace yunet euclidean VGGFace TRUE 0.12 5.82 10.73 125 183
SFace yunet euclidean VGGFace2 TRUE 0.12 4.04 10.73 125 183
SFace yunet euclidean ArcFace TRUE 0.12 7.74 10.73 125 183
SFace yunet euclidean_l2 base FALSE 0.12 1.12 1.06 125 183
SFace yunet euclidean_l2 raw TRUE 0.12 0.86 1.06 125 183
SFace yunet euclidean_l2 Facenet TRUE 0.13 1.05 1.06 125 183
SFace yunet euclidean_l2 Facenet2018 FALSE 0.13 1.08 1.06 125 183
SFace yunet euclidean_l2 VGGFace TRUE 0.13 0.97 1.06 125 183
SFace yunet euclidean_l2 VGGFace2 TRUE 0.12 0.84 1.06 125 183
SFace yunet euclidean_l2 ArcFace FALSE 0.13 1.09 1.06 125 183
SFace fastmtcnn cosine base FALSE 0.17 0.95 0.59 125 189
SFace fastmtcnn cosine raw TRUE 0.17 0.51 0.59 125 189
SFace fastmtcnn cosine Facenet TRUE 0.17 0.52 0.59 125 189
SFace fastmtcnn cosine Facenet2018 FALSE 0.17 0.75 0.59 125 189
SFace fastmtcnn cosine VGGFace TRUE 0.18 0.47 0.59 125 189
SFace fastmtcnn cosine VGGFace2 TRUE 0.18 0.35 0.59 125 189
SFace fastmtcnn cosine ArcFace FALSE 0.18 0.81 0.59 125 189
SFace fastmtcnn euclidean base FALSE 0.18 12.90 10.73 125 189
SFace fastmtcnn euclidean raw TRUE 0.17 6.79 10.73 125 189
SFace fastmtcnn euclidean Facenet TRUE 0.18 6.02 10.73 125 189
SFace fastmtcnn euclidean Facenet2018 TRUE 0.18 9.14 10.73 125 189
SFace fastmtcnn euclidean VGGFace TRUE 0.17 6.50 10.73 125 189
SFace fastmtcnn euclidean VGGFace2 TRUE 0.18 3.97 10.73 125 189
SFace fastmtcnn euclidean ArcFace TRUE 0.18 9.59 10.73 125 189
SFace fastmtcnn euclidean_l2 base FALSE 0.18 1.38 1.06 125 189
SFace fastmtcnn euclidean_l2 raw TRUE 0.18 1.01 1.06 125 189
SFace fastmtcnn euclidean_l2 Facenet TRUE 0.17 1.01 1.06 125 189
SFace fastmtcnn euclidean_l2 Facenet2018 FALSE 0.18 1.22 1.06 125 189
SFace fastmtcnn euclidean_l2 VGGFace TRUE 0.18 0.97 1.06 125 189
SFace fastmtcnn euclidean_l2 VGGFace2 TRUE 0.19 0.84 1.06 125 189
SFace fastmtcnn euclidean_l2 ArcFace FALSE 0.17 1.27 1.06 125 189


★ サンプルプログラム実施結果 2

ケース2(レベル2) :
【ポイント】
・ 写真サイズが異なります
・ 髪型が異なります
・ 斜め横を向いています



【結果】
全てのケースは次ようになりました。

・ result (dict): 以下のキーを持つ検証結果を含む辞書。
    - 'verified' (bool): 画像が同一人物かの判定結果
        同一(True)または別の人(False)。

    - 'time' (浮動小数点数): 検証プロセスにかかった時間(秒単位)。

    - 'distance' (float): 面ベクトル間の距離の尺度。
    距離が短いほど、類似度が高いことを示します。

    - 'threshold' (float): 検証に使用される最大しきい値。
    距離がこの閾値を下回る場合、画像は一致と見なされます。

    - 'facial_areas' (dict): 両方の画像の顔の矩形の関心領域。

    - 'img1':{'x':int 最初のイメージの関心領域。

【DF_FaceVerification_test03B】
model backend metric normalization verified time distance threshold img1_x left_eye
VGG-Face opencv cosine base TRUE 2.71 0.67 0.68 102 86
VGG-Face opencv cosine raw TRUE 0.34 0.67 0.68 102 86
VGG-Face opencv cosine Facenet FALSE 0.34 0.71 0.68 102 86
VGG-Face opencv cosine Facenet2018 FALSE 0.34 0.72 0.68 102 86
VGG-Face opencv cosine VGGFace FALSE 0.34 0.73 0.68 102 86
VGG-Face opencv cosine VGGFace2 FALSE 0.34 0.73 0.68 102 86
VGG-Face opencv cosine ArcFace FALSE 0.33 0.72 0.68 102 86
VGG-Face opencv euclidean base TRUE 0.33 1.16 1.17 102 86
VGG-Face opencv euclidean raw TRUE 0.34 1.16 1.17 102 86
VGG-Face opencv euclidean Facenet FALSE 0.34 1.19 1.17 102 86
VGG-Face opencv euclidean Facenet2018 FALSE 0.33 1.20 1.17 102 86
VGG-Face opencv euclidean VGGFace FALSE 0.34 1.21 1.17 102 86
VGG-Face opencv euclidean VGGFace2 FALSE 0.33 1.21 1.17 102 86
VGG-Face opencv euclidean ArcFace FALSE 0.34 1.20 1.17 102 86
VGG-Face opencv euclidean_l2 base TRUE 0.33 1.16 1.17 102 86
VGG-Face opencv euclidean_l2 raw TRUE 0.34 1.16 1.17 102 86
VGG-Face opencv euclidean_l2 Facenet FALSE 0.34 1.19 1.17 102 86
VGG-Face opencv euclidean_l2 Facenet2018 FALSE 0.33 1.20 1.17 102 86
VGG-Face opencv euclidean_l2 VGGFace FALSE 0.34 1.21 1.17 102 86
VGG-Face opencv euclidean_l2 VGGFace2 FALSE 0.33 1.21 1.17 102 86
VGG-Face opencv euclidean_l2 ArcFace FALSE 0.34 1.20 1.17 102 86
VGG-Face ssd cosine base TRUE 0.59 0.61 0.68 127 60
VGG-Face ssd cosine raw TRUE 0.52 0.61 0.68 127 60
VGG-Face ssd cosine Facenet TRUE 0.52 0.68 0.68 127 60
VGG-Face ssd cosine Facenet2018 FALSE 0.51 0.68 0.68 127 60
VGG-Face ssd cosine VGGFace FALSE 0.53 0.71 0.68 127 60
VGG-Face ssd cosine VGGFace2 FALSE 0.51 0.71 0.68 127 60
VGG-Face ssd cosine ArcFace FALSE 0.53 0.68 0.68 127 60
VGG-Face ssd euclidean base TRUE 0.51 1.10 1.17 127 60
VGG-Face ssd euclidean raw TRUE 0.52 1.10 1.17 127 60
VGG-Face ssd euclidean Facenet TRUE 0.52 1.17 1.17 127 60
VGG-Face ssd euclidean Facenet2018 FALSE 0.53 1.17 1.17 127 60
VGG-Face ssd euclidean VGGFace FALSE 0.52 1.19 1.17 127 60
VGG-Face ssd euclidean VGGFace2 FALSE 0.52 1.19 1.17 127 60
VGG-Face ssd euclidean ArcFace FALSE 0.51 1.17 1.17 127 60
VGG-Face ssd euclidean_l2 base TRUE 0.52 1.10 1.17 127 60
VGG-Face ssd euclidean_l2 raw TRUE 0.52 1.10 1.17 127 60
VGG-Face ssd euclidean_l2 Facenet TRUE 0.52 1.17 1.17 127 60
VGG-Face ssd euclidean_l2 Facenet2018 FALSE 0.52 1.17 1.17 127 60
VGG-Face ssd euclidean_l2 VGGFace FALSE 0.53 1.19 1.17 127 60
VGG-Face ssd euclidean_l2 VGGFace2 FALSE 0.53 1.19 1.17 127 60
VGG-Face ssd euclidean_l2 ArcFace FALSE 0.52 1.17 1.17 127 60
VGG-Face dlib cosine base FALSE 0.78 0.70 0.68 117 168
VGG-Face dlib cosine raw FALSE 0.45 0.70 0.68 117 168
VGG-Face dlib cosine Facenet FALSE 0.47 0.71 0.68 117 168
VGG-Face dlib cosine Facenet2018 FALSE 0.44 0.72 0.68 117 168
VGG-Face dlib cosine VGGFace FALSE 0.45 0.74 0.68 117 168
VGG-Face dlib cosine VGGFace2 FALSE 0.45 0.74 0.68 117 168
VGG-Face dlib cosine ArcFace FALSE 0.45 0.72 0.68 117 168
VGG-Face dlib euclidean base FALSE 0.45 1.18 1.17 117 168
VGG-Face dlib euclidean raw FALSE 0.45 1.18 1.17 117 168
VGG-Face dlib euclidean Facenet FALSE 0.45 1.19 1.17 117 168
VGG-Face dlib euclidean Facenet2018 FALSE 0.45 1.20 1.17 117 168
VGG-Face dlib euclidean VGGFace FALSE 0.45 1.21 1.17 117 168
VGG-Face dlib euclidean VGGFace2 FALSE 0.48 1.21 1.17 117 168
VGG-Face dlib euclidean ArcFace FALSE 0.45 1.20 1.17 117 168
VGG-Face dlib euclidean_l2 base FALSE 0.45 1.18 1.17 117 168
VGG-Face dlib euclidean_l2 raw FALSE 0.46 1.18 1.17 117 168
VGG-Face dlib euclidean_l2 Facenet FALSE 0.44 1.19 1.17 117 168
VGG-Face dlib euclidean_l2 Facenet2018 FALSE 0.45 1.20 1.17 117 168
VGG-Face dlib euclidean_l2 VGGFace FALSE 0.47 1.21 1.17 117 168
VGG-Face dlib euclidean_l2 VGGFace2 FALSE 0.45 1.21 1.17 117 168
VGG-Face dlib euclidean_l2 ArcFace FALSE 0.44 1.20 1.17 117 168
VGG-Face mtcnn cosine base TRUE 2.09 0.67 0.68 125 188
VGG-Face mtcnn cosine raw TRUE 1.58 0.67 0.68 125 188
VGG-Face mtcnn cosine Facenet FALSE 1.37 0.71 0.68 125 188
VGG-Face mtcnn cosine Facenet2018 FALSE 1.33 0.72 0.68 125 188
VGG-Face mtcnn cosine VGGFace FALSE 1.54 0.73 0.68 125 188
VGG-Face mtcnn cosine VGGFace2 FALSE 1.43 0.73 0.68 125 188
VGG-Face mtcnn cosine ArcFace FALSE 1.41 0.72 0.68 125 188
VGG-Face mtcnn euclidean base TRUE 1.35 1.16 1.17 125 188
VGG-Face mtcnn euclidean raw TRUE 1.33 1.16 1.17 125 188
VGG-Face mtcnn euclidean Facenet FALSE 1.53 1.19 1.17 125 188
VGG-Face mtcnn euclidean Facenet2018 FALSE 1.39 1.20 1.17 125 188
VGG-Face mtcnn euclidean VGGFace FALSE 1.39 1.21 1.17 125 188
VGG-Face mtcnn euclidean VGGFace2 FALSE 1.38 1.21 1.17 125 188
VGG-Face mtcnn euclidean ArcFace FALSE 1.43 1.20 1.17 125 188
VGG-Face mtcnn euclidean_l2 base TRUE 1.68 1.16 1.17 125 188
VGG-Face mtcnn euclidean_l2 raw TRUE 1.55 1.16 1.17 125 188
VGG-Face mtcnn euclidean_l2 Facenet FALSE 1.47 1.19 1.17 125 188
VGG-Face mtcnn euclidean_l2 Facenet2018 FALSE 1.36 1.20 1.17 125 188
VGG-Face mtcnn euclidean_l2 VGGFace FALSE 1.50 1.21 1.17 125 188
VGG-Face mtcnn euclidean_l2 VGGFace2 FALSE 1.43 1.21 1.17 125 188
VGG-Face mtcnn euclidean_l2 ArcFace FALSE 1.44 1.20 1.17 125 188
VGG-Face retinaface cosine base TRUE 5.43 0.64 0.68 133 189
VGG-Face retinaface cosine raw TRUE 2.36 0.64 0.68 133 189
VGG-Face retinaface cosine Facenet FALSE 2.23 0.69 0.68 133 189
VGG-Face retinaface cosine Facenet2018 FALSE 2.37 0.69 0.68 133 189
VGG-Face retinaface cosine VGGFace FALSE 2.25 0.72 0.68 133 189
VGG-Face retinaface cosine VGGFace2 FALSE 2.14 0.72 0.68 133 189
VGG-Face retinaface cosine ArcFace FALSE 2.14 0.69 0.68 133 189
VGG-Face retinaface euclidean base TRUE 2.14 1.13 1.17 133 189
VGG-Face retinaface euclidean raw TRUE 2.12 1.13 1.17 133 189
VGG-Face retinaface euclidean Facenet FALSE 2.17 1.17 1.17 133 189
VGG-Face retinaface euclidean Facenet2018 FALSE 2.12 1.18 1.17 133 189
VGG-Face retinaface euclidean VGGFace FALSE 2.14 1.20 1.17 133 189
VGG-Face retinaface euclidean VGGFace2 FALSE 2.13 1.20 1.17 133 189
VGG-Face retinaface euclidean ArcFace FALSE 2.14 1.18 1.17 133 189
VGG-Face retinaface euclidean_l2 base TRUE 2.16 1.13 1.17 133 189
VGG-Face retinaface euclidean_l2 raw TRUE 2.19 1.13 1.17 133 189
VGG-Face retinaface euclidean_l2 Facenet FALSE 2.13 1.17 1.17 133 189
VGG-Face retinaface euclidean_l2 Facenet2018 FALSE 2.13 1.18 1.17 133 189
VGG-Face retinaface euclidean_l2 VGGFace FALSE 2.13 1.20 1.17 133 189
VGG-Face retinaface euclidean_l2 VGGFace2 FALSE 2.15 1.20 1.17 133 189
VGG-Face retinaface euclidean_l2 ArcFace FALSE 2.14 1.18 1.17 133 189
VGG-Face mediapipe cosine base FALSE 1.16 0.72 0.68 117 187
VGG-Face mediapipe cosine raw FALSE 0.29 0.72 0.68 117 187
VGG-Face mediapipe cosine Facenet FALSE 0.29 0.71 0.68 117 187
VGG-Face mediapipe cosine Facenet2018 FALSE 0.30 0.71 0.68 117 187
VGG-Face mediapipe cosine VGGFace FALSE 0.30 0.74 0.68 117 187
VGG-Face mediapipe cosine VGGFace2 FALSE 0.29 0.74 0.68 117 187
VGG-Face mediapipe cosine ArcFace FALSE 0.29 0.71 0.68 117 187
VGG-Face mediapipe euclidean base FALSE 0.30 1.20 1.17 117 187
VGG-Face mediapipe euclidean raw FALSE 0.29 1.20 1.17 117 187
VGG-Face mediapipe euclidean Facenet FALSE 0.30 1.19 1.17 117 187
VGG-Face mediapipe euclidean Facenet2018 FALSE 0.30 1.20 1.17 117 187
VGG-Face mediapipe euclidean VGGFace FALSE 0.30 1.22 1.17 117 187
VGG-Face mediapipe euclidean VGGFace2 FALSE 0.29 1.22 1.17 117 187
VGG-Face mediapipe euclidean ArcFace FALSE 0.30 1.20 1.17 117 187
VGG-Face mediapipe euclidean_l2 base FALSE 0.29 1.20 1.17 117 187
VGG-Face mediapipe euclidean_l2 raw FALSE 0.29 1.20 1.17 117 187
VGG-Face mediapipe euclidean_l2 Facenet FALSE 0.30 1.19 1.17 117 187
VGG-Face mediapipe euclidean_l2 Facenet2018 FALSE 0.30 1.20 1.17 117 187
VGG-Face mediapipe euclidean_l2 VGGFace FALSE 0.30 1.22 1.17 117 187
VGG-Face mediapipe euclidean_l2 VGGFace2 FALSE 0.29 1.22 1.17 117 187
VGG-Face mediapipe euclidean_l2 ArcFace FALSE 0.31 1.20 1.17 117 187
VGG-Face yolov8 cosine base TRUE 4.98 0.65 0.68 131 187
VGG-Face yolov8 cosine raw TRUE 0.44 0.65 0.68 131 187
VGG-Face yolov8 cosine Facenet FALSE 0.42 0.70 0.68 131 187
VGG-Face yolov8 cosine Facenet2018 FALSE 0.43 0.70 0.68 131 187
VGG-Face yolov8 cosine VGGFace FALSE 0.43 0.72 0.68 131 187
VGG-Face yolov8 cosine VGGFace2 FALSE 0.41 0.72 0.68 131 187
VGG-Face yolov8 cosine ArcFace FALSE 0.42 0.70 0.68 131 187
VGG-Face yolov8 euclidean base TRUE 0.42 1.14 1.17 131 187
VGG-Face yolov8 euclidean raw TRUE 0.43 1.14 1.17 131 187
VGG-Face yolov8 euclidean Facenet FALSE 0.41 1.19 1.17 131 187
VGG-Face yolov8 euclidean Facenet2018 FALSE 0.44 1.19 1.17 131 187
VGG-Face yolov8 euclidean VGGFace FALSE 0.43 1.20 1.17 131 187
VGG-Face yolov8 euclidean VGGFace2 FALSE 0.43 1.20 1.17 131 187
VGG-Face yolov8 euclidean ArcFace FALSE 0.45 1.19 1.17 131 187
VGG-Face yolov8 euclidean_l2 base TRUE 0.43 1.14 1.17 131 187
VGG-Face yolov8 euclidean_l2 raw TRUE 0.42 1.14 1.17 131 187
VGG-Face yolov8 euclidean_l2 Facenet FALSE 0.42 1.19 1.17 131 187
VGG-Face yolov8 euclidean_l2 Facenet2018 FALSE 0.44 1.19 1.17 131 187
VGG-Face yolov8 euclidean_l2 VGGFace FALSE 0.43 1.20 1.17 131 187
VGG-Face yolov8 euclidean_l2 VGGFace2 FALSE 0.42 1.20 1.17 131 187
VGG-Face yolov8 euclidean_l2 ArcFace FALSE 0.42 1.19 1.17 131 187
VGG-Face yunet cosine base FALSE 0.33 0.68 0.68 125 183
VGG-Face yunet cosine raw FALSE 0.32 0.68 0.68 125 183
VGG-Face yunet cosine Facenet FALSE 0.32 0.69 0.68 125 183
VGG-Face yunet cosine Facenet2018 FALSE 0.32 0.69 0.68 125 183
VGG-Face yunet cosine VGGFace FALSE 0.31 0.73 0.68 125 183
VGG-Face yunet cosine VGGFace2 FALSE 0.32 0.73 0.68 125 183
VGG-Face yunet cosine ArcFace FALSE 0.31 0.69 0.68 125 183
VGG-Face yunet euclidean base TRUE 0.31 1.17 1.17 125 183
VGG-Face yunet euclidean raw TRUE 0.31 1.17 1.17 125 183
VGG-Face yunet euclidean Facenet FALSE 0.31 1.18 1.17 125 183
VGG-Face yunet euclidean Facenet2018 FALSE 0.31 1.17 1.17 125 183
VGG-Face yunet euclidean VGGFace FALSE 0.31 1.21 1.17 125 183
VGG-Face yunet euclidean VGGFace2 FALSE 0.32 1.21 1.17 125 183
VGG-Face yunet euclidean ArcFace FALSE 0.32 1.17 1.17 125 183
VGG-Face yunet euclidean_l2 base TRUE 0.31 1.17 1.17 125 183
VGG-Face yunet euclidean_l2 raw TRUE 0.32 1.17 1.17 125 183
VGG-Face yunet euclidean_l2 Facenet FALSE 0.32 1.18 1.17 125 183
VGG-Face yunet euclidean_l2 Facenet2018 FALSE 0.31 1.17 1.17 125 183
VGG-Face yunet euclidean_l2 VGGFace FALSE 0.31 1.21 1.17 125 183
VGG-Face yunet euclidean_l2 VGGFace2 FALSE 0.32 1.21 1.17 125 183
VGG-Face yunet euclidean_l2 ArcFace FALSE 0.32 1.17 1.17 125 183
VGG-Face fastmtcnn cosine base TRUE 0.41 0.66 0.68 125 189
VGG-Face fastmtcnn cosine raw TRUE 0.35 0.66 0.68 125 189
VGG-Face fastmtcnn cosine Facenet FALSE 0.36 0.71 0.68 125 189
VGG-Face fastmtcnn cosine Facenet2018 FALSE 0.37 0.71 0.68 125 189
VGG-Face fastmtcnn cosine VGGFace FALSE 0.36 0.73 0.68 125 189
VGG-Face fastmtcnn cosine VGGFace2 FALSE 0.36 0.73 0.68 125 189
VGG-Face fastmtcnn cosine ArcFace FALSE 0.36 0.71 0.68 125 189
VGG-Face fastmtcnn euclidean base TRUE 0.36 1.15 1.17 125 189
VGG-Face fastmtcnn euclidean raw TRUE 0.37 1.15 1.17 125 189
VGG-Face fastmtcnn euclidean Facenet FALSE 0.36 1.19 1.17 125 189
VGG-Face fastmtcnn euclidean Facenet2018 FALSE 0.36 1.19 1.17 125 189
VGG-Face fastmtcnn euclidean VGGFace FALSE 0.36 1.20 1.17 125 189
VGG-Face fastmtcnn euclidean VGGFace2 FALSE 0.36 1.20 1.17 125 189
VGG-Face fastmtcnn euclidean ArcFace FALSE 0.35 1.19 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 base TRUE 0.36 1.15 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 raw TRUE 0.36 1.15 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 Facenet FALSE 0.35 1.19 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 Facenet2018 FALSE 0.37 1.19 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 VGGFace FALSE 0.38 1.20 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 VGGFace2 FALSE 0.37 1.20 1.17 125 189
VGG-Face fastmtcnn euclidean_l2 ArcFace FALSE 0.36 1.19 1.17 125 189
Facenet opencv cosine base FALSE 2.49 0.56 0.40 102 86
Facenet opencv cosine raw TRUE 0.50 0.10 0.40 102 86
Facenet opencv cosine Facenet TRUE 0.49 0.33 0.40 102 86
Facenet opencv cosine Facenet2018 FALSE 0.50 0.40 0.40 102 86
Facenet opencv cosine VGGFace TRUE 0.49 0.08 0.40 102 86
Facenet opencv cosine VGGFace2 TRUE 0.50 0.08 0.40 102 86
Facenet opencv cosine ArcFace FALSE 0.50 0.40 0.40 102 86
Facenet opencv euclidean base FALSE 0.50 11.69 10.00 102 86
Facenet opencv euclidean raw TRUE 0.49 7.37 10.00 102 86
Facenet opencv euclidean Facenet TRUE 0.50 9.57 10.00 102 86
Facenet opencv euclidean Facenet2018 FALSE 0.49 10.39 10.00 102 86
Facenet opencv euclidean VGGFace TRUE 0.49 5.00 10.00 102 86
Facenet opencv euclidean VGGFace2 TRUE 0.49 5.02 10.00 102 86
Facenet opencv euclidean ArcFace FALSE 0.50 10.39 10.00 102 86
Facenet opencv euclidean_l2 base FALSE 0.49 1.05 0.80 102 86
Facenet opencv euclidean_l2 raw TRUE 0.50 0.44 0.80 102 86
Facenet opencv euclidean_l2 Facenet FALSE 0.49 0.82 0.80 102 86
Facenet opencv euclidean_l2 Facenet2018 FALSE 0.50 0.90 0.80 102 86
Facenet opencv euclidean_l2 VGGFace TRUE 0.49 0.40 0.80 102 86
Facenet opencv euclidean_l2 VGGFace2 TRUE 0.49 0.40 0.80 102 86
Facenet opencv euclidean_l2 ArcFace FALSE 0.49 0.90 0.80 102 86
Facenet ssd cosine base FALSE 0.68 0.42 0.40 127 60
Facenet ssd cosine raw TRUE 0.67 0.07 0.40 283 None
Facenet ssd cosine Facenet FALSE 0.67 0.41 0.40 127 60
Facenet ssd cosine Facenet2018 FALSE 0.67 0.42 0.40 127 60
Facenet ssd cosine VGGFace TRUE 0.67 0.08 0.40 127 60
Facenet ssd cosine VGGFace2 TRUE 0.67 0.08 0.40 127 60
Facenet ssd cosine ArcFace FALSE 0.67 0.42 0.40 127 60
Facenet ssd euclidean base TRUE 0.67 9.99 10.00 127 60
Facenet ssd euclidean raw TRUE 0.67 6.54 10.00 127 60
Facenet ssd euclidean Facenet FALSE 0.67 10.27 10.00 127 60
Facenet ssd euclidean Facenet2018 FALSE 0.66 10.53 10.00 127 60
Facenet ssd euclidean VGGFace TRUE 0.66 4.94 10.00 127 60
Facenet ssd euclidean VGGFace2 TRUE 0.67 4.97 10.00 127 60
Facenet ssd euclidean ArcFace FALSE 0.66 10.53 10.00 127 60
Facenet ssd euclidean_l2 base FALSE 0.67 0.91 0.80 127 60
Facenet ssd euclidean_l2 raw TRUE 0.67 0.36 0.80 283 None
Facenet ssd euclidean_l2 Facenet FALSE 0.66 0.91 0.80 127 60
Facenet ssd euclidean_l2 Facenet2018 FALSE 0.67 0.92 0.80 127 60
Facenet ssd euclidean_l2 VGGFace TRUE 0.67 0.40 0.80 127 60
Facenet ssd euclidean_l2 VGGFace2 TRUE 0.67 0.40 0.80 127 60
Facenet ssd euclidean_l2 ArcFace FALSE 0.67 0.92 0.80 127 60
Facenet dlib cosine base FALSE 0.47 0.62 0.40 117 168
Facenet dlib cosine raw TRUE 0.47 0.10 0.40 117 168
Facenet dlib cosine Facenet FALSE 0.47 0.43 0.40 117 168
Facenet dlib cosine Facenet2018 FALSE 0.47 0.48 0.40 117 168
Facenet dlib cosine VGGFace TRUE 0.46 0.09 0.40 117 168
Facenet dlib cosine VGGFace2 TRUE 0.47 0.09 0.40 117 168
Facenet dlib cosine ArcFace FALSE 0.47 0.48 0.40 117 168
Facenet dlib euclidean base FALSE 0.47 12.52 10.00 117 168
Facenet dlib euclidean raw TRUE 0.47 6.97 10.00 117 168
Facenet dlib euclidean Facenet FALSE 0.47 11.02 10.00 117 168
Facenet dlib euclidean Facenet2018 FALSE 0.47 11.31 10.00 117 168
Facenet dlib euclidean VGGFace TRUE 0.47 5.02 10.00 117 168
Facenet dlib euclidean VGGFace2 TRUE 0.46 5.06 10.00 117 168
Facenet dlib euclidean ArcFace FALSE 0.47 11.31 10.00 117 168
Facenet dlib euclidean_l2 base FALSE 0.47 1.11 0.80 117 168
Facenet dlib euclidean_l2 raw TRUE 0.47 0.46 0.80 117 168
Facenet dlib euclidean_l2 Facenet FALSE 0.47 0.93 0.80 117 168
Facenet dlib euclidean_l2 Facenet2018 FALSE 0.47 0.98 0.80 117 168
Facenet dlib euclidean_l2 VGGFace TRUE 0.47 0.42 0.80 117 168
Facenet dlib euclidean_l2 VGGFace2 TRUE 0.46 0.42 0.80 117 168
Facenet dlib euclidean_l2 ArcFace FALSE 0.47 0.98 0.80 117 168
Facenet mtcnn cosine base FALSE 1.28 0.41 0.40 125 188
Facenet mtcnn cosine raw TRUE 1.49 0.19 0.40 125 188
Facenet mtcnn cosine Facenet TRUE 1.29 0.37 0.40 125 188
Facenet mtcnn cosine Facenet2018 TRUE 1.27 0.39 0.40 125 188
Facenet mtcnn cosine VGGFace TRUE 1.29 0.08 0.40 125 188
Facenet mtcnn cosine VGGFace2 TRUE 1.28 0.08 0.40 125 188
Facenet mtcnn cosine ArcFace TRUE 1.29 0.39 0.40 125 188
Facenet mtcnn euclidean base TRUE 1.27 9.73 10.00 125 188
Facenet mtcnn euclidean raw FALSE 1.28 10.18 10.00 125 188
Facenet mtcnn euclidean Facenet TRUE 1.29 9.60 10.00 125 188
Facenet mtcnn euclidean Facenet2018 TRUE 1.28 9.89 10.00 125 188
Facenet mtcnn euclidean VGGFace TRUE 1.28 5.03 10.00 125 188
Facenet mtcnn euclidean VGGFace2 TRUE 1.29 5.00 10.00 125 188
Facenet mtcnn euclidean ArcFace TRUE 1.28 9.89 10.00 125 188
Facenet mtcnn euclidean_l2 base FALSE 1.28 0.90 0.80 125 188
Facenet mtcnn euclidean_l2 raw TRUE 1.27 0.61 0.80 125 188
Facenet mtcnn euclidean_l2 Facenet FALSE 1.28 0.86 0.80 125 188
Facenet mtcnn euclidean_l2 Facenet2018 FALSE 1.28 0.88 0.80 125 188
Facenet mtcnn euclidean_l2 VGGFace TRUE 1.28 0.41 0.80 125 188
Facenet mtcnn euclidean_l2 VGGFace2 TRUE 1.30 0.41 0.80 125 188
Facenet mtcnn euclidean_l2 ArcFace FALSE 1.28 0.88 0.80 125 188
Facenet retinaface cosine base FALSE 2.22 0.47 0.40 133 189
Facenet retinaface cosine raw TRUE 2.26 0.19 0.40 133 189
Facenet retinaface cosine Facenet TRUE 2.25 0.38 0.40 133 189
Facenet retinaface cosine Facenet2018 TRUE 2.28 0.40 0.40 133 189
Facenet retinaface cosine VGGFace TRUE 2.27 0.18 0.40 133 189
Facenet retinaface cosine VGGFace2 TRUE 2.26 0.18 0.40 133 189
Facenet retinaface cosine ArcFace FALSE 2.29 0.40 0.40 133 189
Facenet retinaface euclidean base FALSE 2.28 10.01 10.00 133 189
Facenet retinaface euclidean raw FALSE 2.25 11.37 10.00 133 189
Facenet retinaface euclidean Facenet TRUE 2.28 9.64 10.00 133 189
Facenet retinaface euclidean Facenet2018 TRUE 2.29 9.85 10.00 133 189
Facenet retinaface euclidean VGGFace TRUE 2.29 7.84 10.00 133 189
Facenet retinaface euclidean VGGFace2 TRUE 2.26 7.82 10.00 133 189
Facenet retinaface euclidean ArcFace TRUE 2.25 9.86 10.00 133 189
Facenet retinaface euclidean_l2 base FALSE 2.25 0.96 0.80 133 189
Facenet retinaface euclidean_l2 raw TRUE 2.28 0.62 0.80 133 189
Facenet retinaface euclidean_l2 Facenet FALSE 2.28 0.87 0.80 133 189
Facenet retinaface euclidean_l2 Facenet2018 FALSE 2.27 0.89 0.80 133 189
Facenet retinaface euclidean_l2 VGGFace TRUE 2.27 0.60 0.80 133 189
Facenet retinaface euclidean_l2 VGGFace2 TRUE 2.28 0.59 0.80 133 189
Facenet retinaface euclidean_l2 ArcFace FALSE 2.27 0.89 0.80 133 189
Facenet mediapipe cosine base FALSE 0.38 0.67 0.40 117 187
Facenet mediapipe cosine raw TRUE 0.35 0.07 0.40 117 187
Facenet mediapipe cosine Facenet FALSE 0.35 0.44 0.40 117 187
Facenet mediapipe cosine Facenet2018 FALSE 0.35 0.48 0.40 117 187
Facenet mediapipe cosine VGGFace TRUE 0.35 0.05 0.40 117 187
Facenet mediapipe cosine VGGFace2 TRUE 0.35 0.05 0.40 117 187
Facenet mediapipe cosine ArcFace FALSE 0.36 0.48 0.40 117 187
Facenet mediapipe euclidean base FALSE 0.35 12.25 10.00 117 187
Facenet mediapipe euclidean raw TRUE 0.36 6.73 10.00 117 187
Facenet mediapipe euclidean Facenet FALSE 0.35 10.63 10.00 117 187
Facenet mediapipe euclidean Facenet2018 FALSE 0.35 10.84 10.00 117 187
Facenet mediapipe euclidean VGGFace TRUE 0.35 3.86 10.00 117 187
Facenet mediapipe euclidean VGGFace2 TRUE 0.35 3.82 10.00 117 187
Facenet mediapipe euclidean ArcFace FALSE 0.35 10.85 10.00 117 187
Facenet mediapipe euclidean_l2 base FALSE 0.35 1.16 0.80 117 187
Facenet mediapipe euclidean_l2 raw TRUE 0.35 0.39 0.80 117 187
Facenet mediapipe euclidean_l2 Facenet FALSE 0.35 0.94 0.80 117 187
Facenet mediapipe euclidean_l2 Facenet2018 FALSE 0.35 0.98 0.80 117 187
Facenet mediapipe euclidean_l2 VGGFace TRUE 0.34 0.33 0.80 117 187
Facenet mediapipe euclidean_l2 VGGFace2 TRUE 0.35 0.32 0.80 117 187
Facenet mediapipe euclidean_l2 ArcFace FALSE 0.35 0.98 0.80 117 187
Facenet yolov8 cosine base FALSE 0.51 0.43 0.40 131 187
Facenet yolov8 cosine raw TRUE 0.49 0.15 0.40 131 187
Facenet yolov8 cosine Facenet TRUE 0.47 0.37 0.40 131 187
Facenet yolov8 cosine Facenet2018 TRUE 0.48 0.40 0.40 131 187
Facenet yolov8 cosine VGGFace TRUE 0.49 0.08 0.40 131 187
Facenet yolov8 cosine VGGFace2 TRUE 0.49 0.08 0.40 131 187
Facenet yolov8 cosine ArcFace TRUE 0.50 0.40 0.40 131 187
Facenet yolov8 euclidean base FALSE 0.52 10.02 10.00 131 187
Facenet yolov8 euclidean raw TRUE 0.49 9.12 10.00 131 187
Facenet yolov8 euclidean Facenet TRUE 0.49 9.68 10.00 131 187
Facenet yolov8 euclidean Facenet2018 FALSE 0.49 10.02 10.00 131 187
Facenet yolov8 euclidean VGGFace TRUE 0.49 5.50 10.00 131 187
Facenet yolov8 euclidean VGGFace2 TRUE 0.48 5.50 10.00 131 187
Facenet yolov8 euclidean ArcFace FALSE 0.50 10.02 10.00 131 187
Facenet yolov8 euclidean_l2 base FALSE 0.49 0.93 0.80 131 187
Facenet yolov8 euclidean_l2 raw TRUE 0.50 0.54 0.80 131 187
Facenet yolov8 euclidean_l2 Facenet FALSE 0.49 0.86 0.80 131 187
Facenet yolov8 euclidean_l2 Facenet2018 FALSE 0.49 0.89 0.80 131 187
Facenet yolov8 euclidean_l2 VGGFace TRUE 0.49 0.40 0.80 131 187
Facenet yolov8 euclidean_l2 VGGFace2 TRUE 0.49 0.41 0.80 131 187
Facenet yolov8 euclidean_l2 ArcFace FALSE 0.48 0.89 0.80 131 187
Facenet yunet cosine base TRUE 0.37 0.37 0.40 125 183
Facenet yunet cosine raw TRUE 0.37 0.11 0.40 125 183
Facenet yunet cosine Facenet FALSE 0.37 0.44 0.40 125 183
Facenet yunet cosine Facenet2018 FALSE 0.37 0.44 0.40 125 183
Facenet yunet cosine VGGFace TRUE 0.37 0.08 0.40 125 183
Facenet yunet cosine VGGFace2 TRUE 0.37 0.08 0.40 125 183
Facenet yunet cosine ArcFace FALSE 0.37 0.44 0.40 125 183
Facenet yunet euclidean base TRUE 0.37 9.05 10.00 125 183
Facenet yunet euclidean raw TRUE 0.37 7.68 10.00 125 183
Facenet yunet euclidean Facenet FALSE 0.37 10.56 10.00 125 183
Facenet yunet euclidean Facenet2018 FALSE 0.36 10.58 10.00 125 183
Facenet yunet euclidean VGGFace TRUE 0.37 5.15 10.00 125 183
Facenet yunet euclidean VGGFace2 TRUE 0.36 5.06 10.00 125 183
Facenet yunet euclidean ArcFace FALSE 0.37 10.57 10.00 125 183
Facenet yunet euclidean_l2 base FALSE 0.36 0.86 0.80 125 183
Facenet yunet euclidean_l2 raw TRUE 0.37 0.46 0.80 125 183
Facenet yunet euclidean_l2 Facenet FALSE 0.37 0.94 0.80 125 183
Facenet yunet euclidean_l2 Facenet2018 FALSE 0.37 0.94 0.80 125 183
Facenet yunet euclidean_l2 VGGFace TRUE 0.36 0.40 0.80 125 183
Facenet yunet euclidean_l2 VGGFace2 TRUE 0.37 0.39 0.80 125 183
Facenet yunet euclidean_l2 ArcFace FALSE 0.36 0.94 0.80 125 183
Facenet fastmtcnn cosine base FALSE 0.41 0.49 0.40 125 189
Facenet fastmtcnn cosine raw TRUE 0.42 0.20 0.40 125 189
Facenet fastmtcnn cosine Facenet TRUE 0.42 0.38 0.40 125 189
Facenet fastmtcnn cosine Facenet2018 FALSE 0.41 0.41 0.40 125 189
Facenet fastmtcnn cosine VGGFace TRUE 0.42 0.12 0.40 125 189
Facenet fastmtcnn cosine VGGFace2 TRUE 0.42 0.12 0.40 125 189
Facenet fastmtcnn cosine ArcFace FALSE 0.42 0.41 0.40 125 189
Facenet fastmtcnn euclidean base FALSE 0.42 10.91 10.00 125 189
Facenet fastmtcnn euclidean raw FALSE 0.42 11.22 10.00 125 189
Facenet fastmtcnn euclidean Facenet TRUE 0.42 9.81 10.00 125 189
Facenet fastmtcnn euclidean Facenet2018 FALSE 0.42 10.22 10.00 125 189
Facenet fastmtcnn euclidean VGGFace TRUE 0.42 6.53 10.00 125 189
Facenet fastmtcnn euclidean VGGFace2 TRUE 0.42 6.42 10.00 125 189
Facenet fastmtcnn euclidean ArcFace FALSE 0.42 10.22 10.00 125 189
Facenet fastmtcnn euclidean_l2 base FALSE 0.42 0.99 0.80 125 189
Facenet fastmtcnn euclidean_l2 raw TRUE 0.42 0.64 0.80 125 189
Facenet fastmtcnn euclidean_l2 Facenet FALSE 0.43 0.87 0.80 125 189
Facenet fastmtcnn euclidean_l2 Facenet2018 FALSE 0.42 0.90 0.80 125 189
Facenet fastmtcnn euclidean_l2 VGGFace TRUE 0.42 0.49 0.80 125 189
Facenet fastmtcnn euclidean_l2 VGGFace2 TRUE 0.42 0.48 0.80 125 189
Facenet fastmtcnn euclidean_l2 ArcFace FALSE 0.42 0.90 0.80 125 189
Facenet512 opencv cosine base FALSE 2.35 0.54 0.30 102 86
Facenet512 opencv cosine raw TRUE 0.50 0.10 0.30 102 86
Facenet512 opencv cosine Facenet FALSE 0.51 0.55 0.30 102 86
Facenet512 opencv cosine Facenet2018 FALSE 0.50 0.49 0.30 102 86
Facenet512 opencv cosine VGGFace TRUE 0.50 0.04 0.30 102 86
Facenet512 opencv cosine VGGFace2 TRUE 0.50 0.04 0.30 102 86
Facenet512 opencv cosine ArcFace FALSE 0.50 0.48 0.30 102 86
Facenet512 opencv euclidean base FALSE 0.50 24.35 23.56 102 86
Facenet512 opencv euclidean raw FALSE 0.50 52.25 23.56 102 86
Facenet512 opencv euclidean Facenet TRUE 0.50 23.51 23.56 102 86
Facenet512 opencv euclidean Facenet2018 TRUE 0.49 22.31 23.56 102 86
Facenet512 opencv euclidean VGGFace FALSE 0.50 70.88 23.56 102 86
Facenet512 opencv euclidean VGGFace2 FALSE 0.50 69.69 23.56 102 86
Facenet512 opencv euclidean ArcFace TRUE 0.50 22.27 23.56 102 86
Facenet512 opencv euclidean_l2 base TRUE 0.50 1.04 1.04 102 86
Facenet512 opencv euclidean_l2 raw TRUE 0.50 0.45 1.04 102 86
Facenet512 opencv euclidean_l2 Facenet FALSE 0.50 1.05 1.04 102 86
Facenet512 opencv euclidean_l2 Facenet2018 TRUE 0.50 0.99 1.04 102 86
Facenet512 opencv euclidean_l2 VGGFace TRUE 0.49 0.27 1.04 102 86
Facenet512 opencv euclidean_l2 VGGFace2 TRUE 0.50 0.29 1.04 102 86
Facenet512 opencv euclidean_l2 ArcFace TRUE 0.50 0.98 1.04 102 86
Facenet512 ssd cosine base FALSE 0.67 0.36 0.30 127 60
Facenet512 ssd cosine raw TRUE 0.67 0.04 0.30 127 60
Facenet512 ssd cosine Facenet FALSE 0.67 0.48 0.30 127 60
Facenet512 ssd cosine Facenet2018 FALSE 0.67 0.35 0.30 127 60
Facenet512 ssd cosine VGGFace TRUE 0.67 0.05 0.30 283 None
Facenet512 ssd cosine VGGFace2 TRUE 0.67 0.04 0.30 283 None
Facenet512 ssd cosine ArcFace FALSE 0.67 0.35 0.30 127 60
Facenet512 ssd euclidean base TRUE 0.68 19.71 23.56 127 60
Facenet512 ssd euclidean raw FALSE 0.67 30.76 23.56 127 60
Facenet512 ssd euclidean Facenet TRUE 0.68 22.22 23.56 127 60
Facenet512 ssd euclidean Facenet2018 TRUE 0.68 18.67 23.56 127 60
Facenet512 ssd euclidean VGGFace FALSE 0.67 86.41 23.56 283 None
Facenet512 ssd euclidean VGGFace2 FALSE 0.67 82.58 23.56 283 None
Facenet512 ssd euclidean ArcFace TRUE 0.67 18.71 23.56 127 60
Facenet512 ssd euclidean_l2 base TRUE 0.67 0.85 1.04 127 60
Facenet512 ssd euclidean_l2 raw TRUE 0.67 0.30 1.04 127 60
Facenet512 ssd euclidean_l2 Facenet TRUE 0.68 0.98 1.04 127 60
Facenet512 ssd euclidean_l2 Facenet2018 TRUE 0.67 0.83 1.04 127 60
Facenet512 ssd euclidean_l2 VGGFace TRUE 0.68 0.31 1.04 283 None
Facenet512 ssd euclidean_l2 VGGFace2 TRUE 0.68 0.30 1.04 283 None
Facenet512 ssd euclidean_l2 ArcFace TRUE 0.68 0.83 1.04 127 60
Facenet512 dlib cosine base FALSE 0.47 0.40 0.30 117 168
Facenet512 dlib cosine raw TRUE 0.52 0.10 0.30 117 168
Facenet512 dlib cosine Facenet FALSE 0.48 0.33 0.30 117 168
Facenet512 dlib cosine Facenet2018 FALSE 0.47 0.43 0.30 117 168
Facenet512 dlib cosine VGGFace TRUE 0.47 0.05 0.30 117 168
Facenet512 dlib cosine VGGFace2 TRUE 0.47 0.05 0.30 117 168
Facenet512 dlib cosine ArcFace FALSE 0.47 0.43 0.30 117 168
Facenet512 dlib euclidean base TRUE 0.47 21.76 23.56 117 168
Facenet512 dlib euclidean raw FALSE 0.48 55.91 23.56 117 168
Facenet512 dlib euclidean Facenet TRUE 0.47 18.32 23.56 117 168
Facenet512 dlib euclidean Facenet2018 TRUE 0.47 21.92 23.56 117 168
Facenet512 dlib euclidean VGGFace FALSE 0.47 69.66 23.56 117 168
Facenet512 dlib euclidean VGGFace2 FALSE 0.47 67.79 23.56 117 168
Facenet512 dlib euclidean ArcFace TRUE 0.47 21.93 23.56 117 168
Facenet512 dlib euclidean_l2 base TRUE 0.47 0.90 1.04 117 168
Facenet512 dlib euclidean_l2 raw TRUE 0.47 0.44 1.04 117 168
Facenet512 dlib euclidean_l2 Facenet TRUE 0.47 0.81 1.04 117 168
Facenet512 dlib euclidean_l2 Facenet2018 TRUE 0.47 0.93 1.04 117 168
Facenet512 dlib euclidean_l2 VGGFace TRUE 0.47 0.31 1.04 117 168
Facenet512 dlib euclidean_l2 VGGFace2 TRUE 0.47 0.33 1.04 117 168
Facenet512 dlib euclidean_l2 ArcFace TRUE 0.47 0.93 1.04 117 168
Facenet512 mtcnn cosine base FALSE 1.29 0.41 0.30 125 188
Facenet512 mtcnn cosine raw TRUE 1.29 0.11 0.30 125 188
Facenet512 mtcnn cosine Facenet FALSE 1.27 0.58 0.30 125 188
Facenet512 mtcnn cosine Facenet2018 FALSE 1.27 0.44 0.30 125 188
Facenet512 mtcnn cosine VGGFace TRUE 1.28 0.12 0.30 125 188
Facenet512 mtcnn cosine VGGFace2 TRUE 1.28 0.11 0.30 125 188
Facenet512 mtcnn cosine ArcFace FALSE 1.29 0.44 0.30 125 188
Facenet512 mtcnn euclidean base TRUE 1.29 20.72 23.56 125 188
Facenet512 mtcnn euclidean raw FALSE 1.28 47.60 23.56 125 188
Facenet512 mtcnn euclidean Facenet FALSE 1.28 24.21 23.56 125 188
Facenet512 mtcnn euclidean Facenet2018 TRUE 1.28 20.85 23.56 125 188
Facenet512 mtcnn euclidean VGGFace FALSE 1.35 89.35 23.56 125 188
Facenet512 mtcnn euclidean VGGFace2 FALSE 1.31 85.85 23.56 125 188
Facenet512 mtcnn euclidean ArcFace TRUE 1.57 20.86 23.56 125 188
Facenet512 mtcnn euclidean_l2 base TRUE 1.31 0.90 1.04 125 188
Facenet512 mtcnn euclidean_l2 raw TRUE 1.28 0.46 1.04 125 188
Facenet512 mtcnn euclidean_l2 Facenet FALSE 1.47 1.08 1.04 125 188
Facenet512 mtcnn euclidean_l2 Facenet2018 TRUE 1.38 0.94 1.04 125 188
Facenet512 mtcnn euclidean_l2 VGGFace TRUE 1.36 0.49 1.04 125 188
Facenet512 mtcnn euclidean_l2 VGGFace2 TRUE 1.38 0.48 1.04 125 188
Facenet512 mtcnn euclidean_l2 ArcFace TRUE 1.38 0.94 1.04 125 188
Facenet512 retinaface cosine base FALSE 2.43 0.41 0.30 133 189
Facenet512 retinaface cosine raw TRUE 2.38 0.09 0.30 133 189
Facenet512 retinaface cosine Facenet FALSE 2.32 0.58 0.30 133 189
Facenet512 retinaface cosine Facenet2018 FALSE 2.35 0.44 0.30 133 189
Facenet512 retinaface cosine VGGFace TRUE 2.30 0.06 0.30 133 189
Facenet512 retinaface cosine VGGFace2 TRUE 2.30 0.06 0.30 133 189
Facenet512 retinaface cosine ArcFace FALSE 2.33 0.44 0.30 133 189
Facenet512 retinaface euclidean base TRUE 2.34 21.55 23.56 133 189
Facenet512 retinaface euclidean raw FALSE 2.31 47.46 23.56 133 189
Facenet512 retinaface euclidean Facenet FALSE 2.34 25.18 23.56 133 189
Facenet512 retinaface euclidean Facenet2018 TRUE 2.34 21.50 23.56 133 189
Facenet512 retinaface euclidean VGGFace FALSE 2.31 68.28 23.56 133 189
Facenet512 retinaface euclidean VGGFace2 FALSE 2.32 64.69 23.56 133 189
Facenet512 retinaface euclidean ArcFace TRUE 2.33 21.50 23.56 133 189
Facenet512 retinaface euclidean_l2 base TRUE 2.32 0.91 1.04 133 189
Facenet512 retinaface euclidean_l2 raw TRUE 2.33 0.42 1.04 133 189
Facenet512 retinaface euclidean_l2 Facenet FALSE 2.35 1.08 1.04 133 189
Facenet512 retinaface euclidean_l2 Facenet2018 TRUE 2.33 0.93 1.04 133 189
Facenet512 retinaface euclidean_l2 VGGFace TRUE 2.33 0.34 1.04 133 189
Facenet512 retinaface euclidean_l2 VGGFace2 TRUE 2.32 0.34 1.04 133 189
Facenet512 retinaface euclidean_l2 ArcFace TRUE 2.37 0.93 1.04 133 189
Facenet512 mediapipe cosine base FALSE 0.37 0.43 0.30 117 187
Facenet512 mediapipe cosine raw TRUE 0.35 0.16 0.30 117 187
Facenet512 mediapipe cosine Facenet FALSE 0.35 0.45 0.30 117 187
Facenet512 mediapipe cosine Facenet2018 FALSE 0.36 0.48 0.30 117 187
Facenet512 mediapipe cosine VGGFace TRUE 0.35 0.07 0.30 117 187
Facenet512 mediapipe cosine VGGFace2 TRUE 0.35 0.08 0.30 117 187
Facenet512 mediapipe cosine ArcFace FALSE 0.35 0.48 0.30 117 187
Facenet512 mediapipe euclidean base TRUE 0.35 22.11 23.56 117 187
Facenet512 mediapipe euclidean raw FALSE 0.35 54.48 23.56 117 187
Facenet512 mediapipe euclidean Facenet TRUE 0.35 22.64 23.56 117 187
Facenet512 mediapipe euclidean Facenet2018 TRUE 0.35 23.31 23.56 117 187
Facenet512 mediapipe euclidean VGGFace FALSE 0.35 81.21 23.56 117 187
Facenet512 mediapipe euclidean VGGFace2 FALSE 0.35 77.55 23.56 117 187
Facenet512 mediapipe euclidean ArcFace TRUE 0.35 23.31 23.56 117 187
Facenet512 mediapipe euclidean_l2 base TRUE 0.35 0.92 1.04 117 187
Facenet512 mediapipe euclidean_l2 raw TRUE 0.36 0.56 1.04 117 187
Facenet512 mediapipe euclidean_l2 Facenet TRUE 0.35 0.95 1.04 117 187
Facenet512 mediapipe euclidean_l2 Facenet2018 TRUE 0.35 0.98 1.04 117 187
Facenet512 mediapipe euclidean_l2 VGGFace TRUE 0.35 0.39 1.04 117 187
Facenet512 mediapipe euclidean_l2 VGGFace2 TRUE 0.35 0.39 1.04 117 187
Facenet512 mediapipe euclidean_l2 ArcFace TRUE 0.36 0.98 1.04 117 187
Facenet512 yolov8 cosine base FALSE 0.51 0.40 0.30 131 187
Facenet512 yolov8 cosine raw TRUE 0.50 0.07 0.30 131 187
Facenet512 yolov8 cosine Facenet FALSE 0.49 0.51 0.30 131 187
Facenet512 yolov8 cosine Facenet2018 FALSE 0.51 0.42 0.30 131 187
Facenet512 yolov8 cosine VGGFace TRUE 0.49 0.10 0.30 131 187
Facenet512 yolov8 cosine VGGFace2 TRUE 0.50 0.10 0.30 131 187
Facenet512 yolov8 cosine ArcFace FALSE 0.50 0.42 0.30 131 187
Facenet512 yolov8 euclidean base TRUE 0.51 20.77 23.56 131 187
Facenet512 yolov8 euclidean raw FALSE 0.50 38.20 23.56 131 187
Facenet512 yolov8 euclidean Facenet TRUE 0.50 23.27 23.56 131 187
Facenet512 yolov8 euclidean Facenet2018 TRUE 0.49 20.99 23.56 131 187
Facenet512 yolov8 euclidean VGGFace FALSE 0.50 88.65 23.56 131 187
Facenet512 yolov8 euclidean VGGFace2 FALSE 0.49 87.55 23.56 131 187
Facenet512 yolov8 euclidean ArcFace TRUE 0.51 21.01 23.56 131 187
Facenet512 yolov8 euclidean_l2 base TRUE 0.49 0.89 1.04 131 187
Facenet512 yolov8 euclidean_l2 raw TRUE 0.50 0.38 1.04 131 187
Facenet512 yolov8 euclidean_l2 Facenet TRUE 0.51 1.01 1.04 131 187
Facenet512 yolov8 euclidean_l2 Facenet2018 TRUE 0.50 0.92 1.04 131 187
Facenet512 yolov8 euclidean_l2 VGGFace TRUE 0.51 0.44 1.04 131 187
Facenet512 yolov8 euclidean_l2 VGGFace2 TRUE 0.50 0.45 1.04 131 187
Facenet512 yolov8 euclidean_l2 ArcFace TRUE 0.55 0.92 1.04 131 187
Facenet512 yunet cosine base FALSE 0.39 0.39 0.30 125 183
Facenet512 yunet cosine raw TRUE 0.38 0.10 0.30 125 183
Facenet512 yunet cosine Facenet FALSE 0.38 0.49 0.30 125 183
Facenet512 yunet cosine Facenet2018 FALSE 0.37 0.40 0.30 125 183
Facenet512 yunet cosine VGGFace TRUE 0.37 0.08 0.30 125 183
Facenet512 yunet cosine VGGFace2 TRUE 0.37 0.08 0.30 125 183
Facenet512 yunet cosine ArcFace FALSE 0.38 0.40 0.30 125 183
Facenet512 yunet euclidean base TRUE 0.37 20.00 23.56 125 183
Facenet512 yunet euclidean raw FALSE 0.38 44.67 23.56 125 183
Facenet512 yunet euclidean Facenet TRUE 0.38 22.07 23.56 125 183
Facenet512 yunet euclidean Facenet2018 TRUE 0.38 19.82 23.56 125 183
Facenet512 yunet euclidean VGGFace FALSE 0.38 74.75 23.56 125 183
Facenet512 yunet euclidean VGGFace2 FALSE 0.38 71.23 23.56 125 183
Facenet512 yunet euclidean ArcFace TRUE 0.38 19.82 23.56 125 183
Facenet512 yunet euclidean_l2 base TRUE 0.38 0.89 1.04 125 183
Facenet512 yunet euclidean_l2 raw TRUE 0.38 0.45 1.04 125 183
Facenet512 yunet euclidean_l2 Facenet TRUE 0.37 0.99 1.04 125 183
Facenet512 yunet euclidean_l2 Facenet2018 TRUE 0.38 0.89 1.04 125 183
Facenet512 yunet euclidean_l2 VGGFace TRUE 0.37 0.40 1.04 125 183
Facenet512 yunet euclidean_l2 VGGFace2 TRUE 0.37 0.39 1.04 125 183
Facenet512 yunet euclidean_l2 ArcFace TRUE 0.37 0.89 1.04 125 183
Facenet512 fastmtcnn cosine base FALSE 0.43 0.45 0.30 125 189
Facenet512 fastmtcnn cosine raw TRUE 0.43 0.08 0.30 125 189
Facenet512 fastmtcnn cosine Facenet FALSE 0.42 0.61 0.30 125 189
Facenet512 fastmtcnn cosine Facenet2018 FALSE 0.43 0.48 0.30 125 189
Facenet512 fastmtcnn cosine VGGFace TRUE 0.42 0.09 0.30 125 189
Facenet512 fastmtcnn cosine VGGFace2 TRUE 0.43 0.09 0.30 125 189
Facenet512 fastmtcnn cosine ArcFace FALSE 0.42 0.48 0.30 125 189
Facenet512 fastmtcnn euclidean base TRUE 0.43 21.81 23.56 125 189
Facenet512 fastmtcnn euclidean raw FALSE 0.43 42.05 23.56 125 189
Facenet512 fastmtcnn euclidean Facenet FALSE 0.43 24.91 23.56 125 189
Facenet512 fastmtcnn euclidean Facenet2018 TRUE 0.43 21.86 23.56 125 189
Facenet512 fastmtcnn euclidean VGGFace FALSE 0.43 80.23 23.56 125 189
Facenet512 fastmtcnn euclidean VGGFace2 FALSE 0.43 77.37 23.56 125 189
Facenet512 fastmtcnn euclidean ArcFace TRUE 0.42 21.87 23.56 125 189
Facenet512 fastmtcnn euclidean_l2 base TRUE 0.44 0.95 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 raw TRUE 0.43 0.39 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 Facenet FALSE 0.44 1.10 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 Facenet2018 TRUE 0.43 0.97 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 VGGFace TRUE 0.43 0.42 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 VGGFace2 TRUE 0.43 0.41 1.04 125 189
Facenet512 fastmtcnn euclidean_l2 ArcFace TRUE 0.43 0.98 1.04 125 189
OpenFace opencv cosine base FALSE 1.08 0.28 0.10 102 86
OpenFace opencv cosine raw TRUE 0.28 0.01 0.10 102 86
OpenFace opencv cosine Facenet FALSE 0.28 0.36 0.10 102 86
OpenFace opencv cosine Facenet2018 FALSE 0.28 0.20 0.10 102 86
OpenFace opencv cosine VGGFace TRUE 0.28 0.02 0.10 102 86
OpenFace opencv cosine VGGFace2 TRUE 0.28 0.02 0.10 102 86
OpenFace opencv cosine ArcFace FALSE 0.28 0.20 0.10 102 86
OpenFace opencv euclidean base FALSE 0.28 0.75 0.55 102 86
OpenFace opencv euclidean raw TRUE 0.28 0.13 0.55 102 86
OpenFace opencv euclidean Facenet FALSE 0.28 0.84 0.55 102 86
OpenFace opencv euclidean Facenet2018 FALSE 0.29 0.64 0.55 102 86
OpenFace opencv euclidean VGGFace TRUE 0.29 0.22 0.55 102 86
OpenFace opencv euclidean VGGFace2 TRUE 0.28 0.22 0.55 102 86
OpenFace opencv euclidean ArcFace FALSE 0.28 0.64 0.55 102 86
OpenFace opencv euclidean_l2 base FALSE 0.28 0.75 0.55 102 86
OpenFace opencv euclidean_l2 raw TRUE 0.28 0.13 0.55 102 86
OpenFace opencv euclidean_l2 Facenet FALSE 0.28 0.84 0.55 102 86
OpenFace opencv euclidean_l2 Facenet2018 FALSE 0.28 0.64 0.55 102 86
OpenFace opencv euclidean_l2 VGGFace TRUE 0.28 0.22 0.55 102 86
OpenFace opencv euclidean_l2 VGGFace2 TRUE 0.28 0.22 0.55 102 86
OpenFace opencv euclidean_l2 ArcFace FALSE 0.28 0.64 0.55 102 86
OpenFace ssd cosine base FALSE 0.35 0.37 0.10 283 None
OpenFace ssd cosine raw TRUE 0.35 0.01 0.10 283 None
OpenFace ssd cosine Facenet FALSE 0.35 0.35 0.10 283 None
OpenFace ssd cosine Facenet2018 FALSE 0.35 0.26 0.10 127 60
OpenFace ssd cosine VGGFace TRUE 0.35 0.03 0.10 283 None
OpenFace ssd cosine VGGFace2 TRUE 0.35 0.02 0.10 127 60
OpenFace ssd cosine ArcFace FALSE 0.35 0.26 0.10 127 60
OpenFace ssd euclidean base FALSE 0.35 0.86 0.55 283 None
OpenFace ssd euclidean raw TRUE 0.35 0.17 0.55 283 None
OpenFace ssd euclidean Facenet FALSE 0.34 0.84 0.55 283 None
OpenFace ssd euclidean Facenet2018 FALSE 0.35 0.72 0.55 127 60
OpenFace ssd euclidean VGGFace TRUE 0.35 0.22 0.55 283 None
OpenFace ssd euclidean VGGFace2 TRUE 0.34 0.22 0.55 127 60
OpenFace ssd euclidean ArcFace FALSE 0.35 0.72 0.55 127 60
OpenFace ssd euclidean_l2 base FALSE 0.35 0.86 0.55 283 None
OpenFace ssd euclidean_l2 raw TRUE 0.35 0.17 0.55 283 None
OpenFace ssd euclidean_l2 Facenet FALSE 0.35 0.84 0.55 283 None
OpenFace ssd euclidean_l2 Facenet2018 FALSE 0.35 0.72 0.55 127 60
OpenFace ssd euclidean_l2 VGGFace TRUE 0.35 0.22 0.55 283 None
OpenFace ssd euclidean_l2 VGGFace2 TRUE 0.35 0.22 0.55 127 60
OpenFace ssd euclidean_l2 ArcFace FALSE 0.34 0.72 0.55 127 60
OpenFace dlib cosine base FALSE 0.26 0.31 0.10 117 168
OpenFace dlib cosine raw TRUE 0.26 0.02 0.10 117 168
OpenFace dlib cosine Facenet FALSE 0.26 0.17 0.10 117 168
OpenFace dlib cosine Facenet2018 FALSE 0.26 0.28 0.10 117 168
OpenFace dlib cosine VGGFace TRUE 0.26 0.03 0.10 117 168
OpenFace dlib cosine VGGFace2 TRUE 0.26 0.03 0.10 117 168
OpenFace dlib cosine ArcFace FALSE 0.25 0.28 0.10 117 168
OpenFace dlib euclidean base FALSE 0.25 0.79 0.55 117 168
OpenFace dlib euclidean raw TRUE 0.26 0.21 0.55 117 168
OpenFace dlib euclidean Facenet FALSE 0.26 0.58 0.55 117 168
OpenFace dlib euclidean Facenet2018 FALSE 0.25 0.75 0.55 117 168
OpenFace dlib euclidean VGGFace TRUE 0.25 0.24 0.55 117 168
OpenFace dlib euclidean VGGFace2 TRUE 0.26 0.24 0.55 117 168
OpenFace dlib euclidean ArcFace FALSE 0.26 0.75 0.55 117 168
OpenFace dlib euclidean_l2 base FALSE 0.25 0.79 0.55 117 168
OpenFace dlib euclidean_l2 raw TRUE 0.25 0.21 0.55 117 168
OpenFace dlib euclidean_l2 Facenet FALSE 0.26 0.58 0.55 117 168
OpenFace dlib euclidean_l2 Facenet2018 FALSE 0.26 0.75 0.55 117 168
OpenFace dlib euclidean_l2 VGGFace TRUE 0.25 0.24 0.55 117 168
OpenFace dlib euclidean_l2 VGGFace2 TRUE 0.25 0.24 0.55 117 168
OpenFace dlib euclidean_l2 ArcFace FALSE 0.26 0.75 0.55 117 168
OpenFace mtcnn cosine base FALSE 1.08 0.35 0.10 125 188
OpenFace mtcnn cosine raw TRUE 1.07 0.02 0.10 125 188
OpenFace mtcnn cosine Facenet FALSE 1.07 0.21 0.10 125 188
OpenFace mtcnn cosine Facenet2018 FALSE 1.08 0.19 0.10 125 188
OpenFace mtcnn cosine VGGFace TRUE 1.07 0.03 0.10 125 188
OpenFace mtcnn cosine VGGFace2 TRUE 1.07 0.04 0.10 125 188
OpenFace mtcnn cosine ArcFace FALSE 1.07 0.19 0.10 125 188
OpenFace mtcnn euclidean base FALSE 1.08 0.84 0.55 125 188
OpenFace mtcnn euclidean raw TRUE 1.08 0.21 0.55 125 188
OpenFace mtcnn euclidean Facenet FALSE 1.08 0.65 0.55 125 188
OpenFace mtcnn euclidean Facenet2018 FALSE 1.11 0.62 0.55 125 188
OpenFace mtcnn euclidean VGGFace TRUE 1.08 0.26 0.55 125 188
OpenFace mtcnn euclidean VGGFace2 TRUE 1.07 0.27 0.55 125 188
OpenFace mtcnn euclidean ArcFace FALSE 1.08 0.62 0.55 125 188
OpenFace mtcnn euclidean_l2 base FALSE 1.07 0.84 0.55 125 188
OpenFace mtcnn euclidean_l2 raw TRUE 1.07 0.21 0.55 125 188
OpenFace mtcnn euclidean_l2 Facenet FALSE 1.08 0.65 0.55 125 188
OpenFace mtcnn euclidean_l2 Facenet2018 FALSE 1.09 0.62 0.55 125 188
OpenFace mtcnn euclidean_l2 VGGFace TRUE 1.07 0.26 0.55 125 188
OpenFace mtcnn euclidean_l2 VGGFace2 TRUE 1.07 0.27 0.55 125 188
OpenFace mtcnn euclidean_l2 ArcFace FALSE 1.08 0.62 0.55 125 188
OpenFace retinaface cosine base FALSE 2.12 0.44 0.10 133 189
OpenFace retinaface cosine raw TRUE 2.05 0.02 0.10 133 189
OpenFace retinaface cosine Facenet FALSE 2.08 0.33 0.10 133 189
OpenFace retinaface cosine Facenet2018 FALSE 2.00 0.20 0.10 133 189
OpenFace retinaface cosine VGGFace TRUE 1.97 0.02 0.10 133 189
OpenFace retinaface cosine VGGFace2 TRUE 1.97 0.02 0.10 133 189
OpenFace retinaface cosine ArcFace FALSE 2.04 0.20 0.10 133 189
OpenFace retinaface euclidean base FALSE 2.02 0.93 0.55 133 189
OpenFace retinaface euclidean raw TRUE 2.08 0.18 0.55 133 189
OpenFace retinaface euclidean Facenet FALSE 2.08 0.82 0.55 133 189
OpenFace retinaface euclidean Facenet2018 FALSE 1.97 0.63 0.55 133 189
OpenFace retinaface euclidean VGGFace TRUE 2.10 0.21 0.55 133 189
OpenFace retinaface euclidean VGGFace2 TRUE 1.98 0.22 0.55 133 189
OpenFace retinaface euclidean ArcFace FALSE 2.02 0.63 0.55 133 189
OpenFace retinaface euclidean_l2 base FALSE 1.97 0.93 0.55 133 189
OpenFace retinaface euclidean_l2 raw TRUE 1.97 0.18 0.55 133 189
OpenFace retinaface euclidean_l2 Facenet FALSE 2.07 0.82 0.55 133 189
OpenFace retinaface euclidean_l2 Facenet2018 FALSE 1.98 0.63 0.55 133 189
OpenFace retinaface euclidean_l2 VGGFace TRUE 2.03 0.21 0.55 133 189
OpenFace retinaface euclidean_l2 VGGFace2 TRUE 2.02 0.22 0.55 133 189
OpenFace retinaface euclidean_l2 ArcFace FALSE 2.09 0.63 0.55 133 189
OpenFace mediapipe cosine base FALSE 0.16 0.89 0.10 117 187
OpenFace mediapipe cosine raw TRUE 0.15 0.02 0.10 117 187
OpenFace mediapipe cosine Facenet FALSE 0.14 0.35 0.10 117 187
OpenFace mediapipe cosine Facenet2018 FALSE 0.13 0.32 0.10 117 187
OpenFace mediapipe cosine VGGFace TRUE 0.13 0.02 0.10 117 187
OpenFace mediapipe cosine VGGFace2 TRUE 0.13 0.02 0.10 117 187
OpenFace mediapipe cosine ArcFace FALSE 0.13 0.32 0.10 117 187
OpenFace mediapipe euclidean base FALSE 0.13 1.34 0.55 117 187
OpenFace mediapipe euclidean raw TRUE 0.13 0.19 0.55 117 187
OpenFace mediapipe euclidean Facenet FALSE 0.13 0.84 0.55 117 187
OpenFace mediapipe euclidean Facenet2018 FALSE 0.13 0.80 0.55 117 187
OpenFace mediapipe euclidean VGGFace TRUE 0.13 0.20 0.55 117 187
OpenFace mediapipe euclidean VGGFace2 TRUE 0.13 0.19 0.55 117 187
OpenFace mediapipe euclidean ArcFace FALSE 0.13 0.80 0.55 117 187
OpenFace mediapipe euclidean_l2 base FALSE 0.13 1.34 0.55 117 187
OpenFace mediapipe euclidean_l2 raw TRUE 0.13 0.19 0.55 117 187
OpenFace mediapipe euclidean_l2 Facenet FALSE 0.13 0.84 0.55 117 187
OpenFace mediapipe euclidean_l2 Facenet2018 FALSE 0.13 0.80 0.55 117 187
OpenFace mediapipe euclidean_l2 VGGFace TRUE 0.13 0.20 0.55 117 187
OpenFace mediapipe euclidean_l2 VGGFace2 TRUE 0.13 0.19 0.55 117 187
OpenFace mediapipe euclidean_l2 ArcFace FALSE 0.13 0.80 0.55 117 187
OpenFace yolov8 cosine base FALSE 0.28 0.36 0.10 131 187
OpenFace yolov8 cosine raw TRUE 0.27 0.03 0.10 131 187
OpenFace yolov8 cosine Facenet FALSE 0.25 0.14 0.10 131 187
OpenFace yolov8 cosine Facenet2018 FALSE 0.26 0.16 0.10 131 187
OpenFace yolov8 cosine VGGFace TRUE 0.27 0.05 0.10 131 187
OpenFace yolov8 cosine VGGFace2 TRUE 0.26 0.06 0.10 131 187
OpenFace yolov8 cosine ArcFace FALSE 0.25 0.16 0.10 131 187
OpenFace yolov8 euclidean base FALSE 0.26 0.85 0.55 131 187
OpenFace yolov8 euclidean raw TRUE 0.26 0.22 0.55 131 187
OpenFace yolov8 euclidean Facenet TRUE 0.27 0.53 0.55 131 187
OpenFace yolov8 euclidean Facenet2018 FALSE 0.27 0.56 0.55 131 187
OpenFace yolov8 euclidean VGGFace TRUE 0.27 0.33 0.55 131 187
OpenFace yolov8 euclidean VGGFace2 TRUE 0.27 0.34 0.55 131 187
OpenFace yolov8 euclidean ArcFace FALSE 0.26 0.56 0.55 131 187
OpenFace yolov8 euclidean_l2 base FALSE 0.26 0.85 0.55 131 187
OpenFace yolov8 euclidean_l2 raw TRUE 0.27 0.22 0.55 131 187
OpenFace yolov8 euclidean_l2 Facenet TRUE 0.26 0.53 0.55 131 187
OpenFace yolov8 euclidean_l2 Facenet2018 FALSE 0.26 0.56 0.55 131 187
OpenFace yolov8 euclidean_l2 VGGFace TRUE 0.26 0.33 0.55 131 187
OpenFace yolov8 euclidean_l2 VGGFace2 TRUE 0.26 0.34 0.55 131 187
OpenFace yolov8 euclidean_l2 ArcFace FALSE 0.27 0.56 0.55 131 187
OpenFace yunet cosine base FALSE 0.16 0.54 0.10 125 183
OpenFace yunet cosine raw TRUE 0.15 0.02 0.10 125 183
OpenFace yunet cosine Facenet FALSE 0.15 0.32 0.10 125 183
OpenFace yunet cosine Facenet2018 FALSE 0.15 0.23 0.10 125 183
OpenFace yunet cosine VGGFace TRUE 0.15 0.03 0.10 125 183
OpenFace yunet cosine VGGFace2 TRUE 0.15 0.03 0.10 125 183
OpenFace yunet cosine ArcFace FALSE 0.15 0.23 0.10 125 183
OpenFace yunet euclidean base FALSE 0.15 1.04 0.55 125 183
OpenFace yunet euclidean raw TRUE 0.15 0.19 0.55 125 183
OpenFace yunet euclidean Facenet FALSE 0.15 0.79 0.55 125 183
OpenFace yunet euclidean Facenet2018 FALSE 0.15 0.68 0.55 125 183
OpenFace yunet euclidean VGGFace TRUE 0.15 0.24 0.55 125 183
OpenFace yunet euclidean VGGFace2 TRUE 0.15 0.25 0.55 125 183
OpenFace yunet euclidean ArcFace FALSE 0.15 0.68 0.55 125 183
OpenFace yunet euclidean_l2 base FALSE 0.15 1.04 0.55 125 183
OpenFace yunet euclidean_l2 raw TRUE 0.15 0.19 0.55 125 183
OpenFace yunet euclidean_l2 Facenet FALSE 0.15 0.79 0.55 125 183
OpenFace yunet euclidean_l2 Facenet2018 FALSE 0.15 0.68 0.55 125 183
OpenFace yunet euclidean_l2 VGGFace TRUE 0.15 0.24 0.55 125 183
OpenFace yunet euclidean_l2 VGGFace2 TRUE 0.15 0.25 0.55 125 183
OpenFace yunet euclidean_l2 ArcFace FALSE 0.15 0.68 0.55 125 183
OpenFace fastmtcnn cosine base FALSE 0.18 0.29 0.10 125 189
OpenFace fastmtcnn cosine raw TRUE 0.19 0.02 0.10 125 189
OpenFace fastmtcnn cosine Facenet FALSE 0.20 0.14 0.10 125 189
OpenFace fastmtcnn cosine Facenet2018 FALSE 0.19 0.20 0.10 125 189
OpenFace fastmtcnn cosine VGGFace TRUE 0.20 0.05 0.10 125 189
OpenFace fastmtcnn cosine VGGFace2 TRUE 0.19 0.05 0.10 125 189
OpenFace fastmtcnn cosine ArcFace FALSE 0.19 0.20 0.10 125 189
OpenFace fastmtcnn euclidean base FALSE 0.19 0.77 0.55 125 189
OpenFace fastmtcnn euclidean raw TRUE 0.19 0.21 0.55 125 189
OpenFace fastmtcnn euclidean Facenet TRUE 0.20 0.54 0.55 125 189
OpenFace fastmtcnn euclidean Facenet2018 FALSE 0.19 0.63 0.55 125 189
OpenFace fastmtcnn euclidean VGGFace TRUE 0.19 0.30 0.55 125 189
OpenFace fastmtcnn euclidean VGGFace2 TRUE 0.20 0.31 0.55 125 189
OpenFace fastmtcnn euclidean ArcFace FALSE 0.19 0.63 0.55 125 189
OpenFace fastmtcnn euclidean_l2 base FALSE 0.19 0.77 0.55 125 189
OpenFace fastmtcnn euclidean_l2 raw TRUE 0.19 0.21 0.55 125 189
OpenFace fastmtcnn euclidean_l2 Facenet TRUE 0.19 0.54 0.55 125 189
OpenFace fastmtcnn euclidean_l2 Facenet2018 FALSE 0.19 0.63 0.55 125 189
OpenFace fastmtcnn euclidean_l2 VGGFace TRUE 0.19 0.30 0.55 125 189
OpenFace fastmtcnn euclidean_l2 VGGFace2 TRUE 0.19 0.31 0.55 125 189
OpenFace fastmtcnn euclidean_l2 ArcFace FALSE 0.19 0.63 0.55 125 189
DeepFace opencv cosine base FALSE 10.63 0.63 0.23 102 86
DeepFace opencv cosine raw FALSE 2.56 0.66 0.23 102 86
DeepFace opencv cosine Facenet FALSE 2.73 0.48 0.23 102 86
DeepFace opencv cosine Facenet2018 FALSE 2.57 0.47 0.23 102 86
DeepFace opencv cosine VGGFace FALSE 2.57 0.52 0.23 102 86
DeepFace opencv cosine VGGFace2 FALSE 2.56 0.52 0.23 102 86
DeepFace opencv cosine ArcFace FALSE 2.53 0.47 0.23 102 86
DeepFace opencv euclidean base FALSE 2.53 86.02 64.00 102 86
DeepFace opencv euclidean raw FALSE 2.55 11892.11 64.00 102 86
DeepFace opencv euclidean Facenet FALSE 2.55 267.67 64.00 102 86
DeepFace opencv euclidean Facenet2018 FALSE 2.56 142.55 64.00 102 86
DeepFace opencv euclidean VGGFace FALSE 2.55 12142.93 64.00 102 86
DeepFace opencv euclidean VGGFace2 FALSE 2.54 12125.01 64.00 102 86
DeepFace opencv euclidean ArcFace FALSE 2.54 142.15 64.00 102 86
DeepFace opencv euclidean_l2 base FALSE 2.57 1.12 0.64 102 86
DeepFace opencv euclidean_l2 raw FALSE 2.55 1.15 0.64 102 86
DeepFace opencv euclidean_l2 Facenet FALSE 2.55 0.98 0.64 102 86
DeepFace opencv euclidean_l2 Facenet2018 FALSE 2.54 0.97 0.64 102 86
DeepFace opencv euclidean_l2 VGGFace FALSE 2.54 1.02 0.64 102 86
DeepFace opencv euclidean_l2 VGGFace2 FALSE 2.53 1.02 0.64 102 86
DeepFace opencv euclidean_l2 ArcFace FALSE 2.53 0.97 0.64 102 86
DeepFace ssd cosine base FALSE 3.75 0.43 0.23 283 None
DeepFace ssd cosine raw FALSE 3.75 0.38 0.23 283 None
DeepFace ssd cosine Facenet FALSE 3.74 0.33 0.23 283 None
DeepFace ssd cosine Facenet2018 FALSE 3.74 0.33 0.23 283 None
DeepFace ssd cosine VGGFace FALSE 3.75 0.31 0.23 283 None
DeepFace ssd cosine VGGFace2 FALSE 3.72 0.31 0.23 283 None
DeepFace ssd cosine ArcFace FALSE 3.74 0.33 0.23 283 None
DeepFace ssd euclidean base FALSE 3.73 84.48 64.00 127 60
DeepFace ssd euclidean raw FALSE 3.75 12880.71 64.00 127 60
DeepFace ssd euclidean Facenet FALSE 3.74 211.66 64.00 127 60
DeepFace ssd euclidean Facenet2018 FALSE 3.75 158.86 64.00 127 60
DeepFace ssd euclidean VGGFace FALSE 3.74 13532.83 64.00 127 60
DeepFace ssd euclidean VGGFace2 FALSE 3.73 13477.93 64.00 127 60
DeepFace ssd euclidean ArcFace FALSE 3.72 158.39 64.00 127 60
DeepFace ssd euclidean_l2 base FALSE 3.74 0.93 0.64 283 None
DeepFace ssd euclidean_l2 raw FALSE 3.73 0.87 0.64 283 None
DeepFace ssd euclidean_l2 Facenet FALSE 3.72 0.81 0.64 283 None
DeepFace ssd euclidean_l2 Facenet2018 FALSE 3.73 0.81 0.64 283 None
DeepFace ssd euclidean_l2 VGGFace FALSE 3.76 0.78 0.64 283 None
DeepFace ssd euclidean_l2 VGGFace2 FALSE 3.75 0.78 0.64 283 None
DeepFace ssd euclidean_l2 ArcFace FALSE 3.77 0.81 0.64 283 None
DeepFace dlib cosine base FALSE 2.52 0.66 0.23 117 168
DeepFace dlib cosine raw FALSE 2.50 0.62 0.23 117 168
DeepFace dlib cosine Facenet FALSE 2.51 0.46 0.23 117 168
DeepFace dlib cosine Facenet2018 FALSE 2.51 0.48 0.23 117 168
DeepFace dlib cosine VGGFace FALSE 2.53 0.49 0.23 117 168
DeepFace dlib cosine VGGFace2 FALSE 2.56 0.49 0.23 117 168
DeepFace dlib cosine ArcFace FALSE 2.52 0.48 0.23 117 168
DeepFace dlib euclidean base FALSE 2.52 104.93 64.00 117 168
DeepFace dlib euclidean raw FALSE 2.49 15051.80 64.00 117 168
DeepFace dlib euclidean Facenet FALSE 2.51 322.69 64.00 117 168
DeepFace dlib euclidean Facenet2018 FALSE 2.52 166.70 64.00 117 168
DeepFace dlib euclidean VGGFace FALSE 2.50 14037.67 64.00 117 168
DeepFace dlib euclidean VGGFace2 FALSE 2.51 14055.40 64.00 117 168
DeepFace dlib euclidean ArcFace FALSE 2.51 166.25 64.00 117 168
DeepFace dlib euclidean_l2 base FALSE 2.93 1.15 0.64 117 168
DeepFace dlib euclidean_l2 raw FALSE 2.49 1.11 0.64 117 168
DeepFace dlib euclidean_l2 Facenet FALSE 2.54 0.95 0.64 117 168
DeepFace dlib euclidean_l2 Facenet2018 FALSE 2.50 0.98 0.64 117 168
DeepFace dlib euclidean_l2 VGGFace FALSE 2.53 0.99 0.64 117 168
DeepFace dlib euclidean_l2 VGGFace2 FALSE 2.52 0.99 0.64 117 168
DeepFace dlib euclidean_l2 ArcFace FALSE 2.51 0.98 0.64 117 168
DeepFace mtcnn cosine base FALSE 3.35 0.58 0.23 125 188
DeepFace mtcnn cosine raw FALSE 3.34 0.61 0.23 125 188
DeepFace mtcnn cosine Facenet FALSE 3.36 0.43 0.23 125 188
DeepFace mtcnn cosine Facenet2018 FALSE 3.34 0.42 0.23 125 188
DeepFace mtcnn cosine VGGFace FALSE 3.38 0.39 0.23 125 188
DeepFace mtcnn cosine VGGFace2 FALSE 3.35 0.40 0.23 125 188
DeepFace mtcnn cosine ArcFace FALSE 3.35 0.42 0.23 125 188
DeepFace mtcnn euclidean base FALSE 3.37 87.76 64.00 125 188
DeepFace mtcnn euclidean raw FALSE 3.38 13251.93 64.00 125 188
DeepFace mtcnn euclidean Facenet FALSE 3.39 209.19 64.00 125 188
DeepFace mtcnn euclidean Facenet2018 FALSE 3.36 164.97 64.00 125 188
DeepFace mtcnn euclidean VGGFace FALSE 3.34 14031.78 64.00 125 188
DeepFace mtcnn euclidean VGGFace2 FALSE 3.34 14001.15 64.00 125 188
DeepFace mtcnn euclidean ArcFace FALSE 3.37 164.50 64.00 125 188
DeepFace mtcnn euclidean_l2 base FALSE 3.33 1.08 0.64 125 188
DeepFace mtcnn euclidean_l2 raw FALSE 3.32 1.11 0.64 125 188
DeepFace mtcnn euclidean_l2 Facenet FALSE 3.34 0.93 0.64 125 188
DeepFace mtcnn euclidean_l2 Facenet2018 FALSE 3.43 0.91 0.64 125 188
DeepFace mtcnn euclidean_l2 VGGFace FALSE 3.34 0.88 0.64 125 188
DeepFace mtcnn euclidean_l2 VGGFace2 FALSE 3.34 0.89 0.64 125 188
DeepFace mtcnn euclidean_l2 ArcFace FALSE 3.32 0.91 0.64 125 188
DeepFace retinaface cosine base FALSE 4.37 0.54 0.23 133 189
DeepFace retinaface cosine raw FALSE 4.39 0.59 0.23 133 189
DeepFace retinaface cosine Facenet FALSE 4.46 0.44 0.23 133 189
DeepFace retinaface cosine Facenet2018 FALSE 4.36 0.42 0.23 133 189
DeepFace retinaface cosine VGGFace FALSE 4.40 0.40 0.23 133 189
DeepFace retinaface cosine VGGFace2 FALSE 4.46 0.40 0.23 133 189
DeepFace retinaface cosine ArcFace FALSE 4.44 0.42 0.23 133 189
DeepFace retinaface euclidean base FALSE 4.36 86.28 64.00 133 189
DeepFace retinaface euclidean raw FALSE 4.58 13538.57 64.00 133 189
DeepFace retinaface euclidean Facenet FALSE 4.39 217.06 64.00 133 189
DeepFace retinaface euclidean Facenet2018 FALSE 4.43 167.61 64.00 133 189
DeepFace retinaface euclidean VGGFace FALSE 4.38 14340.33 64.00 133 189
DeepFace retinaface euclidean VGGFace2 FALSE 4.42 14295.27 64.00 133 189
DeepFace retinaface euclidean ArcFace FALSE 4.34 167.13 64.00 133 189
DeepFace retinaface euclidean_l2 base FALSE 4.46 1.04 0.64 133 189
DeepFace retinaface euclidean_l2 raw FALSE 4.51 1.08 0.64 133 189
DeepFace retinaface euclidean_l2 Facenet FALSE 4.44 0.94 0.64 133 189
DeepFace retinaface euclidean_l2 Facenet2018 FALSE 4.50 0.91 0.64 133 189
DeepFace retinaface euclidean_l2 VGGFace FALSE 4.39 0.89 0.64 133 189
DeepFace retinaface euclidean_l2 VGGFace2 FALSE 4.44 0.90 0.64 133 189
DeepFace retinaface euclidean_l2 ArcFace FALSE 4.44 0.91 0.64 133 189
DeepFace mediapipe cosine base FALSE 2.42 0.71 0.23 117 187
DeepFace mediapipe cosine raw FALSE 2.41 0.63 0.23 117 187
DeepFace mediapipe cosine Facenet FALSE 2.39 0.51 0.23 117 187
DeepFace mediapipe cosine Facenet2018 FALSE 2.39 0.50 0.23 117 187
DeepFace mediapipe cosine VGGFace FALSE 2.41 0.53 0.23 117 187
DeepFace mediapipe cosine VGGFace2 FALSE 2.41 0.54 0.23 117 187
DeepFace mediapipe cosine ArcFace FALSE 2.41 0.51 0.23 117 187
DeepFace mediapipe euclidean base FALSE 2.40 103.53 64.00 117 187
DeepFace mediapipe euclidean raw FALSE 2.41 13834.32 64.00 117 187
DeepFace mediapipe euclidean Facenet FALSE 2.39 314.53 64.00 117 187
DeepFace mediapipe euclidean Facenet2018 FALSE 2.38 165.73 64.00 117 187
DeepFace mediapipe euclidean VGGFace FALSE 2.43 14093.39 64.00 117 187
DeepFace mediapipe euclidean VGGFace2 FALSE 2.38 14058.29 64.00 117 187
DeepFace mediapipe euclidean ArcFace FALSE 2.38 165.27 64.00 117 187
DeepFace mediapipe euclidean_l2 base FALSE 2.38 1.19 0.64 117 187
DeepFace mediapipe euclidean_l2 raw FALSE 2.37 1.12 0.64 117 187
DeepFace mediapipe euclidean_l2 Facenet FALSE 2.41 1.01 0.64 117 187
DeepFace mediapipe euclidean_l2 Facenet2018 FALSE 2.39 1.00 0.64 117 187
DeepFace mediapipe euclidean_l2 VGGFace FALSE 2.39 1.03 0.64 117 187
DeepFace mediapipe euclidean_l2 VGGFace2 FALSE 2.39 1.04 0.64 117 187
DeepFace mediapipe euclidean_l2 ArcFace FALSE 2.41 1.01 0.64 117 187
DeepFace yolov8 cosine base FALSE 2.59 0.58 0.23 131 187
DeepFace yolov8 cosine raw FALSE 2.55 0.59 0.23 131 187
DeepFace yolov8 cosine Facenet FALSE 2.51 0.43 0.23 131 187
DeepFace yolov8 cosine Facenet2018 FALSE 2.54 0.42 0.23 131 187
DeepFace yolov8 cosine VGGFace FALSE 2.53 0.40 0.23 131 187
DeepFace yolov8 cosine VGGFace2 FALSE 2.52 0.41 0.23 131 187
DeepFace yolov8 cosine ArcFace FALSE 2.52 0.42 0.23 131 187
DeepFace yolov8 euclidean base FALSE 2.56 86.73 64.00 131 187
DeepFace yolov8 euclidean raw FALSE 2.57 13001.89 64.00 131 187
DeepFace yolov8 euclidean Facenet FALSE 2.56 202.40 64.00 131 187
DeepFace yolov8 euclidean Facenet2018 FALSE 2.54 157.51 64.00 131 187
DeepFace yolov8 euclidean VGGFace FALSE 2.56 13416.80 64.00 131 187
DeepFace yolov8 euclidean VGGFace2 FALSE 2.57 13384.21 64.00 131 187
DeepFace yolov8 euclidean ArcFace FALSE 2.62 157.06 64.00 131 187
DeepFace yolov8 euclidean_l2 base FALSE 2.55 1.08 0.64 131 187
DeepFace yolov8 euclidean_l2 raw FALSE 2.56 1.08 0.64 131 187
DeepFace yolov8 euclidean_l2 Facenet FALSE 2.59 0.93 0.64 131 187
DeepFace yolov8 euclidean_l2 Facenet2018 FALSE 2.57 0.92 0.64 131 187
DeepFace yolov8 euclidean_l2 VGGFace FALSE 2.54 0.90 0.64 131 187
DeepFace yolov8 euclidean_l2 VGGFace2 FALSE 2.56 0.90 0.64 131 187
DeepFace yolov8 euclidean_l2 ArcFace FALSE 2.56 0.92 0.64 131 187
DeepFace yunet cosine base FALSE 2.65 0.63 0.23 125 183
DeepFace yunet cosine raw FALSE 2.40 0.63 0.23 125 183
DeepFace yunet cosine Facenet FALSE 2.43 0.43 0.23 125 183
DeepFace yunet cosine Facenet2018 FALSE 2.41 0.42 0.23 125 183
DeepFace yunet cosine VGGFace FALSE 2.44 0.41 0.23 125 183
DeepFace yunet cosine VGGFace2 FALSE 2.41 0.41 0.23 125 183
DeepFace yunet cosine ArcFace FALSE 2.41 0.42 0.23 125 183
DeepFace yunet euclidean base FALSE 2.42 89.11 64.00 125 183
DeepFace yunet euclidean raw FALSE 2.42 13537.54 64.00 125 183
DeepFace yunet euclidean Facenet FALSE 2.41 213.70 64.00 125 183
DeepFace yunet euclidean Facenet2018 FALSE 2.42 160.24 64.00 125 183
DeepFace yunet euclidean VGGFace FALSE 2.40 13805.28 64.00 125 183
DeepFace yunet euclidean VGGFace2 FALSE 2.42 13773.66 64.00 125 183
DeepFace yunet euclidean ArcFace FALSE 2.41 159.78 64.00 125 183
DeepFace yunet euclidean_l2 base FALSE 2.43 1.12 0.64 125 183
DeepFace yunet euclidean_l2 raw FALSE 2.42 1.12 0.64 125 183
DeepFace yunet euclidean_l2 Facenet FALSE 2.42 0.93 0.64 125 183
DeepFace yunet euclidean_l2 Facenet2018 FALSE 2.43 0.92 0.64 125 183
DeepFace yunet euclidean_l2 VGGFace FALSE 2.42 0.90 0.64 125 183
DeepFace yunet euclidean_l2 VGGFace2 FALSE 2.41 0.91 0.64 125 183
DeepFace yunet euclidean_l2 ArcFace FALSE 2.41 0.92 0.64 125 183
DeepFace fastmtcnn cosine base FALSE 2.50 0.57 0.23 125 189
DeepFace fastmtcnn cosine raw FALSE 2.48 0.61 0.23 125 189
DeepFace fastmtcnn cosine Facenet FALSE 2.48 0.44 0.23 125 189
DeepFace fastmtcnn cosine Facenet2018 FALSE 2.49 0.42 0.23 125 189
DeepFace fastmtcnn cosine VGGFace FALSE 2.51 0.40 0.23 125 189
DeepFace fastmtcnn cosine VGGFace2 FALSE 2.51 0.41 0.23 125 189
DeepFace fastmtcnn cosine ArcFace FALSE 2.49 0.42 0.23 125 189
DeepFace fastmtcnn euclidean base FALSE 2.50 91.28 64.00 125 189
DeepFace fastmtcnn euclidean raw FALSE 2.50 14092.70 64.00 125 189
DeepFace fastmtcnn euclidean Facenet FALSE 2.50 237.30 64.00 125 189
DeepFace fastmtcnn euclidean Facenet2018 FALSE 2.50 177.63 64.00 125 189
DeepFace fastmtcnn euclidean VGGFace FALSE 2.51 15660.06 64.00 125 189
DeepFace fastmtcnn euclidean VGGFace2 FALSE 2.48 15612.96 64.00 125 189
DeepFace fastmtcnn euclidean ArcFace FALSE 2.47 177.11 64.00 125 189
DeepFace fastmtcnn euclidean_l2 base FALSE 2.50 1.07 0.64 125 189
DeepFace fastmtcnn euclidean_l2 raw FALSE 2.51 1.10 0.64 125 189
DeepFace fastmtcnn euclidean_l2 Facenet FALSE 2.49 0.94 0.64 125 189
DeepFace fastmtcnn euclidean_l2 Facenet2018 FALSE 2.46 0.91 0.64 125 189
DeepFace fastmtcnn euclidean_l2 VGGFace FALSE 2.48 0.90 0.64 125 189
DeepFace fastmtcnn euclidean_l2 VGGFace2 FALSE 2.50 0.90 0.64 125 189
DeepFace fastmtcnn euclidean_l2 ArcFace FALSE 2.48 0.91 0.64 125 189
DeepID opencv cosine base FALSE 0.26 0.15 0.02 102 86
DeepID opencv cosine raw FALSE 0.18 0.17 0.02 102 86
DeepID opencv cosine Facenet FALSE 0.18 0.32 0.02 102 86
DeepID opencv cosine Facenet2018 FALSE 0.18 0.31 0.02 102 86
DeepID opencv cosine VGGFace FALSE 0.18 0.32 0.02 102 86
DeepID opencv cosine VGGFace2 FALSE 0.18 0.33 0.02 102 86
DeepID opencv cosine ArcFace FALSE 0.18 0.31 0.02 102 86
DeepID opencv euclidean base FALSE 0.18 143.51 45.00 102 86
DeepID opencv euclidean raw FALSE 0.18 36762.21 45.00 102 86
DeepID opencv euclidean Facenet FALSE 0.18 465.24 45.00 102 86
DeepID opencv euclidean Facenet2018 FALSE 0.18 236.06 45.00 102 86
DeepID opencv euclidean VGGFace FALSE 0.18 30868.70 45.00 102 86
DeepID opencv euclidean VGGFace2 FALSE 0.18 31036.27 45.00 102 86
DeepID opencv euclidean ArcFace FALSE 0.18 235.12 45.00 102 86
DeepID opencv euclidean_l2 base FALSE 0.18 0.55 0.17 102 86
DeepID opencv euclidean_l2 raw FALSE 0.18 0.59 0.17 102 86
DeepID opencv euclidean_l2 Facenet FALSE 0.18 0.80 0.17 102 86
DeepID opencv euclidean_l2 Facenet2018 FALSE 0.18 0.79 0.17 102 86
DeepID opencv euclidean_l2 VGGFace FALSE 0.20 0.80 0.17 102 86
DeepID opencv euclidean_l2 VGGFace2 FALSE 0.19 0.81 0.17 102 86
DeepID opencv euclidean_l2 ArcFace FALSE 0.19 0.79 0.17 102 86
DeepID ssd cosine base FALSE 0.19 0.12 0.02 127 60
DeepID ssd cosine raw FALSE 0.19 0.14 0.02 127 60
DeepID ssd cosine Facenet FALSE 0.20 0.21 0.02 127 60
DeepID ssd cosine Facenet2018 FALSE 0.19 0.19 0.02 127 60
DeepID ssd cosine VGGFace FALSE 0.19 0.21 0.02 127 60
DeepID ssd cosine VGGFace2 FALSE 0.19 0.21 0.02 127 60
DeepID ssd cosine ArcFace FALSE 0.19 0.19 0.02 127 60
DeepID ssd euclidean base FALSE 0.19 127.69 45.00 127 60
DeepID ssd euclidean raw FALSE 0.19 33045.35 45.00 127 60
DeepID ssd euclidean Facenet FALSE 0.19 437.12 45.00 127 60
DeepID ssd euclidean Facenet2018 FALSE 0.19 182.84 45.00 127 60
DeepID ssd euclidean VGGFace FALSE 0.19 24703.18 45.00 127 60
DeepID ssd euclidean VGGFace2 FALSE 0.19 25023.03 45.00 127 60
DeepID ssd euclidean ArcFace FALSE 0.19 182.10 45.00 127 60
DeepID ssd euclidean_l2 base FALSE 0.19 0.49 0.17 127 60
DeepID ssd euclidean_l2 raw FALSE 0.19 0.52 0.17 127 60
DeepID ssd euclidean_l2 Facenet FALSE 0.19 0.65 0.17 127 60
DeepID ssd euclidean_l2 Facenet2018 FALSE 0.19 0.61 0.17 127 60
DeepID ssd euclidean_l2 VGGFace FALSE 0.19 0.64 0.17 127 60
DeepID ssd euclidean_l2 VGGFace2 FALSE 0.19 0.65 0.17 127 60
DeepID ssd euclidean_l2 ArcFace FALSE 0.19 0.61 0.17 127 60
DeepID dlib cosine base FALSE 0.15 0.06 0.02 117 168
DeepID dlib cosine raw FALSE 0.15 0.08 0.02 117 168
DeepID dlib cosine Facenet FALSE 0.15 0.27 0.02 117 168
DeepID dlib cosine Facenet2018 FALSE 0.16 0.26 0.02 117 168
DeepID dlib cosine VGGFace FALSE 0.15 0.26 0.02 117 168
DeepID dlib cosine VGGFace2 FALSE 0.15 0.26 0.02 117 168
DeepID dlib cosine ArcFace FALSE 0.15 0.26 0.02 117 168
DeepID dlib euclidean base FALSE 0.15 86.62 45.00 117 168
DeepID dlib euclidean raw FALSE 0.15 22722.36 45.00 117 168
DeepID dlib euclidean Facenet FALSE 0.15 351.01 45.00 117 168
DeepID dlib euclidean Facenet2018 FALSE 0.15 198.52 45.00 117 168
DeepID dlib euclidean VGGFace FALSE 0.15 24871.51 45.00 117 168
DeepID dlib euclidean VGGFace2 FALSE 0.15 24922.47 45.00 117 168
DeepID dlib euclidean ArcFace FALSE 0.15 197.72 45.00 117 168
DeepID dlib euclidean_l2 base FALSE 0.15 0.35 0.17 117 168
DeepID dlib euclidean_l2 raw FALSE 0.15 0.39 0.17 117 168
DeepID dlib euclidean_l2 Facenet FALSE 0.15 0.73 0.17 117 168
DeepID dlib euclidean_l2 Facenet2018 FALSE 0.15 0.72 0.17 117 168
DeepID dlib euclidean_l2 VGGFace FALSE 0.16 0.72 0.17 117 168
DeepID dlib euclidean_l2 VGGFace2 FALSE 0.15 0.73 0.17 117 168
DeepID dlib euclidean_l2 ArcFace FALSE 0.15 0.72 0.17 117 168
DeepID mtcnn cosine base FALSE 0.97 0.10 0.02 125 188
DeepID mtcnn cosine raw FALSE 0.97 0.11 0.02 125 188
DeepID mtcnn cosine Facenet FALSE 0.98 0.18 0.02 125 188
DeepID mtcnn cosine Facenet2018 FALSE 0.98 0.17 0.02 125 188
DeepID mtcnn cosine VGGFace FALSE 0.97 0.20 0.02 125 188
DeepID mtcnn cosine VGGFace2 FALSE 0.97 0.20 0.02 125 188
DeepID mtcnn cosine ArcFace FALSE 0.96 0.17 0.02 125 188
DeepID mtcnn euclidean base FALSE 0.96 115.95 45.00 125 188
DeepID mtcnn euclidean raw FALSE 0.98 30083.23 45.00 125 188
DeepID mtcnn euclidean Facenet FALSE 0.97 383.91 45.00 125 188
DeepID mtcnn euclidean Facenet2018 FALSE 0.97 183.38 45.00 125 188
DeepID mtcnn euclidean VGGFace FALSE 0.97 24084.38 45.00 125 188
DeepID mtcnn euclidean VGGFace2 FALSE 0.97 24330.08 45.00 125 188
DeepID mtcnn euclidean ArcFace FALSE 0.97 182.65 45.00 125 188
DeepID mtcnn euclidean_l2 base FALSE 0.97 0.45 0.17 125 188
DeepID mtcnn euclidean_l2 raw FALSE 0.96 0.48 0.17 125 188
DeepID mtcnn euclidean_l2 Facenet FALSE 0.97 0.60 0.17 125 188
DeepID mtcnn euclidean_l2 Facenet2018 FALSE 0.97 0.59 0.17 125 188
DeepID mtcnn euclidean_l2 VGGFace FALSE 0.97 0.63 0.17 125 188
DeepID mtcnn euclidean_l2 VGGFace2 FALSE 0.97 0.64 0.17 125 188
DeepID mtcnn euclidean_l2 ArcFace FALSE 0.97 0.59 0.17 125 188
DeepID retinaface cosine base FALSE 1.91 0.11 0.02 133 189
DeepID retinaface cosine raw FALSE 1.86 0.12 0.02 133 189
DeepID retinaface cosine Facenet FALSE 1.84 0.18 0.02 133 189
DeepID retinaface cosine Facenet2018 FALSE 1.90 0.17 0.02 133 189
DeepID retinaface cosine VGGFace FALSE 1.87 0.20 0.02 133 189
DeepID retinaface cosine VGGFace2 FALSE 1.84 0.21 0.02 133 189
DeepID retinaface cosine ArcFace FALSE 1.92 0.17 0.02 133 189
DeepID retinaface euclidean base FALSE 1.95 122.68 45.00 133 189
DeepID retinaface euclidean raw FALSE 1.90 31656.72 45.00 133 189
DeepID retinaface euclidean Facenet FALSE 1.93 421.69 45.00 133 189
DeepID retinaface euclidean Facenet2018 FALSE 1.94 184.43 45.00 133 189
DeepID retinaface euclidean VGGFace FALSE 1.97 25019.99 45.00 133 189
DeepID retinaface euclidean VGGFace2 FALSE 1.96 25316.16 45.00 133 189
DeepID retinaface euclidean ArcFace FALSE 1.93 183.69 45.00 133 189
DeepID retinaface euclidean_l2 base FALSE 1.87 0.47 0.17 133 189
DeepID retinaface euclidean_l2 raw FALSE 1.94 0.49 0.17 133 189
DeepID retinaface euclidean_l2 Facenet FALSE 1.95 0.61 0.17 133 189
DeepID retinaface euclidean_l2 Facenet2018 FALSE 1.96 0.59 0.17 133 189
DeepID retinaface euclidean_l2 VGGFace FALSE 2.00 0.64 0.17 133 189
DeepID retinaface euclidean_l2 VGGFace2 FALSE 1.93 0.64 0.17 133 189
DeepID retinaface euclidean_l2 ArcFace FALSE 1.89 0.59 0.17 133 189
DeepID mediapipe cosine base FALSE 0.03 0.08 0.02 117 187
DeepID mediapipe cosine raw FALSE 0.02 0.09 0.02 117 187
DeepID mediapipe cosine Facenet FALSE 0.03 0.17 0.02 117 187
DeepID mediapipe cosine Facenet2018 FALSE 0.03 0.19 0.02 117 187
DeepID mediapipe cosine VGGFace FALSE 0.03 0.21 0.02 117 187
DeepID mediapipe cosine VGGFace2 FALSE 0.03 0.21 0.02 117 187
DeepID mediapipe cosine ArcFace FALSE 0.03 0.19 0.02 117 187
DeepID mediapipe euclidean base FALSE 0.02 97.11 45.00 117 187
DeepID mediapipe euclidean raw FALSE 0.03 25049.06 45.00 117 187
DeepID mediapipe euclidean Facenet FALSE 0.02 277.37 45.00 117 187
DeepID mediapipe euclidean Facenet2018 FALSE 0.02 165.40 45.00 117 187
DeepID mediapipe euclidean VGGFace FALSE 0.03 21473.11 45.00 117 187
DeepID mediapipe euclidean VGGFace2 FALSE 0.03 21625.94 45.00 117 187
DeepID mediapipe euclidean ArcFace FALSE 0.03 164.74 45.00 117 187
DeepID mediapipe euclidean_l2 base FALSE 0.02 0.39 0.17 117 187
DeepID mediapipe euclidean_l2 raw FALSE 0.02 0.43 0.17 117 187
DeepID mediapipe euclidean_l2 Facenet FALSE 0.02 0.58 0.17 117 187
DeepID mediapipe euclidean_l2 Facenet2018 FALSE 0.02 0.62 0.17 117 187
DeepID mediapipe euclidean_l2 VGGFace FALSE 0.02 0.64 0.17 117 187
DeepID mediapipe euclidean_l2 VGGFace2 FALSE 0.02 0.65 0.17 117 187
DeepID mediapipe euclidean_l2 ArcFace FALSE 0.02 0.62 0.17 117 187
DeepID yolov8 cosine base FALSE 0.15 0.10 0.02 131 187
DeepID yolov8 cosine raw FALSE 0.15 0.12 0.02 131 187
DeepID yolov8 cosine Facenet FALSE 0.15 0.17 0.02 131 187
DeepID yolov8 cosine Facenet2018 FALSE 0.15 0.18 0.02 131 187
DeepID yolov8 cosine VGGFace FALSE 0.15 0.21 0.02 131 187
DeepID yolov8 cosine VGGFace2 FALSE 0.15 0.22 0.02 131 187
DeepID yolov8 cosine ArcFace FALSE 0.15 0.18 0.02 131 187
DeepID yolov8 euclidean base FALSE 0.14 113.71 45.00 131 187
DeepID yolov8 euclidean raw FALSE 0.15 29508.40 45.00 131 187
DeepID yolov8 euclidean Facenet FALSE 0.14 357.25 45.00 131 187
DeepID yolov8 euclidean Facenet2018 FALSE 0.15 185.65 45.00 131 187
DeepID yolov8 euclidean VGGFace FALSE 0.14 24434.83 45.00 131 187
DeepID yolov8 euclidean VGGFace2 FALSE 0.15 24626.35 45.00 131 187
DeepID yolov8 euclidean ArcFace FALSE 0.15 184.90 45.00 131 187
DeepID yolov8 euclidean_l2 base FALSE 0.15 0.45 0.17 131 187
DeepID yolov8 euclidean_l2 raw FALSE 0.15 0.48 0.17 131 187
DeepID yolov8 euclidean_l2 Facenet FALSE 0.15 0.59 0.17 131 187
DeepID yolov8 euclidean_l2 Facenet2018 FALSE 0.15 0.61 0.17 131 187
DeepID yolov8 euclidean_l2 VGGFace FALSE 0.15 0.65 0.17 131 187
DeepID yolov8 euclidean_l2 VGGFace2 FALSE 0.15 0.66 0.17 131 187
DeepID yolov8 euclidean_l2 ArcFace FALSE 0.14 0.61 0.17 131 187
DeepID yunet cosine base FALSE 0.04 0.12 0.02 125 183
DeepID yunet cosine raw FALSE 0.04 0.13 0.02 125 183
DeepID yunet cosine Facenet FALSE 0.04 0.19 0.02 125 183
DeepID yunet cosine Facenet2018 FALSE 0.04 0.19 0.02 125 183
DeepID yunet cosine VGGFace FALSE 0.05 0.21 0.02 125 183
DeepID yunet cosine VGGFace2 FALSE 0.04 0.21 0.02 125 183
DeepID yunet cosine ArcFace FALSE 0.04 0.19 0.02 125 183
DeepID yunet euclidean base FALSE 0.04 124.69 45.00 125 183
DeepID yunet euclidean raw FALSE 0.04 32251.03 45.00 125 183
DeepID yunet euclidean Facenet FALSE 0.04 371.39 45.00 125 183
DeepID yunet euclidean Facenet2018 FALSE 0.04 192.78 45.00 125 183
DeepID yunet euclidean VGGFace FALSE 0.04 24881.28 45.00 125 183
DeepID yunet euclidean VGGFace2 FALSE 0.04 25033.82 45.00 125 183
DeepID yunet euclidean ArcFace FALSE 0.04 192.01 45.00 125 183
DeepID yunet euclidean_l2 base FALSE 0.04 0.48 0.17 125 183
DeepID yunet euclidean_l2 raw FALSE 0.04 0.51 0.17 125 183
DeepID yunet euclidean_l2 Facenet FALSE 0.04 0.62 0.17 125 183
DeepID yunet euclidean_l2 Facenet2018 FALSE 0.04 0.62 0.17 125 183
DeepID yunet euclidean_l2 VGGFace FALSE 0.04 0.65 0.17 125 183
DeepID yunet euclidean_l2 VGGFace2 FALSE 0.04 0.65 0.17 125 183
DeepID yunet euclidean_l2 ArcFace FALSE 0.04 0.62 0.17 125 183
DeepID fastmtcnn cosine base FALSE 0.08 0.10 0.02 125 189
DeepID fastmtcnn cosine raw FALSE 0.07 0.11 0.02 125 189
DeepID fastmtcnn cosine Facenet FALSE 0.08 0.18 0.02 125 189
DeepID fastmtcnn cosine Facenet2018 FALSE 0.07 0.19 0.02 125 189
DeepID fastmtcnn cosine VGGFace FALSE 0.08 0.22 0.02 125 189
DeepID fastmtcnn cosine VGGFace2 FALSE 0.08 0.23 0.02 125 189
DeepID fastmtcnn cosine ArcFace FALSE 0.08 0.19 0.02 125 189
DeepID fastmtcnn euclidean base FALSE 0.08 111.73 45.00 125 189
DeepID fastmtcnn euclidean raw FALSE 0.08 28833.21 45.00 125 189
DeepID fastmtcnn euclidean Facenet FALSE 0.08 373.91 45.00 125 189
DeepID fastmtcnn euclidean Facenet2018 FALSE 0.08 192.22 45.00 125 189
DeepID fastmtcnn euclidean VGGFace FALSE 0.08 25234.20 45.00 125 189
DeepID fastmtcnn euclidean VGGFace2 FALSE 0.08 25465.53 45.00 125 189
DeepID fastmtcnn euclidean ArcFace FALSE 0.07 191.45 45.00 125 189
DeepID fastmtcnn euclidean_l2 base FALSE 0.08 0.44 0.17 125 189
DeepID fastmtcnn euclidean_l2 raw FALSE 0.08 0.47 0.17 125 189
DeepID fastmtcnn euclidean_l2 Facenet FALSE 0.08 0.60 0.17 125 189
DeepID fastmtcnn euclidean_l2 Facenet2018 FALSE 0.08 0.62 0.17 125 189
DeepID fastmtcnn euclidean_l2 VGGFace FALSE 0.07 0.67 0.17 125 189
DeepID fastmtcnn euclidean_l2 VGGFace2 FALSE 0.08 0.67 0.17 125 189
DeepID fastmtcnn euclidean_l2 ArcFace FALSE 0.08 0.62 0.17 125 189
ArcFace opencv cosine base FALSE 1.50 0.71 0.68 102 86
ArcFace opencv cosine raw TRUE 0.44 0.18 0.68 102 86
ArcFace opencv cosine Facenet TRUE 0.44 0.46 0.68 102 86
ArcFace opencv cosine Facenet2018 FALSE 0.44 0.78 0.68 102 86
ArcFace opencv cosine VGGFace TRUE 0.44 0.14 0.68 102 86
ArcFace opencv cosine VGGFace2 TRUE 0.43 0.14 0.68 102 86
ArcFace opencv cosine ArcFace FALSE 0.44 0.78 0.68 102 86
ArcFace opencv euclidean base FALSE 0.44 4.20 4.15 102 86
ArcFace opencv euclidean raw FALSE 0.44 5923.49 4.15 102 86
ArcFace opencv euclidean Facenet FALSE 0.44 39.21 4.15 102 86
ArcFace opencv euclidean Facenet2018 FALSE 0.44 4.57 4.15 102 86
ArcFace opencv euclidean VGGFace FALSE 0.44 4951.87 4.15 102 86
ArcFace opencv euclidean VGGFace2 FALSE 0.44 4857.49 4.15 102 86
ArcFace opencv euclidean ArcFace FALSE 0.43 4.57 4.15 102 86
ArcFace opencv euclidean_l2 base FALSE 0.44 1.19 1.13 102 86
ArcFace opencv euclidean_l2 raw TRUE 0.44 0.61 1.13 102 86
ArcFace opencv euclidean_l2 Facenet TRUE 0.44 0.96 1.13 102 86
ArcFace opencv euclidean_l2 Facenet2018 FALSE 0.43 1.25 1.13 102 86
ArcFace opencv euclidean_l2 VGGFace TRUE 0.44 0.54 1.13 102 86
ArcFace opencv euclidean_l2 VGGFace2 TRUE 0.44 0.54 1.13 102 86
ArcFace opencv euclidean_l2 ArcFace FALSE 0.44 1.25 1.13 102 86
ArcFace ssd cosine base FALSE 0.58 0.75 0.68 283 None
ArcFace ssd cosine raw TRUE 0.58 0.16 0.68 127 60
ArcFace ssd cosine Facenet TRUE 0.58 0.26 0.68 283 None
ArcFace ssd cosine Facenet2018 FALSE 0.58 0.71 0.68 283 None
ArcFace ssd cosine VGGFace TRUE 0.58 0.06 0.68 127 60
ArcFace ssd cosine VGGFace2 TRUE 0.57 0.06 0.68 127 60
ArcFace ssd cosine ArcFace FALSE 0.58 0.71 0.68 283 None
ArcFace ssd euclidean base TRUE 0.57 4.02 4.15 127 60
ArcFace ssd euclidean raw FALSE 0.58 4538.88 4.15 127 60
ArcFace ssd euclidean Facenet FALSE 0.59 14.38 4.15 283 None
ArcFace ssd euclidean Facenet2018 TRUE 0.58 4.08 4.15 283 None
ArcFace ssd euclidean VGGFace FALSE 0.58 4060.08 4.15 127 60
ArcFace ssd euclidean VGGFace2 FALSE 0.58 4004.11 4.15 127 60
ArcFace ssd euclidean ArcFace FALSE 0.58 4.17 4.15 127 60
ArcFace ssd euclidean_l2 base FALSE 0.57 1.22 1.13 283 None
ArcFace ssd euclidean_l2 raw TRUE 0.57 0.56 1.13 127 60
ArcFace ssd euclidean_l2 Facenet TRUE 0.58 0.72 1.13 283 None
ArcFace ssd euclidean_l2 Facenet2018 FALSE 0.58 1.20 1.13 283 None
ArcFace ssd euclidean_l2 VGGFace TRUE 0.58 0.34 1.13 127 60
ArcFace ssd euclidean_l2 VGGFace2 TRUE 0.58 0.34 1.13 127 60
ArcFace ssd euclidean_l2 ArcFace FALSE 0.58 1.19 1.13 283 None
ArcFace dlib cosine base FALSE 0.40 0.83 0.68 117 168
ArcFace dlib cosine raw TRUE 0.41 0.13 0.68 117 168
ArcFace dlib cosine Facenet TRUE 0.40 0.16 0.68 117 168
ArcFace dlib cosine Facenet2018 FALSE 0.41 0.81 0.68 117 168
ArcFace dlib cosine VGGFace TRUE 0.41 0.14 0.68 117 168
ArcFace dlib cosine VGGFace2 TRUE 0.40 0.14 0.68 117 168
ArcFace dlib cosine ArcFace FALSE 0.41 0.81 0.68 117 168
ArcFace dlib euclidean base TRUE 0.40 3.98 4.15 117 168
ArcFace dlib euclidean raw FALSE 0.41 4801.24 4.15 117 168
ArcFace dlib euclidean Facenet FALSE 0.41 22.40 4.15 117 168
ArcFace dlib euclidean Facenet2018 TRUE 0.41 4.13 4.15 117 168
ArcFace dlib euclidean VGGFace FALSE 0.42 2872.75 4.15 117 168
ArcFace dlib euclidean VGGFace2 FALSE 0.41 2831.70 4.15 117 168
ArcFace dlib euclidean ArcFace TRUE 0.41 4.13 4.15 117 168
ArcFace dlib euclidean_l2 base FALSE 0.40 1.29 1.13 117 168
ArcFace dlib euclidean_l2 raw TRUE 0.41 0.51 1.13 117 168
ArcFace dlib euclidean_l2 Facenet TRUE 0.41 0.56 1.13 117 168
ArcFace dlib euclidean_l2 Facenet2018 FALSE 0.40 1.27 1.13 117 168
ArcFace dlib euclidean_l2 VGGFace TRUE 0.41 0.53 1.13 117 168
ArcFace dlib euclidean_l2 VGGFace2 TRUE 0.41 0.53 1.13 117 168
ArcFace dlib euclidean_l2 ArcFace FALSE 0.41 1.27 1.13 117 168
ArcFace mtcnn cosine base FALSE 1.23 0.75 0.68 125 188
ArcFace mtcnn cosine raw TRUE 1.23 0.14 0.68 125 188
ArcFace mtcnn cosine Facenet TRUE 1.23 0.27 0.68 125 188
ArcFace mtcnn cosine Facenet2018 FALSE 1.24 0.80 0.68 125 188
ArcFace mtcnn cosine VGGFace TRUE 1.24 0.06 0.68 125 188
ArcFace mtcnn cosine VGGFace2 TRUE 1.24 0.06 0.68 125 188
ArcFace mtcnn cosine ArcFace FALSE 1.22 0.80 0.68 125 188
ArcFace mtcnn euclidean base TRUE 1.23 4.00 4.15 125 188
ArcFace mtcnn euclidean raw FALSE 1.51 4335.82 4.15 125 188
ArcFace mtcnn euclidean Facenet FALSE 1.24 13.62 4.15 125 188
ArcFace mtcnn euclidean Facenet2018 FALSE 1.24 4.23 4.15 125 188
ArcFace mtcnn euclidean VGGFace FALSE 1.25 3124.71 4.15 125 188
ArcFace mtcnn euclidean VGGFace2 FALSE 1.24 3085.91 4.15 125 188
ArcFace mtcnn euclidean ArcFace FALSE 1.25 4.23 4.15 125 188
ArcFace mtcnn euclidean_l2 base FALSE 1.24 1.23 1.13 125 188
ArcFace mtcnn euclidean_l2 raw TRUE 1.24 0.54 1.13 125 188
ArcFace mtcnn euclidean_l2 Facenet TRUE 1.25 0.74 1.13 125 188
ArcFace mtcnn euclidean_l2 Facenet2018 FALSE 1.26 1.27 1.13 125 188
ArcFace mtcnn euclidean_l2 VGGFace TRUE 1.23 0.33 1.13 125 188
ArcFace mtcnn euclidean_l2 VGGFace2 TRUE 1.24 0.33 1.13 125 188
ArcFace mtcnn euclidean_l2 ArcFace FALSE 1.25 1.26 1.13 125 188
ArcFace retinaface cosine base FALSE 2.35 0.80 0.68 133 189
ArcFace retinaface cosine raw TRUE 2.20 0.15 0.68 133 189
ArcFace retinaface cosine Facenet TRUE 2.36 0.40 0.68 133 189
ArcFace retinaface cosine Facenet2018 FALSE 2.28 0.81 0.68 133 189
ArcFace retinaface cosine VGGFace TRUE 2.51 0.06 0.68 133 189
ArcFace retinaface cosine VGGFace2 TRUE 2.33 0.06 0.68 133 189
ArcFace retinaface cosine ArcFace FALSE 2.32 0.82 0.68 133 189
ArcFace retinaface euclidean base TRUE 2.37 4.05 4.15 133 189
ArcFace retinaface euclidean raw FALSE 2.21 4605.85 4.15 133 189
ArcFace retinaface euclidean Facenet FALSE 2.18 16.69 4.15 133 189
ArcFace retinaface euclidean Facenet2018 FALSE 2.20 4.23 4.15 133 189
ArcFace retinaface euclidean VGGFace FALSE 2.22 4086.77 4.15 133 189
ArcFace retinaface euclidean VGGFace2 FALSE 2.19 4040.31 4.15 133 189
ArcFace retinaface euclidean ArcFace FALSE 2.22 4.25 4.15 133 189
ArcFace retinaface euclidean_l2 base FALSE 2.24 1.26 1.13 133 189
ArcFace retinaface euclidean_l2 raw TRUE 2.27 0.55 1.13 133 189
ArcFace retinaface euclidean_l2 Facenet TRUE 2.22 0.90 1.13 133 189
ArcFace retinaface euclidean_l2 Facenet2018 FALSE 2.24 1.27 1.13 133 189
ArcFace retinaface euclidean_l2 VGGFace TRUE 2.20 0.35 1.13 133 189
ArcFace retinaface euclidean_l2 VGGFace2 TRUE 2.28 0.35 1.13 133 189
ArcFace retinaface euclidean_l2 ArcFace FALSE 2.23 1.28 1.13 133 189
ArcFace mediapipe cosine base FALSE 0.31 0.95 0.68 117 187
ArcFace mediapipe cosine raw TRUE 0.30 0.14 0.68 117 187
ArcFace mediapipe cosine Facenet TRUE 0.29 0.21 0.68 117 187
ArcFace mediapipe cosine Facenet2018 FALSE 0.30 0.92 0.68 117 187
ArcFace mediapipe cosine VGGFace TRUE 0.30 0.15 0.68 117 187
ArcFace mediapipe cosine VGGFace2 TRUE 0.29 0.15 0.68 117 187
ArcFace mediapipe cosine ArcFace FALSE 0.29 0.92 0.68 117 187
ArcFace mediapipe euclidean base FALSE 0.30 4.34 4.15 117 187
ArcFace mediapipe euclidean raw FALSE 0.30 4770.49 4.15 117 187
ArcFace mediapipe euclidean Facenet FALSE 0.29 22.78 4.15 117 187
ArcFace mediapipe euclidean Facenet2018 FALSE 0.30 4.47 4.15 117 187
ArcFace mediapipe euclidean VGGFace FALSE 0.30 3188.78 4.15 117 187
ArcFace mediapipe euclidean VGGFace2 FALSE 0.29 3153.60 4.15 117 187
ArcFace mediapipe euclidean ArcFace FALSE 0.29 4.47 4.15 117 187
ArcFace mediapipe euclidean_l2 base FALSE 0.30 1.38 1.13 117 187
ArcFace mediapipe euclidean_l2 raw TRUE 0.29 0.53 1.13 117 187
ArcFace mediapipe euclidean_l2 Facenet TRUE 0.29 0.66 1.13 117 187
ArcFace mediapipe euclidean_l2 Facenet2018 FALSE 0.30 1.35 1.13 117 187
ArcFace mediapipe euclidean_l2 VGGFace TRUE 0.30 0.56 1.13 117 187
ArcFace mediapipe euclidean_l2 VGGFace2 TRUE 0.29 0.56 1.13 117 187
ArcFace mediapipe euclidean_l2 ArcFace FALSE 0.30 1.35 1.13 117 187
ArcFace yolov8 cosine base FALSE 0.47 0.81 0.68 131 187
ArcFace yolov8 cosine raw TRUE 0.44 0.13 0.68 131 187
ArcFace yolov8 cosine Facenet TRUE 0.44 0.21 0.68 131 187
ArcFace yolov8 cosine Facenet2018 FALSE 0.43 0.81 0.68 131 187
ArcFace yolov8 cosine VGGFace TRUE 0.43 0.05 0.68 131 187
ArcFace yolov8 cosine VGGFace2 TRUE 0.43 0.05 0.68 131 187
ArcFace yolov8 cosine ArcFace FALSE 0.43 0.81 0.68 131 187
ArcFace yolov8 euclidean base FALSE 0.44 4.19 4.15 131 187
ArcFace yolov8 euclidean raw FALSE 0.42 4089.12 4.15 131 187
ArcFace yolov8 euclidean Facenet FALSE 0.44 11.83 4.15 131 187
ArcFace yolov8 euclidean Facenet2018 FALSE 0.43 4.40 4.15 131 187
ArcFace yolov8 euclidean VGGFace FALSE 0.43 2883.69 4.15 131 187
ArcFace yolov8 euclidean VGGFace2 FALSE 0.44 2854.45 4.15 131 187
ArcFace yolov8 euclidean ArcFace FALSE 0.44 4.39 4.15 131 187
ArcFace yolov8 euclidean_l2 base FALSE 0.45 1.27 1.13 131 187
ArcFace yolov8 euclidean_l2 raw TRUE 0.42 0.52 1.13 131 187
ArcFace yolov8 euclidean_l2 Facenet TRUE 0.44 0.65 1.13 131 187
ArcFace yolov8 euclidean_l2 Facenet2018 FALSE 0.44 1.27 1.13 131 187
ArcFace yolov8 euclidean_l2 VGGFace TRUE 0.45 0.32 1.13 131 187
ArcFace yolov8 euclidean_l2 VGGFace2 TRUE 0.44 0.33 1.13 131 187
ArcFace yolov8 euclidean_l2 ArcFace FALSE 0.44 1.27 1.13 131 187
ArcFace yunet cosine base FALSE 0.32 0.81 0.68 125 183
ArcFace yunet cosine raw TRUE 0.31 0.14 0.68 125 183
ArcFace yunet cosine Facenet TRUE 0.32 0.23 0.68 125 183
ArcFace yunet cosine Facenet2018 FALSE 0.32 0.82 0.68 125 183
ArcFace yunet cosine VGGFace TRUE 0.31 0.05 0.68 125 183
ArcFace yunet cosine VGGFace2 TRUE 0.32 0.05 0.68 125 183
ArcFace yunet cosine ArcFace FALSE 0.32 0.82 0.68 125 183
ArcFace yunet euclidean base TRUE 0.31 3.88 4.15 125 183
ArcFace yunet euclidean raw FALSE 0.32 4108.14 4.15 125 183
ArcFace yunet euclidean Facenet FALSE 0.32 12.04 4.15 125 183
ArcFace yunet euclidean Facenet2018 FALSE 0.32 4.17 4.15 125 183
ArcFace yunet euclidean VGGFace FALSE 0.33 3021.00 4.15 125 183
ArcFace yunet euclidean VGGFace2 FALSE 0.32 2974.83 4.15 125 183
ArcFace yunet euclidean ArcFace FALSE 0.31 4.16 4.15 125 183
ArcFace yunet euclidean_l2 base FALSE 0.31 1.28 1.13 125 183
ArcFace yunet euclidean_l2 raw TRUE 0.32 0.53 1.13 125 183
ArcFace yunet euclidean_l2 Facenet TRUE 0.32 0.67 1.13 125 183
ArcFace yunet euclidean_l2 Facenet2018 FALSE 0.32 1.28 1.13 125 183
ArcFace yunet euclidean_l2 VGGFace TRUE 0.32 0.33 1.13 125 183
ArcFace yunet euclidean_l2 VGGFace2 TRUE 0.31 0.33 1.13 125 183
ArcFace yunet euclidean_l2 ArcFace FALSE 0.31 1.28 1.13 125 183
ArcFace fastmtcnn cosine base FALSE 0.37 0.74 0.68 125 189
ArcFace fastmtcnn cosine raw TRUE 0.37 0.15 0.68 125 189
ArcFace fastmtcnn cosine Facenet TRUE 0.36 0.29 0.68 125 189
ArcFace fastmtcnn cosine Facenet2018 FALSE 0.38 0.77 0.68 125 189
ArcFace fastmtcnn cosine VGGFace TRUE 0.36 0.06 0.68 125 189
ArcFace fastmtcnn cosine VGGFace2 TRUE 0.36 0.06 0.68 125 189
ArcFace fastmtcnn cosine ArcFace FALSE 0.37 0.78 0.68 125 189
ArcFace fastmtcnn euclidean base TRUE 0.36 3.91 4.15 125 189
ArcFace fastmtcnn euclidean raw FALSE 0.36 4457.11 4.15 125 189
ArcFace fastmtcnn euclidean Facenet FALSE 0.38 15.41 4.15 125 189
ArcFace fastmtcnn euclidean Facenet2018 FALSE 0.36 4.20 4.15 125 189
ArcFace fastmtcnn euclidean VGGFace FALSE 0.37 3272.33 4.15 125 189
ArcFace fastmtcnn euclidean VGGFace2 FALSE 0.36 3230.50 4.15 125 189
ArcFace fastmtcnn euclidean ArcFace FALSE 0.37 4.20 4.15 125 189
ArcFace fastmtcnn euclidean_l2 base FALSE 0.38 1.21 1.13 125 189
ArcFace fastmtcnn euclidean_l2 raw TRUE 0.37 0.54 1.13 125 189
ArcFace fastmtcnn euclidean_l2 Facenet TRUE 0.37 0.76 1.13 125 189
ArcFace fastmtcnn euclidean_l2 Facenet2018 FALSE 0.37 1.24 1.13 125 189
ArcFace fastmtcnn euclidean_l2 VGGFace TRUE 0.36 0.33 1.13 125 189
ArcFace fastmtcnn euclidean_l2 VGGFace2 TRUE 0.36 0.33 1.13 125 189
ArcFace fastmtcnn euclidean_l2 ArcFace FALSE 0.37 1.25 1.13 125 189
Dlib opencv cosine base TRUE 1.07 0.06 0.07 102 86
Dlib opencv cosine raw TRUE 1.01 0.06 0.07 102 86
Dlib opencv cosine Facenet TRUE 1.02 0.04 0.07 102 86
Dlib opencv cosine Facenet2018 FALSE 1.02 0.07 0.07 102 86
Dlib opencv cosine VGGFace FALSE 1.00 0.08 0.07 102 86
Dlib opencv cosine VGGFace2 FALSE 1.00 0.09 0.07 102 86
Dlib opencv cosine ArcFace TRUE 1.02 0.07 0.07 102 86
Dlib opencv euclidean base TRUE 1.01 0.50 0.60 102 86
Dlib opencv euclidean raw TRUE 1.01 0.50 0.60 102 86
Dlib opencv euclidean Facenet TRUE 1.01 0.37 0.60 102 86
Dlib opencv euclidean Facenet2018 TRUE 1.01 0.51 0.60 102 86
Dlib opencv euclidean VGGFace TRUE 1.01 0.55 0.60 102 86
Dlib opencv euclidean VGGFace2 TRUE 1.00 0.58 0.60 102 86
Dlib opencv euclidean ArcFace TRUE 1.01 0.50 0.60 102 86
Dlib opencv euclidean_l2 base TRUE 1.01 0.34 0.40 102 86
Dlib opencv euclidean_l2 raw TRUE 1.01 0.34 0.40 102 86
Dlib opencv euclidean_l2 Facenet TRUE 1.01 0.28 0.40 102 86
Dlib opencv euclidean_l2 Facenet2018 TRUE 1.02 0.38 0.40 102 86
Dlib opencv euclidean_l2 VGGFace FALSE 1.01 0.41 0.40 102 86
Dlib opencv euclidean_l2 VGGFace2 FALSE 1.02 0.43 0.40 102 86
Dlib opencv euclidean_l2 ArcFace TRUE 1.00 0.37 0.40 102 86
Dlib ssd cosine base FALSE 1.44 0.10 0.07 127 60
Dlib ssd cosine raw FALSE 1.43 0.10 0.07 127 60
Dlib ssd cosine Facenet TRUE 1.43 0.02 0.07 127 60
Dlib ssd cosine Facenet2018 TRUE 1.44 0.06 0.07 283 None
Dlib ssd cosine VGGFace TRUE 1.43 0.07 0.07 283 None
Dlib ssd cosine VGGFace2 FALSE 1.43 0.07 0.07 283 None
Dlib ssd cosine ArcFace TRUE 1.44 0.06 0.07 283 None
Dlib ssd euclidean base FALSE 1.43 0.64 0.60 127 60
Dlib ssd euclidean raw FALSE 1.43 0.64 0.60 127 60
Dlib ssd euclidean Facenet TRUE 1.43 0.24 0.60 127 60
Dlib ssd euclidean Facenet2018 TRUE 1.43 0.47 0.60 283 None
Dlib ssd euclidean VGGFace TRUE 1.44 0.51 0.60 283 None
Dlib ssd euclidean VGGFace2 TRUE 1.43 0.53 0.60 283 None
Dlib ssd euclidean ArcFace TRUE 1.42 0.47 0.60 283 None
Dlib ssd euclidean_l2 base FALSE 1.43 0.45 0.40 127 60
Dlib ssd euclidean_l2 raw FALSE 1.42 0.45 0.40 127 60
Dlib ssd euclidean_l2 Facenet TRUE 1.42 0.19 0.40 127 60
Dlib ssd euclidean_l2 Facenet2018 TRUE 1.42 0.34 0.40 283 None
Dlib ssd euclidean_l2 VGGFace TRUE 1.42 0.37 0.40 283 None
Dlib ssd euclidean_l2 VGGFace2 TRUE 1.43 0.39 0.40 283 None
Dlib ssd euclidean_l2 ArcFace TRUE 1.43 0.34 0.40 283 None
Dlib dlib cosine base FALSE 0.97 0.08 0.07 117 168
Dlib dlib cosine raw FALSE 0.98 0.08 0.07 117 168
Dlib dlib cosine Facenet TRUE 0.98 0.02 0.07 117 168
Dlib dlib cosine Facenet2018 TRUE 0.97 0.06 0.07 117 168
Dlib dlib cosine VGGFace TRUE 0.97 0.07 0.07 117 168
Dlib dlib cosine VGGFace2 FALSE 0.97 0.08 0.07 117 168
Dlib dlib cosine ArcFace TRUE 0.98 0.06 0.07 117 168
Dlib dlib euclidean base TRUE 0.97 0.57 0.60 117 168
Dlib dlib euclidean raw TRUE 0.97 0.57 0.60 117 168
Dlib dlib euclidean Facenet TRUE 0.98 0.28 0.60 117 168
Dlib dlib euclidean Facenet2018 TRUE 0.98 0.50 0.60 117 168
Dlib dlib euclidean VGGFace TRUE 0.97 0.49 0.60 117 168
Dlib dlib euclidean VGGFace2 TRUE 0.98 0.53 0.60 117 168
Dlib dlib euclidean ArcFace TRUE 0.97 0.50 0.60 117 168
Dlib dlib euclidean_l2 base TRUE 0.98 0.39 0.40 117 168
Dlib dlib euclidean_l2 raw TRUE 0.98 0.39 0.40 117 168
Dlib dlib euclidean_l2 Facenet TRUE 0.97 0.22 0.40 117 168
Dlib dlib euclidean_l2 Facenet2018 TRUE 0.98 0.35 0.40 117 168
Dlib dlib euclidean_l2 VGGFace TRUE 0.98 0.37 0.40 117 168
Dlib dlib euclidean_l2 VGGFace2 TRUE 0.98 0.39 0.40 117 168
Dlib dlib euclidean_l2 ArcFace TRUE 0.97 0.35 0.40 117 168
Dlib mtcnn cosine base FALSE 1.81 0.13 0.07 125 188
Dlib mtcnn cosine raw FALSE 1.80 0.13 0.07 125 188
Dlib mtcnn cosine Facenet TRUE 1.81 0.01 0.07 125 188
Dlib mtcnn cosine Facenet2018 FALSE 1.81 0.08 0.07 125 188
Dlib mtcnn cosine VGGFace FALSE 1.80 0.09 0.07 125 188
Dlib mtcnn cosine VGGFace2 FALSE 1.80 0.09 0.07 125 188
Dlib mtcnn cosine ArcFace FALSE 1.80 0.08 0.07 125 188
Dlib mtcnn euclidean base FALSE 1.80 0.71 0.60 125 188
Dlib mtcnn euclidean raw FALSE 1.81 0.71 0.60 125 188
Dlib mtcnn euclidean Facenet TRUE 1.80 0.21 0.60 125 188
Dlib mtcnn euclidean Facenet2018 TRUE 1.79 0.52 0.60 125 188
Dlib mtcnn euclidean VGGFace FALSE 1.80 0.60 0.60 125 188
Dlib mtcnn euclidean VGGFace2 FALSE 1.80 0.60 0.60 125 188
Dlib mtcnn euclidean ArcFace TRUE 1.81 0.52 0.60 125 188
Dlib mtcnn euclidean_l2 base FALSE 1.81 0.50 0.40 125 188
Dlib mtcnn euclidean_l2 raw FALSE 1.80 0.50 0.40 125 188
Dlib mtcnn euclidean_l2 Facenet TRUE 1.80 0.16 0.40 125 188
Dlib mtcnn euclidean_l2 Facenet2018 TRUE 1.80 0.40 0.40 125 188
Dlib mtcnn euclidean_l2 VGGFace FALSE 1.82 0.44 0.40 125 188
Dlib mtcnn euclidean_l2 VGGFace2 FALSE 1.80 0.43 0.40 125 188
Dlib mtcnn euclidean_l2 ArcFace TRUE 1.81 0.39 0.40 125 188
Dlib retinaface cosine base FALSE 3.00 0.09 0.07 133 189
Dlib retinaface cosine raw FALSE 2.99 0.09 0.07 133 189
Dlib retinaface cosine Facenet TRUE 2.87 0.01 0.07 133 189
Dlib retinaface cosine Facenet2018 TRUE 2.88 0.07 0.07 133 189
Dlib retinaface cosine VGGFace FALSE 2.89 0.09 0.07 133 189
Dlib retinaface cosine VGGFace2 FALSE 2.82 0.09 0.07 133 189
Dlib retinaface cosine ArcFace TRUE 3.02 0.07 0.07 133 189
Dlib retinaface euclidean base FALSE 2.92 0.61 0.60 133 189
Dlib retinaface euclidean raw FALSE 2.84 0.61 0.60 133 189
Dlib retinaface euclidean Facenet TRUE 2.98 0.22 0.60 133 189
Dlib retinaface euclidean Facenet2018 TRUE 3.07 0.48 0.60 133 189
Dlib retinaface euclidean VGGFace TRUE 2.82 0.57 0.60 133 189
Dlib retinaface euclidean VGGFace2 TRUE 2.80 0.58 0.60 133 189
Dlib retinaface euclidean ArcFace TRUE 2.86 0.48 0.60 133 189
Dlib retinaface euclidean_l2 base FALSE 2.91 0.43 0.40 133 189
Dlib retinaface euclidean_l2 raw FALSE 2.90 0.43 0.40 133 189
Dlib retinaface euclidean_l2 Facenet TRUE 2.84 0.17 0.40 133 189
Dlib retinaface euclidean_l2 Facenet2018 TRUE 2.90 0.36 0.40 133 189
Dlib retinaface euclidean_l2 VGGFace FALSE 2.86 0.43 0.40 133 189
Dlib retinaface euclidean_l2 VGGFace2 FALSE 2.89 0.43 0.40 133 189
Dlib retinaface euclidean_l2 ArcFace TRUE 2.88 0.36 0.40 133 189
Dlib mediapipe cosine base FALSE 0.85 0.09 0.07 117 187
Dlib mediapipe cosine raw FALSE 0.85 0.09 0.07 117 187
Dlib mediapipe cosine Facenet TRUE 0.85 0.02 0.07 117 187
Dlib mediapipe cosine Facenet2018 FALSE 0.85 0.08 0.07 117 187
Dlib mediapipe cosine VGGFace FALSE 0.85 0.08 0.07 117 187
Dlib mediapipe cosine VGGFace2 FALSE 0.85 0.08 0.07 117 187
Dlib mediapipe cosine ArcFace FALSE 0.85 0.08 0.07 117 187
Dlib mediapipe euclidean base FALSE 0.85 0.61 0.60 117 187
Dlib mediapipe euclidean raw FALSE 0.85 0.61 0.60 117 187
Dlib mediapipe euclidean Facenet TRUE 0.85 0.24 0.60 117 187
Dlib mediapipe euclidean Facenet2018 TRUE 0.85 0.53 0.60 117 187
Dlib mediapipe euclidean VGGFace TRUE 0.85 0.54 0.60 117 187
Dlib mediapipe euclidean VGGFace2 TRUE 0.85 0.56 0.60 117 187
Dlib mediapipe euclidean ArcFace TRUE 0.85 0.53 0.60 117 187
Dlib mediapipe euclidean_l2 base FALSE 0.85 0.43 0.40 117 187
Dlib mediapipe euclidean_l2 raw FALSE 0.85 0.43 0.40 117 187
Dlib mediapipe euclidean_l2 Facenet TRUE 0.85 0.19 0.40 117 187
Dlib mediapipe euclidean_l2 Facenet2018 TRUE 0.85 0.40 0.40 117 187
Dlib mediapipe euclidean_l2 VGGFace FALSE 0.85 0.40 0.40 117 187
Dlib mediapipe euclidean_l2 VGGFace2 FALSE 0.85 0.41 0.40 117 187
Dlib mediapipe euclidean_l2 ArcFace FALSE 0.85 0.40 0.40 117 187
Dlib yolov8 cosine base FALSE 1.02 0.12 0.07 131 187
Dlib yolov8 cosine raw FALSE 0.98 0.12 0.07 131 187
Dlib yolov8 cosine Facenet TRUE 0.98 0.02 0.07 131 187
Dlib yolov8 cosine Facenet2018 FALSE 0.98 0.08 0.07 131 187
Dlib yolov8 cosine VGGFace FALSE 0.99 0.08 0.07 131 187
Dlib yolov8 cosine VGGFace2 FALSE 0.98 0.09 0.07 131 187
Dlib yolov8 cosine ArcFace FALSE 1.01 0.08 0.07 131 187
Dlib yolov8 euclidean base FALSE 0.99 0.69 0.60 131 187
Dlib yolov8 euclidean raw FALSE 0.99 0.69 0.60 131 187
Dlib yolov8 euclidean Facenet TRUE 0.98 0.27 0.60 131 187
Dlib yolov8 euclidean Facenet2018 TRUE 1.00 0.53 0.60 131 187
Dlib yolov8 euclidean VGGFace TRUE 0.99 0.56 0.60 131 187
Dlib yolov8 euclidean VGGFace2 TRUE 0.99 0.57 0.60 131 187
Dlib yolov8 euclidean ArcFace TRUE 0.98 0.52 0.60 131 187
Dlib yolov8 euclidean_l2 base FALSE 0.99 0.48 0.40 131 187
Dlib yolov8 euclidean_l2 raw FALSE 0.99 0.48 0.40 131 187
Dlib yolov8 euclidean_l2 Facenet TRUE 0.99 0.21 0.40 131 187
Dlib yolov8 euclidean_l2 Facenet2018 TRUE 0.98 0.39 0.40 131 187
Dlib yolov8 euclidean_l2 VGGFace FALSE 0.98 0.40 0.40 131 187
Dlib yolov8 euclidean_l2 VGGFace2 FALSE 0.98 0.41 0.40 131 187
Dlib yolov8 euclidean_l2 ArcFace TRUE 0.99 0.39 0.40 131 187
Dlib yunet cosine base FALSE 0.87 0.12 0.07 125 183
Dlib yunet cosine raw FALSE 0.87 0.12 0.07 125 183
Dlib yunet cosine Facenet TRUE 0.87 0.01 0.07 125 183
Dlib yunet cosine Facenet2018 FALSE 0.87 0.07 0.07 125 183
Dlib yunet cosine VGGFace FALSE 0.87 0.08 0.07 125 183
Dlib yunet cosine VGGFace2 FALSE 0.87 0.09 0.07 125 183
Dlib yunet cosine ArcFace FALSE 0.86 0.07 0.07 125 183
Dlib yunet euclidean base FALSE 0.87 0.70 0.60 125 183
Dlib yunet euclidean raw FALSE 0.87 0.70 0.60 125 183
Dlib yunet euclidean Facenet TRUE 0.87 0.22 0.60 125 183
Dlib yunet euclidean Facenet2018 TRUE 0.87 0.49 0.60 125 183
Dlib yunet euclidean VGGFace TRUE 0.87 0.55 0.60 125 183
Dlib yunet euclidean VGGFace2 TRUE 0.87 0.57 0.60 125 183
Dlib yunet euclidean ArcFace TRUE 0.87 0.49 0.60 125 183
Dlib yunet euclidean_l2 base FALSE 0.87 0.49 0.40 125 183
Dlib yunet euclidean_l2 raw FALSE 0.87 0.49 0.40 125 183
Dlib yunet euclidean_l2 Facenet TRUE 0.87 0.17 0.40 125 183
Dlib yunet euclidean_l2 Facenet2018 TRUE 0.86 0.38 0.40 125 183
Dlib yunet euclidean_l2 VGGFace FALSE 0.86 0.41 0.40 125 183
Dlib yunet euclidean_l2 VGGFace2 FALSE 0.87 0.42 0.40 125 183
Dlib yunet euclidean_l2 ArcFace TRUE 0.87 0.38 0.40 125 183
Dlib fastmtcnn cosine base FALSE 0.92 0.12 0.07 125 189
Dlib fastmtcnn cosine raw FALSE 0.92 0.12 0.07 125 189
Dlib fastmtcnn cosine Facenet TRUE 0.92 0.02 0.07 125 189
Dlib fastmtcnn cosine Facenet2018 FALSE 0.92 0.08 0.07 125 189
Dlib fastmtcnn cosine VGGFace FALSE 0.92 0.09 0.07 125 189
Dlib fastmtcnn cosine VGGFace2 FALSE 0.92 0.10 0.07 125 189
Dlib fastmtcnn cosine ArcFace FALSE 0.92 0.08 0.07 125 189
Dlib fastmtcnn euclidean base FALSE 0.92 0.68 0.60 125 189
Dlib fastmtcnn euclidean raw FALSE 0.92 0.68 0.60 125 189
Dlib fastmtcnn euclidean Facenet TRUE 0.92 0.24 0.60 125 189
Dlib fastmtcnn euclidean Facenet2018 TRUE 0.93 0.54 0.60 125 189
Dlib fastmtcnn euclidean VGGFace TRUE 0.92 0.58 0.60 125 189
Dlib fastmtcnn euclidean VGGFace2 TRUE 0.91 0.59 0.60 125 189
Dlib fastmtcnn euclidean ArcFace TRUE 0.93 0.53 0.60 125 189
Dlib fastmtcnn euclidean_l2 base FALSE 0.91 0.48 0.40 125 189
Dlib fastmtcnn euclidean_l2 raw FALSE 0.92 0.48 0.40 125 189
Dlib fastmtcnn euclidean_l2 Facenet TRUE 0.93 0.19 0.40 125 189
Dlib fastmtcnn euclidean_l2 Facenet2018 TRUE 0.93 0.40 0.40 125 189
Dlib fastmtcnn euclidean_l2 VGGFace FALSE 0.92 0.43 0.40 125 189
Dlib fastmtcnn euclidean_l2 VGGFace2 FALSE 0.92 0.44 0.40 125 189
Dlib fastmtcnn euclidean_l2 ArcFace TRUE 0.93 0.40 0.40 125 189
SFace opencv cosine base FALSE 0.33 0.73 0.59 102 86
SFace opencv cosine raw TRUE 0.22 0.55 0.59 102 86
SFace opencv cosine Facenet TRUE 0.23 0.53 0.59 102 86
SFace opencv cosine Facenet2018 FALSE 0.23 0.72 0.59 102 86
SFace opencv cosine VGGFace TRUE 0.22 0.47 0.59 102 86
SFace opencv cosine VGGFace2 TRUE 0.22 0.53 0.59 102 86
SFace opencv cosine ArcFace FALSE 0.22 0.72 0.59 102 86
SFace opencv euclidean base TRUE 0.22 10.39 10.73 102 86
SFace opencv euclidean raw TRUE 0.22 7.19 10.73 102 86
SFace opencv euclidean Facenet TRUE 0.22 4.85 10.73 102 86
SFace opencv euclidean Facenet2018 TRUE 0.22 8.78 10.73 102 86
SFace opencv euclidean VGGFace TRUE 0.23 6.04 10.73 102 86
SFace opencv euclidean VGGFace2 TRUE 0.22 4.97 10.73 102 86
SFace opencv euclidean ArcFace TRUE 0.22 8.75 10.73 102 86
SFace opencv euclidean_l2 base FALSE 0.22 1.21 1.06 102 86
SFace opencv euclidean_l2 raw TRUE 0.23 1.05 1.06 102 86
SFace opencv euclidean_l2 Facenet TRUE 0.22 1.03 1.06 102 86
SFace opencv euclidean_l2 Facenet2018 FALSE 0.22 1.20 1.06 102 86
SFace opencv euclidean_l2 VGGFace TRUE 0.22 0.97 1.06 102 86
SFace opencv euclidean_l2 VGGFace2 TRUE 0.22 1.03 1.06 102 86
SFace opencv euclidean_l2 ArcFace FALSE 0.23 1.20 1.06 102 86
SFace ssd cosine base FALSE 0.26 0.88 0.59 283 None
SFace ssd cosine raw FALSE 0.26 0.59 0.59 127 60
SFace ssd cosine Facenet TRUE 0.26 0.39 0.59 127 60
SFace ssd cosine Facenet2018 FALSE 0.26 0.87 0.59 127 60
SFace ssd cosine VGGFace FALSE 0.26 0.64 0.59 127 60
SFace ssd cosine VGGFace2 TRUE 0.26 0.48 0.59 127 60
SFace ssd cosine ArcFace FALSE 0.26 0.85 0.59 127 60
SFace ssd euclidean base TRUE 0.26 7.92 10.73 283 None
SFace ssd euclidean raw TRUE 0.26 6.65 10.73 283 None
SFace ssd euclidean Facenet TRUE 0.26 5.13 10.73 127 60
SFace ssd euclidean Facenet2018 TRUE 0.26 7.73 10.73 283 None
SFace ssd euclidean VGGFace TRUE 0.26 5.19 10.73 283 None
SFace ssd euclidean VGGFace2 TRUE 0.26 3.78 10.73 283 None
SFace ssd euclidean ArcFace TRUE 0.26 7.73 10.73 283 None
SFace ssd euclidean_l2 base FALSE 0.26 1.33 1.06 283 None
SFace ssd euclidean_l2 raw FALSE 0.26 1.09 1.06 127 60
SFace ssd euclidean_l2 Facenet TRUE 0.26 0.89 1.06 127 60
SFace ssd euclidean_l2 Facenet2018 FALSE 0.26 1.32 1.06 127 60
SFace ssd euclidean_l2 VGGFace FALSE 0.26 1.13 1.06 127 60
SFace ssd euclidean_l2 VGGFace2 TRUE 0.26 0.98 1.06 127 60
SFace ssd euclidean_l2 ArcFace FALSE 0.26 1.30 1.06 127 60
SFace dlib cosine base FALSE 0.20 0.78 0.59 117 168
SFace dlib cosine raw FALSE 0.20 0.64 0.59 117 168
SFace dlib cosine Facenet TRUE 0.20 0.47 0.59 117 168
SFace dlib cosine Facenet2018 FALSE 0.20 0.73 0.59 117 168
SFace dlib cosine VGGFace TRUE 0.20 0.47 0.59 117 168
SFace dlib cosine VGGFace2 TRUE 0.20 0.56 0.59 117 168
SFace dlib cosine ArcFace FALSE 0.20 0.73 0.59 117 168
SFace dlib euclidean base FALSE 0.20 11.15 10.73 117 168
SFace dlib euclidean raw TRUE 0.20 6.46 10.73 117 168
SFace dlib euclidean Facenet TRUE 0.20 4.45 10.73 117 168
SFace dlib euclidean Facenet2018 TRUE 0.20 7.35 10.73 117 168
SFace dlib euclidean VGGFace TRUE 0.20 4.63 10.73 117 168
SFace dlib euclidean VGGFace2 TRUE 0.20 4.71 10.73 117 168
SFace dlib euclidean ArcFace TRUE 0.20 7.32 10.73 117 168
SFace dlib euclidean_l2 base FALSE 0.20 1.25 1.06 117 168
SFace dlib euclidean_l2 raw FALSE 0.20 1.13 1.06 117 168
SFace dlib euclidean_l2 Facenet TRUE 0.20 0.96 1.06 117 168
SFace dlib euclidean_l2 Facenet2018 FALSE 0.20 1.21 1.06 117 168
SFace dlib euclidean_l2 VGGFace TRUE 0.20 0.97 1.06 117 168
SFace dlib euclidean_l2 VGGFace2 FALSE 0.20 1.06 1.06 117 168
SFace dlib euclidean_l2 ArcFace FALSE 0.20 1.21 1.06 117 168
SFace mtcnn cosine base FALSE 1.03 0.88 0.59 125 188
SFace mtcnn cosine raw FALSE 1.04 0.70 0.59 125 188
SFace mtcnn cosine Facenet TRUE 1.03 0.41 0.59 125 188
SFace mtcnn cosine Facenet2018 FALSE 1.03 0.84 0.59 125 188
SFace mtcnn cosine VGGFace TRUE 1.03 0.56 0.59 125 188
SFace mtcnn cosine VGGFace2 TRUE 1.02 0.57 0.59 125 188
SFace mtcnn cosine ArcFace FALSE 1.04 0.79 0.59 125 188
SFace mtcnn euclidean base FALSE 1.03 10.85 10.73 125 188
SFace mtcnn euclidean raw TRUE 1.03 6.86 10.73 125 188
SFace mtcnn euclidean Facenet TRUE 1.03 4.74 10.73 125 188
SFace mtcnn euclidean Facenet2018 TRUE 1.04 8.84 10.73 125 188
SFace mtcnn euclidean VGGFace TRUE 1.03 6.55 10.73 125 188
SFace mtcnn euclidean VGGFace2 TRUE 1.03 5.25 10.73 125 188
SFace mtcnn euclidean ArcFace TRUE 1.05 8.73 10.73 125 188
SFace mtcnn euclidean_l2 base FALSE 1.03 1.33 1.06 125 188
SFace mtcnn euclidean_l2 raw FALSE 1.03 1.18 1.06 125 188
SFace mtcnn euclidean_l2 Facenet TRUE 1.03 0.90 1.06 125 188
SFace mtcnn euclidean_l2 Facenet2018 FALSE 1.04 1.30 1.06 125 188
SFace mtcnn euclidean_l2 VGGFace TRUE 1.03 1.05 1.06 125 188
SFace mtcnn euclidean_l2 VGGFace2 FALSE 1.06 1.07 1.06 125 188
SFace mtcnn euclidean_l2 ArcFace FALSE 1.04 1.26 1.06 125 188
SFace retinaface cosine base FALSE 2.09 0.87 0.59 133 189
SFace retinaface cosine raw FALSE 2.06 0.67 0.59 133 189
SFace retinaface cosine Facenet TRUE 1.95 0.38 0.59 133 189
SFace retinaface cosine Facenet2018 FALSE 1.95 0.83 0.59 133 189
SFace retinaface cosine VGGFace FALSE 1.97 0.61 0.59 133 189
SFace retinaface cosine VGGFace2 TRUE 1.96 0.55 0.59 133 189
SFace retinaface cosine ArcFace FALSE 2.08 0.79 0.59 133 189
SFace retinaface euclidean base TRUE 1.94 10.37 10.73 133 189
SFace retinaface euclidean raw TRUE 1.93 7.36 10.73 133 189
SFace retinaface euclidean Facenet TRUE 1.96 4.78 10.73 133 189
SFace retinaface euclidean Facenet2018 TRUE 1.95 8.83 10.73 133 189
SFace retinaface euclidean VGGFace TRUE 1.94 6.53 10.73 133 189
SFace retinaface euclidean VGGFace2 TRUE 2.03 5.12 10.73 133 189
SFace retinaface euclidean ArcFace TRUE 2.10 8.87 10.73 133 189
SFace retinaface euclidean_l2 base FALSE 2.01 1.32 1.06 133 189
SFace retinaface euclidean_l2 raw FALSE 1.96 1.16 1.06 133 189
SFace retinaface euclidean_l2 Facenet TRUE 1.98 0.88 1.06 133 189
SFace retinaface euclidean_l2 Facenet2018 FALSE 1.99 1.29 1.06 133 189
SFace retinaface euclidean_l2 VGGFace FALSE 1.96 1.10 1.06 133 189
SFace retinaface euclidean_l2 VGGFace2 TRUE 2.02 1.05 1.06 133 189
SFace retinaface euclidean_l2 ArcFace FALSE 2.07 1.25 1.06 133 189
SFace mediapipe cosine base FALSE 0.11 0.74 0.59 117 187
SFace mediapipe cosine raw TRUE 0.09 0.55 0.59 117 187
SFace mediapipe cosine Facenet TRUE 0.08 0.24 0.59 117 187
SFace mediapipe cosine Facenet2018 FALSE 0.08 0.73 0.59 117 187
SFace mediapipe cosine VGGFace TRUE 0.07 0.41 0.59 117 187
SFace mediapipe cosine VGGFace2 TRUE 0.07 0.30 0.59 117 187
SFace mediapipe cosine ArcFace FALSE 0.07 0.73 0.59 117 187
SFace mediapipe euclidean base FALSE 0.07 10.74 10.73 117 187
SFace mediapipe euclidean raw TRUE 0.07 5.52 10.73 117 187
SFace mediapipe euclidean Facenet TRUE 0.07 3.26 10.73 117 187
SFace mediapipe euclidean Facenet2018 TRUE 0.07 7.80 10.73 117 187
SFace mediapipe euclidean VGGFace TRUE 0.07 5.03 10.73 117 187
SFace mediapipe euclidean VGGFace2 TRUE 0.07 3.63 10.73 117 187
SFace mediapipe euclidean ArcFace TRUE 0.07 7.76 10.73 117 187
SFace mediapipe euclidean_l2 base FALSE 0.07 1.21 1.06 117 187
SFace mediapipe euclidean_l2 raw TRUE 0.07 1.05 1.06 117 187
SFace mediapipe euclidean_l2 Facenet TRUE 0.07 0.70 1.06 117 187
SFace mediapipe euclidean_l2 Facenet2018 FALSE 0.07 1.21 1.06 117 187
SFace mediapipe euclidean_l2 VGGFace TRUE 0.07 0.90 1.06 117 187
SFace mediapipe euclidean_l2 VGGFace2 TRUE 0.07 0.77 1.06 117 187
SFace mediapipe euclidean_l2 ArcFace FALSE 0.07 1.21 1.06 117 187
SFace yolov8 cosine base FALSE 0.22 0.96 0.59 131 187
SFace yolov8 cosine raw FALSE 0.19 0.72 0.59 131 187
SFace yolov8 cosine Facenet TRUE 0.19 0.40 0.59 131 187
SFace yolov8 cosine Facenet2018 FALSE 0.19 0.86 0.59 131 187
SFace yolov8 cosine VGGFace TRUE 0.19 0.59 0.59 131 187
SFace yolov8 cosine VGGFace2 TRUE 0.21 0.49 0.59 131 187
SFace yolov8 cosine ArcFace FALSE 0.18 0.81 0.59 131 187
SFace yolov8 euclidean base FALSE 0.18 11.73 10.73 131 187
SFace yolov8 euclidean raw TRUE 0.19 7.09 10.73 131 187
SFace yolov8 euclidean Facenet TRUE 0.17 4.79 10.73 131 187
SFace yolov8 euclidean Facenet2018 TRUE 0.20 9.03 10.73 131 187
SFace yolov8 euclidean VGGFace TRUE 0.19 6.66 10.73 131 187
SFace yolov8 euclidean VGGFace2 TRUE 0.17 4.67 10.73 131 187
SFace yolov8 euclidean ArcFace TRUE 0.18 8.97 10.73 131 187
SFace yolov8 euclidean_l2 base FALSE 0.20 1.39 1.06 131 187
SFace yolov8 euclidean_l2 raw FALSE 0.20 1.20 1.06 131 187
SFace yolov8 euclidean_l2 Facenet TRUE 0.19 0.90 1.06 131 187
SFace yolov8 euclidean_l2 Facenet2018 FALSE 0.20 1.31 1.06 131 187
SFace yolov8 euclidean_l2 VGGFace FALSE 0.17 1.09 1.06 131 187
SFace yolov8 euclidean_l2 VGGFace2 TRUE 0.19 0.99 1.06 131 187
SFace yolov8 euclidean_l2 ArcFace FALSE 0.18 1.27 1.06 131 187
SFace yunet cosine base FALSE 0.09 0.95 0.59 125 183
SFace yunet cosine raw FALSE 0.09 0.74 0.59 125 183
SFace yunet cosine Facenet TRUE 0.09 0.48 0.59 125 183
SFace yunet cosine Facenet2018 FALSE 0.09 0.81 0.59 125 183
SFace yunet cosine VGGFace TRUE 0.09 0.57 0.59 125 183
SFace yunet cosine VGGFace2 TRUE 0.09 0.50 0.59 125 183
SFace yunet cosine ArcFace FALSE 0.09 0.82 0.59 125 183
SFace yunet euclidean base FALSE 0.09 12.06 10.73 125 183
SFace yunet euclidean raw TRUE 0.09 7.74 10.73 125 183
SFace yunet euclidean Facenet TRUE 0.09 5.51 10.73 125 183
SFace yunet euclidean Facenet2018 TRUE 0.09 9.02 10.73 125 183
SFace yunet euclidean VGGFace TRUE 0.09 6.41 10.73 125 183
SFace yunet euclidean VGGFace2 TRUE 0.09 4.77 10.73 125 183
SFace yunet euclidean ArcFace TRUE 0.09 8.99 10.73 125 183
SFace yunet euclidean_l2 base FALSE 0.09 1.38 1.06 125 183
SFace yunet euclidean_l2 raw FALSE 0.09 1.21 1.06 125 183
SFace yunet euclidean_l2 Facenet TRUE 0.09 0.98 1.06 125 183
SFace yunet euclidean_l2 Facenet2018 FALSE 0.09 1.28 1.06 125 183
SFace yunet euclidean_l2 VGGFace FALSE 0.09 1.07 1.06 125 183
SFace yunet euclidean_l2 VGGFace2 TRUE 0.09 1.00 1.06 125 183
SFace yunet euclidean_l2 ArcFace FALSE 0.09 1.28 1.06 125 183
SFace fastmtcnn cosine base FALSE 0.13 0.95 0.59 125 189
SFace fastmtcnn cosine raw TRUE 0.12 0.57 0.59 125 189
SFace fastmtcnn cosine Facenet TRUE 0.13 0.42 0.59 125 189
SFace fastmtcnn cosine Facenet2018 FALSE 0.13 0.84 0.59 125 189
SFace fastmtcnn cosine VGGFace TRUE 0.12 0.53 0.59 125 189
SFace fastmtcnn cosine VGGFace2 TRUE 0.12 0.53 0.59 125 189
SFace fastmtcnn cosine ArcFace FALSE 0.12 0.78 0.59 125 189
SFace fastmtcnn euclidean base FALSE 0.12 11.61 10.73 125 189
SFace fastmtcnn euclidean raw TRUE 0.13 6.07 10.73 125 189
SFace fastmtcnn euclidean Facenet TRUE 0.13 5.30 10.73 125 189
SFace fastmtcnn euclidean Facenet2018 TRUE 0.13 9.27 10.73 125 189
SFace fastmtcnn euclidean VGGFace TRUE 0.13 6.42 10.73 125 189
SFace fastmtcnn euclidean VGGFace2 TRUE 0.12 4.75 10.73 125 189
SFace fastmtcnn euclidean ArcFace TRUE 0.12 9.03 10.73 125 189
SFace fastmtcnn euclidean_l2 base FALSE 0.13 1.38 1.06 125 189
SFace fastmtcnn euclidean_l2 raw FALSE 0.12 1.07 1.06 125 189
SFace fastmtcnn euclidean_l2 Facenet TRUE 0.13 0.91 1.06 125 189
SFace fastmtcnn euclidean_l2 Facenet2018 FALSE 0.12 1.30 1.06 125 189
SFace fastmtcnn euclidean_l2 VGGFace TRUE 0.13 1.03 1.06 125 189
SFace fastmtcnn euclidean_l2 VGGFace2 TRUE 0.13 1.03 1.06 125 189
SFace fastmtcnn euclidean_l2 ArcFace FALSE 0.12 1.25 1.06 125 189



≪清須電脳倶楽部メインページへ戻る場合はここをクリックしてください≫
Copyright(c)2018 GGE Kiyosu Cyber Club Allrights Reserved
inserted by FC2 system