NEWVector Store Object Storage — 50x cheaper.Read the post →
    Models/Detection & Recognition/isidentical/auraface-v1
    HFFace DetectionApache-2.0

    auraface-v1

    by isidentical

    Open-source face recognition with ArcFace architecture — commercially licensed

    180Kdl/month
    65Mparams
    Identifiers
    Model ID
    isidentical/auraface-v1
    Feature URI
    mixpeek://face_identity@v1/isidentical_auraface_v1

    Overview

    AuraFace v1 is an open-source face recognition model built on the ResNet100 architecture with Additive Angular Margin Loss (ArcFace). Developed by Batuhan at fal.ai, it extracts 512-dimensional face embeddings that map facial identity into a compact vector space where distances directly correspond to identity similarity. Unlike the original ArcFace model which has non-commercial restrictions, AuraFace is released under Apache 2.0 for unrestricted commercial use.

    The model achieves 99.65% accuracy on the LFW benchmark and provides a strong balance between recognition accuracy and commercial usability. On Mixpeek, AuraFace powers face-based identity search across video and image libraries — find all appearances of a specific person, cluster faces by identity, or verify identity matches across content collections.

    Architecture

    ResNet100 backbone with Additive Angular Margin Loss (ArcFace). Trained on commercially and publicly available face data. Produces 512-dimensional face embeddings. Compatible with InsightFace framework for CUDA and CPU inference.

    Mixpeek SDK Integration

    import { Mixpeek } from "mixpeek";
    const mx = new Mixpeek({ apiKey: "API_KEY" });
    await mx.collections.ingest({
    collection_id: "media-library",
    source: { url: "https://example.com/interview.mp4" },
    feature_extractors: [{
    feature: "face_detection",
    model: "isidentical/auraface-v1"
    }]
    });

    Capabilities

    • 512-dimensional face identity embeddings
    • 99.65% accuracy on LFW benchmark
    • ResNet100 backbone with ArcFace margin loss
    • Commercial-friendly Apache 2.0 license
    • Compatible with InsightFace and ONNX runtimes

    Use Cases on Mixpeek

    Identity search: find all appearances of a person across video and image libraries
    Face clustering: automatically group content by identity for media organization
    Identity verification: match faces across different content sources for compliance

    Benchmarks

    DatasetMetricScoreSource
    LFW (Labeled Faces in the Wild)Accuracy99.65%fal.ai, 2024 — HF Blog Post
    CFP-FP (Cross-pose)Accuracy~98%fal.ai, 2024 — HF Blog Post

    Performance

    Input Size112x112 px aligned face crop
    Embedding Dim512
    GPU Latency~3ms / face (A100)
    CPU Latency~25ms / face
    GPU Throughput~330 faces/sec (A100)
    GPU Memory~0.5 GB

    Specification

    FrameworkHF
    Organizationisidentical
    FeatureFace Detection
    Outputface embedding
    Modalitiesvideo, image
    RetrieverFace Filter
    Parameters65M
    LicenseApache-2.0
    Downloads/mo180K

    Research Paper

    Introducing AuraFace: Open-Source Face Recognition and Identity Preservation Models

    arxiv.org

    Build a pipeline with auraface-v1

    Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.

    Open Studio