Model Name: AuraFace
Version: 1.0
Model Type: Deep Learning Model for Face Recognition
Architecture: Resnet100 with Additive Angular Margin Loss (based on ArcFace)
The original ArcFace model and its theoretical foundation are described in the paper ArcFace: Additive Angular Margin Loss for Deep Face Recognition.
AuraFace is a highly discriminative face recognition model designed using the Additive Angular Margin Loss approach. It builds upon the principles introduced in ArcFace and has been trained on commercially and publicly available data sources to enable its usage in commercial setting. AuraFace is tailored for scenarios requiring robust and accurate face recognition capabilities with minimal computational overhead.
To get a face embedding using AuraFace, it can be used via InsightFace as shown in the example:
from huggingface_hub import snapshot_download
from insightface.app import FaceAnalysis
import numpy as np
import cv2
snapshot_download(
"fal/AuraFace-v1",
local_dir="models/auraface",
)
face_app = FaceAnalysis(
name="auraface",
providers=["CUDAExecutionProvider", "CPUExecutionProvider"],
root=".",
)
input_image = cv2.imread("test.png")
cv2_image = np.array(input_image.convert("RGB"))
cv2_image = cv2_image[:, :, ::-1]
faces = face_app.get(cv2_image)
embedding = faces[0].normed_embedding
AuraFace was trained on a commercial dataset comprising face images from various sources. The dataset tries to include a wide range of demographics, lighting conditions, and image qualities to ensure robust performance across different scenarios, however due to the commercial limitation may not extensively cover all ethnicities.
AuraFace has been tested on multiple face recognition benchmarks:
Efforts have been made to ensure that AuraFace performs equitably across different demographic groups. However, users should conduct their own assessments to confirm the model's fairness in their specific application context.
AuraFace should be used in compliance with all relevant privacy laws and guidelines. Users are responsible for ensuring that their use of the model respects individual privacy and data protection regulations.
AuraFace is a powerful and efficient face recognition model designed for commercial applications. It leverages the advanced Additive Angular Margin Loss technique to provide highly accurate and discriminative features. With a commitment to commercial use and ongoing improvements, AuraFace aims to set a new standard in face recognition technology in the commercial space.
4 commits
3 commits
Model Name: AuraFace
Version: 1.0
Model Type: Deep Learning Model for Face Recognition
Architecture: Resnet100 with Additive Angular Margin Loss (based on ArcFace)
The original ArcFace model and its theoretical foundation are described in the paper ArcFace: Additive Angular Margin Loss for Deep Face Recognition.
AuraFace is a highly discriminative face recognition model designed using the Additive Angular Margin Loss approach. It builds upon the principles introduced in ArcFace and has been trained on commercially and publicly available data sources to enable its usage in commercial setting. AuraFace is tailored for scenarios requiring robust and accurate face recognition capabilities with minimal computational overhead.
To get a face embedding using AuraFace, it can be used via InsightFace as shown in the example:
from huggingface_hub import snapshot_download
from insightface.app import FaceAnalysis
import numpy as np
import cv2
snapshot_download(
"fal/AuraFace-v1",
local_dir="models/auraface",
)
face_app = FaceAnalysis(
name="auraface",
providers=["CUDAExecutionProvider", "CPUExecutionProvider"],
root=".",
)
input_image = cv2.imread("test.png")
cv2_image = np.array(input_image.convert("RGB"))
cv2_image = cv2_image[:, :, ::-1]
faces = face_app.get(cv2_image)
embedding = faces[0].normed_embedding
AuraFace was trained on a commercial dataset comprising face images from various sources. The dataset tries to include a wide range of demographics, lighting conditions, and image qualities to ensure robust performance across different scenarios, however due to the commercial limitation may not extensively cover all ethnicities.
AuraFace has been tested on multiple face recognition benchmarks:
Efforts have been made to ensure that AuraFace performs equitably across different demographic groups. However, users should conduct their own assessments to confirm the model's fairness in their specific application context.
AuraFace should be used in compliance with all relevant privacy laws and guidelines. Users are responsible for ensuring that their use of the model respects individual privacy and data protection regulations.
AuraFace is a powerful and efficient face recognition model designed for commercial applications. It leverages the advanced Additive Angular Margin Loss technique to provide highly accurate and discriminative features. With a commitment to commercial use and ongoing improvements, AuraFace aims to set a new standard in face recognition technology in the commercial space.
4 commits
3 commits