Abstract

Deepfake image detection is currently served by three fundamentally different paradigms: commercial APIs, zero-shot vision-language models (LLMs), and open-source detectors. Despite their widespread use, these paradigms are rarely evaluated under a common protocol, making direct comparison difficult. We introduce VendorBench-100, a cross-paradigm benchmark that evaluates 36 representative models using a single adversarial 100-image corpus, a unified output schema, and a common evaluation framework. To ensure reliable assessment under the corpus’s intentional class imbalance, models are ranked primarily by the Matthews correlation coefficient (MCC), with ROC-AUC reported as a threshold-independent measure of ranking ability. Rather than maximizing dataset size, VendorBench-100 emphasizes challenging real-world scenarios through a curated taxonomy of eight edge-case families, including face swaps, text-to-video stills, AI photo edits, avatar compositing, opaque-provenance images, and compressed research frames. Our evaluation shows that commercial APIs achieve the strongest median performance, followed by vision LLMs and open-source detectors. However, individual open-source models remain competitive with the best vision LLMs. More importantly, we identify a consistent divergence between ranking ability (ROC-AUC) and operating-point quality (MCC), demonstrating that strong score discrimination does not necessarily produce reliable default-threshold decisions. This metric disagreement, rather than any single leaderboard ranking, is the central finding of the benchmark. We release the complete evaluation framework and benchmark results to support reproducible future research. The source code and data are available at: https://github.com/sharayu-20/vendorbench-100

Keywords: deepfake detection; AI-generated image detection; cross-paradigm benchmarking; vision-language models; open-source detectors; Matthews correlation coefficient; reproducibility

1 Introduction↩︎

The past several years have seen an extraordinary acceleration in the quality and accessibility of synthetic media. What once required specialized expertise and hand-tuned generative adversarial networks can now be accomplished by an ordinary user with a consumer-facing web application, a short text prompt, or a single uploaded photograph. Diffusion-based generators produce photorealistic faces and scenes frequently indistinguishable from genuine photographs under casual inspection, while face-swapping and avatar tools allow a person’s likeness to be transplanted into arbitrary video or image content in minutes. This democratization has a well-documented dark side: deepfakes and AI-generated imagery have been implicated in large-scale financial fraud carried out through impersonated video calls [1], non-consensual intimate imagery [2], manufacture of child sexual abuse material [3], and coordinated disinformation [4]. As convincing fakes have become cheap and fast to produce, the burden of distinguishing authentic from synthetic content has shifted from specialized forensic laboratories to ordinary platforms, institutions, and individuals with neither the expertise nor the tooling to perform that analysis themselves.

Three fundamentally different kinds of tool now compete to fill this gap, and they are almost never compared to one another. Commercial detection APIs let an organization submit an image and receive a verdict without training or hosting a model, and are marketed with prominent accuracy figures that are rarely independently verified. General-purpose vision-language models, never trained specifically for forgery detection [5], [6], are increasingly prompted zero-shot as an ad hoc detector by practitioners who already have API access to them for other purposes. And a large, fragmented ecosystem of open-source detectors, spanning academic checkpoints [7], [8], Hugging Face community classifiers, and purpose-built research models, offers a free alternative to both, at the cost of requiring local GPU infrastructure and offering no vendor accountability. Each of these three paradigms is evaluated, when it is evaluated rigorously at all, in isolation: commercial vendors publish internal benchmarks, vision-LLM providers report general-purpose capability rather than forgery-specific accuracy, and academic detectors are benchmarked against each other on shared research datasets that rarely resemble the messy, adversarial content circulating today [9], [10]. A practitioner deciding how to spend a detection budget, pay for a commercial API, prompt a model they already have access to, or self-host a free detector has no single source of evidence that measures all three options the same way. Figure 1 summarizes the paper’s motivation and workflow: the accuracy trap that motivates our metric choice (a naive always-fake predictor scores 79% accuracy yet 0.00 MCC), the benchmark pipeline itself (36 models, three paradigms, dual-metric evaluation), and a preview of the central finding, an MCC-versus-AUC landscape showing recurring trap, starved, and flat failure patterns.

Figure 1: Overview of VendorBench-100. Left: the accuracy trap, a naive always-fake predictor scores 79% accuracy and 0.83 F1 despite an MCC of 0.00. Center: the benchmark pipeline, 36 models across three paradigms scored on 100 adversarial images under a dual-metric protocol (MCC primary, ROC-AUC tiebreak). Right: the MCC-versus-AUC landscape, the paper’s central finding, showing representative models in a danger zone (high AUC, weak MCC), a starved zone (strong ranking, weak MCC at threshold), and a flat zone (strong MCC, near-chance ranking).

This paper closes that gap. We construct VendorBench-100, a single, fixed, adversarial corpus of 100 images (79 fake, 21 real) assembled specifically to be hard rather than merely large: every image was hand-picked to probe a distinct failure mode, near-duplicate face swaps, letterboxed video-generation stills, on-device AI photo edits of otherwise-real scenes, and images of deliberately opaque provenance, so that a model’s score reflects performance on the difficult, modern middle ground rather than easy separability on saturated public datasets [11], [12]. We then evaluate 36 models spanning all three paradigms under one shared task definition, one common output schema, and one abstention policy, and rank them by the Matthews correlation coefficient, with ROC-AUC as a threshold-free tiebreak, because the corpus’s 79:21 class skew makes raw accuracy trivially gameable by a detector that simply predicts “fake” by default.

The result is not a simple ranking in which one paradigm or one model wins outright. Commercial APIs post the strongest typical performance, but the best open-source ranker outperforms every vision LLM in the study on pure ranking power, and the single highest-ranking-power model overall turns out to have one of the worst operating-point scores once its default decision threshold is taken into account. This divergence between a model’s ability to separate the classes (ROC-AUC) and its ability to make a well-calibrated decision at its shipped threshold (MCC) recurs across all three paradigms and is, we argue, a more important and more general finding than any single model’s leaderboard position. We report these results with an explicit accounting of the corpus’s small size and single-run design, and we release the full evaluation harness, per-image evidence, and aggregated results to support independent replication and extension. Our main contributions are

  • We present VendorBench-100, a cross-paradigm benchmark evaluating 36 models such as 5 commercial APIs, 7 zero-shot vision LLMs, and 24 open-source detectors under one common normalized output schema and one abstention policy, so that results are directly comparable across three paradigms almost never measured on common ground.

  • We construct and document a deliberately hard, edge-case-heavy 100-image corpus organized around eight distinct failure-mode families (live face-swap smearing, near-duplicate online face swaps, letterboxed text-to-video stills, avatar compositing seams, fully synthetic text-to-image output, on-device AI photo edits of real scenes, opaque-provenance manipulations, and compressed research-dataset frames), together with a per-image provenance registry and a filename-based anti-leakage protocol.

  • We show a clear ordering by paradigm as commercial APIs lead, vision LLMs occupy the middle, and most open-source detectors trail, that is nonetheless paradigm-level rather than universal, since individual open-source detectors remain competitive with, or ahead of, the strongest vision LLMs on ranking power.

  • We identify a recurring divergence between ranking power (ROC-AUC) and operating-point quality (MCC) that cuts across all three paradigms, showing that a model’s default decision threshold, not just its underlying discriminative ability, determines whether strong class separation translates into a trustworthy verdict.

2 Related Work↩︎

This section situates VendorBench-100 within the prior work its three tracks each draw on. We begin with the threat landscape that motivates detection in the first place, then survey the generative techniques and the academic detection methods built to counter them, including the datasets those methods are trained and benchmarked on. We then turn to the two paradigms outside the traditional academic-detector literature that this paper is the first to place alongside it: vision-language models used as zero-shot detectors, and the commercial detection services and provenance-based alternatives already deployed in practice. We close with the still-thin literature on evaluating detectors under real-world rather than laboratory conditions, and the evaluation methodology our own metric choices draw on.

2.1 Threat Landscape and Motivation↩︎

Deepfakes emerged as a societal concern with early landscape reports documenting rapid growth in synthetic media and its concentration in abusive applications [13], [14]. High-value financial fraud has since been carried out through real-time video impersonation, in one widely reported case costing a multinational firm tens of millions of dollars [1]; regulators have issued formal warnings to financial institutions about such schemes [15]. Beyond financial harm, cross-national survey work has documented the prevalence and psychological impact of non-consensual synthetic intimate imagery [2], and child-safety organizations have reported a troubling rise in AI-generated child sexual abuse material [3]. Broader assessments extend this threat picture further still, documenting risks to election integrity through synthetic disinformation [4], to financial-sector cybersecurity more generally [16], to minors specifically [17], and to the digital identity-verification systems that many online services rely on [18]. Taken together, this body of work establishes both why reliable detection matters and why the tools organizations actually deploy to perform that detection deserve careful, independent measurement rather than uncritical trust in vendor marketing.

2.2 Generative Models and Detection of Synthetic Imagery↩︎

The images a detector must classify are the product of a diverse, rapidly evolving generative ecosystem. Generative adversarial networks and style-based architectures established photorealistic face synthesis [19][21], and denoising diffusion probabilistic models together with latent diffusion have since come to dominate high-quality text-to-image generation [22], [23], producing a visually distinct artifact family from their GAN-era predecessors. Orthogonal to whole-image synthesis, convolutional face-swapping and neural-rendering methods enable targeted identity replacement within an otherwise real image or video, rather than generating a scene from scratch [24][27]. This three-way split including GAN-era synthesis, diffusion-era synthesis, and localized identity replacement is a central reason a detector that performs well on one manipulation family often degrades sharply on another: each leaves behind a different statistical fingerprint, and a model implicitly or explicitly tuned to one fingerprint has no guarantee of generalizing to the others.

A parallel literature targets fully synthetic, rather than face-manipulated, imagery, and much of it underlies the open-source detectors we benchmark in Section 4. Early work showed CNN-generated images carry detectable fingerprints within their generator family [28], while frequency-domain analyses showed the upsampling common to many generators leaves spectral artifacts [29], [30]. The central open problem is generalization across unseen generators: pre-trained vision-language feature spaces improve cross-generator robustness over narrowly trained detectors [31], [32], intermediate-encoder-block representations from large pre-trained backbones offer a further such feature space [8], reconstruction-based cues targeting diffusion models’ encoding process offer a complementary signal [33], [34], contrastive reconstruction-based training has been proposed specifically to improve cross-generator generalization for diffusion-generated images [7], and category-common-prompt injection into CLIP has been proposed as a further generalization strategy [35]. Benchmarks such as GenImage quantify exactly this generalization gap at scale, showing that detectors trained on one set of generators can lose substantial accuracy when evaluated on held-out ones [12]. This pattern shows strong in-distribution performance that degrades under distribution shift is precisely what our open-source track exposes at the level of individually deployable, publicly downloadable checkpoints: most of the 24 detectors we evaluate were not trained on the specific generator mix our adversarial corpus contains, and their scores reflect exactly this generalization failure rather than a defect in the corpus.

2.3 Deepfake Datasets and Detection Benchmarks↩︎

Empirical progress in face-manipulation detection has been driven largely by the availability of large, labeled corpora, whose evolution tracks how the threat has grown in scale and realism. FaceForensics++ standardized manipulated-face detection around a fixed set of manipulation methods and compression levels [11], [36]. The DeepFake Detection Challenge dataset substantially expanded both scale and actor diversity [37], [38], WildDeepfake introduced content collected directly from the internet rather than generated under laboratory conditions [39], and Celeb-DF specifically targeted the visual-quality gap between early, artifact-heavy deepfakes and the higher-fidelity forgeries that had begun to circulate in the wild [40]. More recent efforts have pushed further on both diversity and unification: ForgeryNet consolidates many distinct forgery types under a single benchmark [41], and DF40 explicitly targets the next generation of forgery techniques as generative models have continued to advance [42]. Consolidated frameworks such as DeepfakeBench standardize the training and evaluation protocol itself, showing how strongly reported accuracy depends on preprocessing and cross-dataset transfer choices [43]. Our own corpus draws on FaceForensics++ and DF40 style frames as two of more than twenty provenance sources, but where this prior work benchmarks trainable detector architectures on large, relatively homogeneous corpora, our object of study is a small, deliberately heterogeneous, adversarial set evaluated against closed commercial APIs, general-purpose vision LLMs, and independently distributed open-source checkpoints simultaneously.

2.4 Vision-Language Models as Zero-Shot Detectors↩︎

A newer and less-studied question is whether general-purpose vision-language models, never trained specifically for forgery detection, can be prompted zero-shot as usable detectors. Contemporary multimodal LLMs from several providers including OpenAI’s GPT family with vision input [5], Google’s Gemini [6], Anthropic’s Claude Opus [44], Alibaba’s Qwen vision-language models [45], Meta’s Llama 4 with multimodal variants including the Maverick configuration [46], NVIDIA’s Nemotron vision-language family [47], and Zhipu AI’s GLM family [48] expose strong general visual reasoning but no forgery-specific training signal, so their reliability as detectors is an open empirical question rather than an assumption we can import from their general-purpose benchmarks. We treat this question directly by including one representative model from each of these seven families as a dedicated evaluation track (Section 3), prompted with a shared forensic verdict schema rather than a bespoke prompt per model, and scored under exactly the same metrics as the commercial and open-source tracks.

2.5 Provenance, Watermarking, and Commercial Detection Services↩︎

Passive, after-the-fact detection is not the only proposed defense against synthetic media. Proactive provenance schemes instead try to establish authenticity at the moment of capture or generation. Content Credentials under the Coalition for Content Provenance and Authenticity’s (C2PA) specification bind cryptographically signed provenance metadata directly to a media file [49], [50], and internet-scale watermarking schemes such as SynthID embed an imperceptible signal directly into generator outputs at the moment of creation [51], [52]. These mechanisms are valuable but fundamentally proactive: they depend on voluntary adoption and provide no protection against the enormous volume of unmarked content already in circulation, or against generators that decline to participate. Passive detectors, of the kind evaluated across all three tracks in this paper, remain the only recourse for that unmarked content.

The commercial detection services in our first track sit within a broader, still-emerging industry landscape characterized by limited public documentation. Reality Defender [53], Hive AI [54], Sightengine [55], TruthScan [56], and Neural Defend [57] each expose a different native output schema: some return categorical tags, others per-class confidence scores, and others free-text verdicts. This heterogeneity, now multiplied across three entirely different paradigms rather than one, is precisely what necessitates the unified normalization schema described in Section 3. Other commercial and research detectors not evaluated here, including Sensity AI [58], Illuminarty [59], AI or Not [60], and Intel’s real-time FakeCatcher [61], illustrate that the commercial landscape this normalization problem applies to is broader still.

2.6 Evaluations of Detectors in the Wild and Evaluation Methodology↩︎

A growing body of work asks whether laboratory-reported accuracy survives contact with real-world data, and the answer is consistently discouraging. Empirical studies report substantial generalization gaps for image detectors when evaluated across unseen generators and under realistic degradations such as recompression and resizing [62], [63], and a broad survey specifically catalogs the reliability pitfalls that afflict deepfake detection as a field [10]. Some pitfalls are structural: dataset construction can leak shortcuts, with post-processing and JPEG artifacts, rather than synthesis cues, driving an apparently high accuracy [64], and “sanity check” analyses show ostensibly strong detectors can rely on spurious, dataset-specific signals [65]. Most directly related to our own work, several recent efforts have evaluated detection systems, including named commercial offerings, on content actually circulating in the wild rather than on curated laboratory datasets. Deepfake-Eval-2024 evaluates detectors, including commercial products, on recently circulated real-world content and reports accuracy figures markedly lower than vendor marketing claims [9]; related commercial and production-style evaluations include ARIA [66], “Organic or Diffused” [67], the Visual Counter Turing Test [68], AI-GenBench [69], and direct human-versus-AI comparisons of detection accuracy [70]. Robustness studies further show well-performing detectors can be defeated by adversarial perturbations [71], underscoring that accuracy on unperturbed content is only a partial picture of real-world reliability. Where these efforts each cover one or two paradigms, our contribution is a controlled, named, cross-paradigm comparison spanning all three on a single fixed corpus under identical normalization.

Finally, our metric choices draw on classical evaluation methodology well established in machine learning but under-applied to commercial and zero-shot deepfake-detection systems specifically. Systems that may decline to produce a verdict are properly analyzed through the reject-option and selective-classification framework [72][77], motivating reporting coverage alongside accuracy computed only over decided images. For imbalanced binary classification problems of the kind our real-versus-fake corpus presents, single scalar summaries such as raw accuracy can be actively misleading, and the Matthews correlation coefficient together with careful, separate reporting of class-conditional error rates is recommended in place of accuracy alone [78][80]. We adopt MCC as our primary ranking metric for this reason, and add threshold-free ROC-AUC as a tiebreak precisely because, as we show in Section 5, a model’s ranking power and its operating-point quality can diverge sharply.

3 Methodology↩︎

Evaluating three fundamentally different detection paradigms fairly requires getting three things right, in order: the corpus every model is measured against, the protocol that makes their heterogeneous outputs comparable at all, and the metrics used to interpret the result. We address each in turn, beginning with the corpus itself, since every downstream comparison inherits whatever strengths and limitations that corpus has. Figure 2 walks through the evaluation architecture: every model is normalized into a shared prediction record, scored by a common metrics engine reporting four core metrics plus the MCC-versus-AUC comparison, and ranked into a single final leaderboard, surfacing the leaderboard paradox where TruthScan posts the highest ROC-AUC (0.915) yet ranks 32nd of 36 by MCC (2̆2120.13).

Figure 2: End-to-end evaluation architecture of VendorBench-100. Left: outputs from all three paradigms are normalized into one shared prediction record. Center: a common metrics engine computes accuracy, F1, precision, recall, and the MCC-versus-AUC comparison. Right: the resulting MCC-ranked leaderboard, illustrating the leaderboard paradox, TruthScan’s top ROC-AUC (0.915) but 32nd-place MCC (2̆2120.13).

3.1 Dataset↩︎

We evaluate all 36 models on a single fixed corpus of 100 still images: 79 labeled fake and 21 labeled real (a 79:21 split). Unlike a corpus optimized for scale, this one is optimized for difficulty: every image was hand-selected to probe a distinct, currently under-served failure mode, so that a model’s score reflects skill on hard, modern generator output rather than easy separability on saturated public benchmarks. The corpus deliberately spans more than twenty provenance sources so that no single generator, resolution, or lighting regime dominates and no detector can succeed merely by tuning to one artifact profile. Figure 3 summarizes the distribution of the 79 fake images across the eight edge-case families included in VendorBench-100. The corpus intentionally emphasizes difficult, contemporary manipulation scenarios rather than balancing category frequencies, ensuring that detector performance reflects robustness under realistic failure modes instead of performance on a homogeneous benchmark.

3.1.1 Edge-Case Taxonomy↩︎

The fake portion of the corpus is organized around eight distinct edge-case families, each defeating detectors for a structurally different reason. Live face-swap smearing (DeepFaceLive-style capture) entangles manipulation artifacts with ordinary webcam motion blur, so a detector cannot cleanly separate generation artifact from capture noise. Near-duplicate online face swaps (Picsi.Ai, Tuguoba, VidMage, Live3D) replace only the face region on an otherwise genuine selfie, leaving global image statistics looking authentic and punishing models that flip predictions on trivially similar inputs. Letterboxed text-to-video stills (Sora, Veo, Veo 3) are extracted frames carrying black letterbox bars and cinematic color grading that can read as ordinary photographic post-processing rather than a generation artifact. AI avatar compositing seams (HeyGen) exhibit a faint glowing outline around the subject that is a compositing edge, not a pixel-frequency signature, so frequency-domain detectors miss it. Fully synthetic text-to-image output (DALL-E, Gemini, and several additional generators) is the classical generated-image case, though several samples are high-resolution and photorealistic enough that only faint over-smoothness remains as a cue. On-device AI photo edits of otherwise-real scenes (Samsung Galaxy AI) are the single hardest family: because only a small, localized region of an overwhelmingly authentic photograph is synthetic, any whole-image fakeness score is diluted toward “real.” Opaque-provenance manipulations carry no independently identifiable generator at all, modeling the realistic “unknown tool” scenario a deployed detector actually faces. Finally, compressed research-dataset frames (DF40, FaceForensics++) contribute heavily compressed, low-resolution talking-head content with characteristic waxy skin blending. Compounding all eight families, the corpus skews toward small, heavily recompressed images: 78 of the 100 images are at or below 256 pixels on the long side, which erodes exactly the high-frequency evidence that many frequency-based detectors depend on.

Figure 3: Distribution of the 79 fake images across the eight edge-case families in VendorBench-100. The corpus intentionally emphasizes difficult, real-world failure modes rather than large-scale dataset coverage.

3.1.2 Composition, Provenance, and Anti-Leakage Protocol↩︎

The 79 fake images are drawn from 21 distinct source groups, verified against public evidence wherever the group’s originating platform or dataset is independently identifiable: 15 groups are fully verified (e.g., OpenAI Sora, Google Veo, HeyGen, DF40, FaceForensics++), 4 are partially verified (the platform exists and is named, but the exact model or generation run is not pinned down), and 2 remain deliberately opaque, retained explicitly as unknown-tool cases rather than excluded. The 21 real images are authentic photographs including bare-faced selfies, portraits, and casual indoor and outdoor shots used as negative controls to measure false-positive behavior. A complete per-image provenance registry, including source, scenario, and verification status for every entry, is released alongside the corpus. Figure 4 provides an overview of the corpus provenance. Most source groups are fully verified and account for the majority of images, while a smaller subset consists of partially verified or intentionally opaque sources that emulate realistic unknown-provenance content encountered in deployment.

Because two of the three tracks in this study are systems capable of reading filenames or metadata (vision LLMs in particular), the corpus enforces a strict anti-leakage protocol: every model is served images under neutral, numeric filenames (001.jpg, 002.jpg, …) with no label-revealing information in the filename, path, or accompanying metadata. The descriptive, label-bearing identifiers used in the provenance registry (e.g.fake_SORA_003) are post-hoc bookkeeping keys only and are never presented to a model at evaluation time. Ground truth is held in a separate manifest file, so a correct prediction can only come from the image content itself.

We treat this corpus explicitly as a diagnostic stress test rather than a population-accuracy benchmark: with only 100 images spread across 21 fake source groups, per-group sample sizes are small, and the corpus is far too small to support training, fine-tuning, or a claim about calibrated field accuracy. Its purpose is to surface where and how each of the 36 models breaks under difficult, heterogeneous, adversarial conditions, and we return to this scope limitation explicitly in Section 6.

Figure 4: Provenance verification statistics for the fake-image corpus. Left: verification status of the 21 source groups. Right: image counts contributed by each source group.

3.2 Three-Track Evaluation Architecture↩︎

Evaluating 36 models spanning three fundamentally different deployment paradigms requires three fundamentally different integration strategies, unified by a single canonical output schema. Every model, regardless of track, is normalized into an identical result record consisting of a hard label (FAKE or REAL), a confidence score interpreted uniformly as \(P(\text{fake}) \in [0,1]\), and a success flag distinguishing a genuine verdict from an abstention or failed call. This shared schema, not any single track’s native format, is what makes commercial, LLM, and open-source outputs directly comparable.

Commercial APIs (5 models). Each of the five commercial vendors such as Neural Defend, Reality Defender, Sightengine, TruthScan, and Hive AI are queried live over HTTP for every image in the corpus, and round-trip latency is measured directly. This is the only track for which latency is reported, since it is the only track measuring a genuine, comparable, hosted-service round trip.

Vision LLMs (7 models). Seven general-purpose vision-language models such as Gemini [6], Claude Opus 4.8 [44], Qwen [45], Llama 4 Maverick [46], a Nemotron vision-language variant [47], GPT [5], and GLM-5.2 [48] are prompted zero-shot with a shared forensic verdict schema requesting a structured judgment (status, whether the image appears AI-manipulated, and a probability estimate) rather than a bespoke prompt engineered per model. Results were collected out-of-band, some via vendor API and some via browser automation, and imported into the same canonical schema by per-model adapters; this track therefore evaluates each model’s zero-shot forensic reasoning ability rather than a tuned, purpose-built detection deployment.

Open-source detectors (24 of 27 surveyed). Twenty-four independently distributed open-source detectors are run locally on GPU against the full corpus, spanning standard Hugging Face transformers classifiers, custom Hugging Face loaders with bundled inference code, and academic checkpoints paired with their original repository’s inference script. Seven of the twenty-four correspond to published academic methods: DRCT [7], RINE [8], C2P-CLIP [35], DeCLIP [81], AIDE [82], GenD-DINOv3-L [83], and the Community Forensics ViT-384 checkpoint [84], [85]. The remaining seventeen are individually distributed Hugging Face Hub community checkpoints without an associated paper: ntire2026_deepfake [86], dima806_ai_vs_real [87], bombek1_siglip_dinov2 [88], organika_sdxl [89], aidfr_real_v2 [90], nahrawy_aiornot [91], ummmaybe_vit [92], yaya_source [93], ash_flux_vit [94], king1oo1_deepguard [95], haywoodsloan_deploy [96], date3k2_vit [97], jacob_distilled [98], opensight_commfor [99], ateeqq_siglip2 [100], sadra_sdxl_face [101], and wvolf_vit [102], the last of which originates from an MSc thesis at Solent University rather than a purely anonymous upload. For every community checkpoint we cite the exact Hugging Face repository path and uploader username as recorded in the project’s own model registry; we do not independently re-verify the uploader’s identity, training data, or claimed performance beyond what that registry and the checkpoint’s own model card state. Each detector’s native label convention is mapped onto the shared \(P(\text{fake})\) scale according to its own documented semantics; label mappings are never inverted post hoc to inflate a score, so a detector that genuinely disagrees with this corpus’s notion of “fake” surfaces a below-chance ROC-AUC rather than having that disagreement silently corrected away. Three additional, published detectors from the original 27-model survey like UniversalFakeDetect [103], FatFormer [104], and NPR [105] were not integrated in this study and are excluded from the reported results; we treat this as a limitation (Section 6) rather than omit it silently.

Fairness controls applied uniformly across all three tracks. All 36 models score the identical 100-image corpus under the identical neutral-filename protocol described in Section 3.1. Failed or refused responses are marked as unsuccessful, excluded entirely from Accuracy, F1, ROC-AUC, and MCC, and surfaced separately as coverage, so that a model is neither rewarded nor penalized for declining to answer, but its abstention rate remains visible. Latency is compared only within the commercial track, since open-source inference time depends on local hardware and batching, and the imported LLM results were not uniformly timed; comparing latency across these heterogeneous execution environments would not be a fair comparison, so we do not attempt it.

3.3 Metrics↩︎

Let \(TP\), \(FP\), \(TN\), and \(FN\) denote true positives, false positives, true negatives, and false negatives, where the positive class is fake. For a model that produces \(d\) successful verdicts out of the full corpus, all threshold-dependent metrics below are computed over those \(d\) decided images only, at the standard 0.5 decision threshold on \(P(\text{fake})\).

\[\text{Accuracy} = \frac{TP + TN}{d} \label{eq:accuracy}\tag{1}\] Accuracy is the fraction of decided images classified correctly; on this corpus’s 79:21 skew it is easy to game and, as we discuss below, should never be read in isolation.

\[\text{Precision} = \frac{TP}{TP + FP} \label{eq:precision}\tag{2}\] Precision measures, among images flagged fake, what fraction genuinely are fake.

\[\text{Recall} = \frac{TP}{TP + FN} \label{eq:recall}\tag{3}\] Recall (sensitivity, or true positive rate) measures the fraction of genuine fakes a model catches.

\[\text{Specificity} = \frac{TN}{TN + FP} \label{eq:specificity}\tag{4}\] Specificity (the true negative rate) measures the fraction of the 21 authentic images correctly left alone, and is the direct measure of false-alarm behavior on this corpus’s real-image controls.

\[F_1 = \frac{2 \cdot \text{Precision} \cdot \text{Recall}}{\text{Precision} + \text{Recall}} \label{eq:f1}\tag{5}\] \(F_1\) is the harmonic mean of precision and recall; like accuracy, it can be dominated by performance on the larger (fake) class alone.

\[\text{MCC} = \frac{TP \cdot TN - FP \cdot FN}{\sqrt{(TP+FP)(TP+FN)(TN+FP)(TN+FN)}} \label{eq:mcc}\tag{6}\] The Matthews correlation coefficient ranges from \(-1\) (total disagreement) to \(+1\) (perfect prediction), with \(0\) equivalent to chance once class prevalence is accounted for. Unlike accuracy or \(F_1\), MCC only rises when a model performs well on both classes simultaneously [78], which is why it is our primary ranking metric: a degenerate “always predict fake” classifier scores approximately \(0.79\) accuracy and a deceptively high \(F_1\) on this corpus, yet an MCC of approximately zero, correctly reflecting its complete lack of real discriminative skill.

ROC-AUC, our tiebreak metric, is computed from the ranked confidence scores rather than the thresholded hard labels, and is therefore threshold-free: it equals the probability that a randomly chosen fake image receives a higher \(P(\text{fake})\) score than a randomly chosen real image, with \(0.5\) corresponding to chance-level ranking and \(1.0\) to perfect separation. Because MCC and ROC-AUC measure genuinely different things, operating-point quality at a fixed threshold versus pure ranking ability independent of any threshold, so the two can diverge sharply for the same model, and Section 5 shows that this divergence, rather than either metric’s absolute value, is the paper’s central empirical finding. Coverage is the fraction of the corpus for which a model returned a successful verdict at all. We do not perform pairwise significance testing across all \(\binom{36}{2} = 630\) model comparisons in this revision; we discuss this omission explicitly in Section 6.

4 Results↩︎

All 36 models were scored on the identical 100-image corpus (79 fake, 21 real) under the protocol of Section 3, ranked by MCC with ROC-AUC as the tiebreak criterion. ROC-AUC is reported alongside every threshold-dependent metric so that both ranking quality and operating-point performance can be interpreted from the same row. Table 1 presents the complete unified leaderboard, combining all three evaluation tracks into a single ranking rather than separating commercial APIs, vision LLMs, and open-source detectors, so that the overall distribution of performance, where approaches cluster, and where they diverge, is visible directly rather than only the strongest performer within each category. Figure 5 visualizes the complete ranking presented in Table 1. It highlights not only the ordering by MCC but also the accompanying ROC-AUC values, making it immediately apparent that several models exhibit strong disagreement between operating-point performance and ranking ability.

Figure 5: Unified leaderboard of all 36 evaluated models across the three benchmark tracks. Models are ranked by Matthews Correlation Coefficient (MCC), with ROC-AUC shown alongside to illustrate differences between operating-point quality and ranking performance.
Table 1: Unified leaderboard of all 36 evaluated models across the three benchmark tracks. Models are ranked by MCC (primary) with ROC-AUC used as the tie-break criterion. Positive class = fake.
# Model Track MCC AUC Acc. F1 Prec. Rec. Spec. Cov.
1 neural_defend [57] Commercial 0.876 0.516 0.960 0.975 0.963 0.987 0.857 0.99
2 reality_defender [53] Commercial 0.646 0.890 0.850 0.898 0.971 0.835 0.905 1.00
3 gemini [6] LLM 0.389 0.700 0.610 0.678 0.976 0.519 0.952 1.00
4 claude_opus48 [44] LLM 0.322 0.791 0.490 0.523 1.000 0.354 1.000 1.00
5 hive [54] Commercial 0.290 0.900 0.450 0.466 1.000 0.304 1.000 1.00
6 ntire2026_deepfake [86] Open-source 0.289 0.750 0.600 0.682 0.915 0.544 0.809 1.00
7 dima806_ai_vs_real [87] Open-source 0.277 0.655 0.810 0.893 0.806 1.000 0.095 1.00
8 qwen [45] LLM 0.267 0.678 0.470 0.505 0.964 0.342 0.952 1.00
9 bombek1_siglip_dinov2 [88] Open-source 0.259 0.649 0.570 0.650 0.909 0.506 0.809 1.00
10 sightengine [55] Commercial 0.258 0.702 0.410 0.404 1.000 0.253 1.000 1.00
11 organika_sdxl [89] Open-source 0.233 0.677 0.510 0.574 0.917 0.418 0.857 1.00
12 drct [7] Open-source 0.230 0.866 0.470 0.514 0.933 0.354 0.905 1.00
13 aidfr_real_v2 [90] Open-source 0.227 0.694 0.670 0.769 0.859 0.696 0.571 1.00
14 nahrawy_aiornot [91] Open-source 0.211 0.602 0.520 0.593 0.897 0.443 0.809 1.00
15 ummmaybe_vit [92] Open-source 0.201 0.761 0.510 0.581 0.895 0.430 0.809 1.00
16 llama4_maverick [46] LLM 0.199 0.533 0.340 0.283 1.000 0.165 1.000 1.00
17 nemotron_nano_vl [47] LLM 0.196 0.632 0.394 0.374 0.944 0.233 0.952 0.94
18 rine [8] Open-source 0.187 0.737 0.380 0.367 0.947 0.228 0.952 1.00
19 gpt_openai [5] LLM 0.135 0.622 0.370 0.364 0.900 0.228 0.905 1.00
20 commfor_vit384 [84] Open-source 0.123 0.620 0.550 0.651 0.840 0.532 0.619 1.00
21 yaya_source [93] Open-source 0.075 0.482 0.730 0.836 0.802 0.873 0.191 1.00
22 ash_flux_vit [94] Open-source 0.072 0.650 0.500 0.597 0.822 0.468 0.619 1.00
23 king1oo1_deepguard [95] Open-source 0.053 0.459 0.510 0.614 0.812 0.494 0.571 1.00
24 haywoodsloan_deploy [96] Open-source 0.038 0.507 0.410 0.469 0.812 0.329 0.714 1.00
25 declip [81] Open-source 0.000 0.275 0.210 0.000 0.000 0.000 1.000 1.00
26 date3k2_vit [97] Open-source \(-\)0.010 0.432 0.340 0.353 0.783 0.228 0.762 1.00
27 c2p_clip [35] Open-source \(-\)0.037 0.385 0.370 0.422 0.767 0.291 0.667 1.00
28 gend_dinov3_l [83] Open-source \(-\)0.043 0.597 0.340 0.365 0.760 0.240 0.714 1.00
29 jacob_distilled [98] Open-source \(-\)0.062 0.439 0.400 0.483 0.757 0.354 0.571 1.00
30 opensight_commfor [99] Open-source \(-\)0.100 0.517 0.530 0.667 0.758 0.595 0.286 1.00
31 aide [82] Open-source \(-\)0.119 0.392 0.400 0.500 0.732 0.380 0.476 1.00
32 truthscan [56] Commercial \(-\)0.130 0.915 0.730 0.844 0.777 0.924 0.000 1.00
33 zai_glm52 [48] LLM \(-\)0.152 0.470 0.710 0.830 0.772 0.899 0.000 1.00
34 ateeqq_siglip2 [100] Open-source \(-\)0.187 0.536 0.620 0.762 0.753 0.772 0.048 1.00
35 sadra_sdxl_face [101] Open-source \(-\)0.260 0.282 0.250 0.257 0.591 0.165 0.571 1.00
36 wvolf_vit [102] Open-source \(-\)0.428 0.168 0.220 0.278 0.517 0.190 0.333 1.00

3pt

4.1 Overview of the Unified Leaderboard↩︎

Table 1 makes several qualitative patterns visible before any per-track breakdown is needed. The top of the table is dominated by the two commercial APIs that decide every image confidently and consistently, and the gap between this leading pair and the rest of the field is the widest single gap anywhere in the ranking, suggesting these two systems are doing something structurally different from every other model rather than merely performing incrementally better. Immediately below them, the field becomes a genuine mixture of all three paradigms rather than a clean paradigm-by-paradigm block: strong vision LLMs, the best open-source rankers, and the remaining commercial APIs interleave closely, which is itself informative, since it means paradigm membership alone does not reliably predict where a given model lands once the leading pair is set aside.

The bottom of the table tells a different and equally informative story. Every model with a negative or near-zero score is an open-source detector, a vision LLM, or a commercial API whose default decision rule collapses toward predicting a single class almost regardless of the image it is shown; several of these models achieve superficially reasonable accuracy or F1 figures despite this collapse, which is exactly the pathology the ranking metric is designed to expose rather than reward. Reading the table column by column rather than row by row reinforces this: models that look strong on accuracy or F1 do not always look strong on specificity or on ranking power, and the ordering implied by any single column frequently disagrees with the ordering implied by another. No single column of this table should be read as the leaderboard on its own; the ranking metric is deliberately chosen to resist exactly this kind of single-column overinterpretation, and Section 5 unpacks the most consequential instances of that disagreement in detail.

4.2 Per-Track Summary↩︎

Aggregating to the track level confirms the ordering the full leaderboard already suggests: by typical operating-point quality, commercial APIs lead comfortably, the vision-LLM field occupies a middle tier, and the open-source track’s central tendency trails behind both, consistent with most of these detectors having been trained before, or without exposure to, the modern generator mix this corpus specifically targets. Ranking power complicates this picture rather than confirming it. The strongest vision LLM does not reach the ranking power of the single best open-source detector, even though the open-source track’s typical performance is by far the weakest of the three; a single well-designed academic method can out-rank an entire tier of expensive, general-purpose foundation models on pure class separation, even while the median detector in that same open-source track performs far worse than either alternative paradigm. The commercial track retains the single strongest ranking-power result overall, but, as Section 5 shows, that result does not translate into the corresponding operating-point result for the same model, which is the paper’s central finding rather than an incidental detail of this table. Table 2 aggregates the leaderboard into paradigm-level statistics, reporting the strongest and median performance within each evaluation track. This higher-level view highlights the overall performance differences between commercial APIs, vision LLMs, and open-source detectors while reducing the complexity of the full leaderboard.

Table 2: Per-track summary. Models = count evaluated; Coverage = mean across the track’s models.
Track Models Best MCC Median MCC Best AUC Median AUC Mean Cov.
Commercial API 5 0.876 (neural_defend) 0.290 0.915 (truthscan) 0.890 100%
Vision LLM 7 0.389 (gemini) 0.199 0.791 (claude_opus48) 0.632 99%
Open-source 24 0.289 (ntire2026) 0.062 0.866 (drct) 0.566 100%

Figure 6 summarizes the distribution of MCC values within each benchmark track. Commercial APIs exhibit the highest median operating-point quality, whereas the open-source ecosystem shows substantially larger variability, indicating that performance differences within that paradigm are considerably greater than between the commercial offerings.

Figure 6: Distribution of MCC values across the three benchmark tracks. Commercial APIs show the highest median performance, while open-source detectors exhibit the widest performance variation.

4.3 Latency (Commercial APIs Only)↩︎

The five commercial providers span a response-time range wide enough to have direct deployment consequences independent of accuracy. The fastest provider responds quickly enough for genuinely interactive, real-time use, while the slowest is an order of magnitude too slow for any synchronous flow and is realistically suited only to asynchronous, batch-style pipelines where an extra delay per item is immaterial. This spread does not track accuracy or ranking power in any simple way: the provider with the strongest operating-point quality in the entire study is also comfortably the fastest, while the provider with the strongest ranking power in the study is among the slowest, so a procurement decision optimizing for either accuracy or ranking power alone would arrive at very different latency consequences depending on which of the two it optimized for. Table 3 summarizes the average inference latency of the five commercial APIs evaluated in this study. Since latency depends heavily on execution environment, comparisons are restricted to the commercial track, where all services were measured under a consistent evaluation setup.

Table 3: Mean latency, commercial APIs only. Latency is not comparable across tracks (Section [sec:sec:methodology]).
Provider Mean latency
Neural Defend 175 ms
Sightengine 1.1 s
Hive AI 1.7 s
TruthScan 5.3 s
Reality Defender 21.9 s

Figure 7 complements Table 3 by illustrating both the latency distribution of the commercial APIs and its relationship with operating-point quality. The figure shows that low inference latency does not necessarily require sacrificing detection performance, as the fastest provider also achieves the highest MCC.

Figure 7: Latency comparison of the five commercial APIs. Left: mean inference latency on a logarithmic scale. Right: latency versus MCC, illustrating that the fastest API also achieves the highest operating-point performance.

5 Discussion↩︎

Figure 8: Sensitivity–specificity plane for all evaluated models. Models near the bottom-right corner correctly identify most fake images but fail to preserve specificity by incorrectly flagging genuine images as fake.

Figure 8 illustrates the trade-off between sensitivity and specificity across all evaluated detectors. Several models cluster near perfect recall but very low specificity, revealing a strong tendency to classify nearly every image as fake, whereas the strongest detectors maintain a substantially better balance between detecting manipulations and avoiding false alarms. This distribution reinforces that high recall alone is insufficient for deployment, since practical forensic systems must identify synthetic media without overwhelming users with false alarms on genuine content.

The plane divides the field into three practically distinct populations rather than a single continuum. A small cluster in the upper-right, occupied by Neural Defend and Reality Defender, achieves both high recall and high specificity simultaneously; these are the only two models in the entire study that a deployment could plausibly trust without a compensating human-review step, since they rarely miss a fake and rarely flag a genuine photograph. A second, much larger cluster sits along the top edge at high specificity but with recall spread widely from near-zero to moderate; this is where most open-source detectors and several vision LLMs land, reflecting models that are conservative by default rather than genuinely discriminating, a pattern consistent with the recall-versus-specificity trade-off already visible in the per-model metrics of Table 1. A third population collapses toward the bottom-right corner, combining high recall with specificity near zero; dima806_ai_vs_real, truthscan, and zai_glm52 occupy this region, and each achieves its recall not through genuine discrimination but by defaulting toward “fake” on nearly every input, the same base-rate exploitation this paper returns to below. No model in the study occupies the bottom-left corner, meaning nothing evaluated here is simultaneously bad at catching fakes and bad at preserving real images; every detector fails, when it fails, in one of these two specific, interpretable directions rather than randomly.

5.0.0.1 A Clear Paradigm Ordering, With a Genuine Exception:

The headline ordering commercial APIs ahead of vision LLMs ahead of the open-source median is unsurprising on its face: commercial vendors have direct financial incentive to optimize detection accuracy specifically, vision LLMs are prompted zero-shot for a task they were never trained on, and most publicly distributed open-source detectors were trained against generator families that predate the modern, adversarial mix this corpus targets. What is not unsurprising is that this ordering is a paradigm-level statement about typical performance, not a universal one. DRCT, a single open-source ranker built on contrastive reconstruction training [7], reaches ROC-AUC 0.866, ahead of every vision LLM in the study including the strongest, Claude Opus 4.8, at 0.791. A practitioner who dismissed the entire open-source track on the basis of its poor median performance would have missed the one detector in that track genuinely competitive with, and by this metric better than, general-purpose multimodal LLMs costing far more per query to run.

5.0.0.2 MCC and ROC-AUC Diverge, and the Divergence Is the Finding:

The single most consequential pattern in these results cuts across all three tracks rather than belonging to any one of them: a model’s ranking power and its operating-point quality can point in opposite directions. TruthScan posts the highest ROC-AUC in the entire study (0.915) yet is the only commercial API with a negative MCC (\(-0.130\)), trailing all four of its commercial peers (0.876, 0.646, 0.290, 0.258), because its shipped default threshold flags essentially every image, including all 21 real controls, as fake: its underlying discriminative signal is excellent, but its calibration at the operating point a user actually receives is not. Neural Defend shows the mirror-image pattern, the best MCC by a wide margin (0.876) alongside a near-chance ROC-AUC (0.516), making excellent hard-label decisions from confidence scores that themselves barely separate the two classes. Read together, ROC-AUC and MCC answer different questions, whether a model’s scores rank fakes above reals in principle versus whether its default decision agrees with ground truth and a benchmark reporting only one will systematically mischaracterize one of these two real failure and success modes.

Figure 9: Relationship between operating-point quality (MCC) and threshold-independent ranking ability (ROC-AUC). Several detectors exhibit strong disagreement between the two metrics, demonstrating that high ranking performance does not necessarily imply good default-threshold decisions.

Figure 9 makes this concrete: reading it as four quadrants around AUC \(=0.5\) and MCC \(=0\), the upper-right quadrant holds the bulk of the field, where the two metrics agree and move together, the ordinary case this adversarial corpus is designed to make less common than on an easier benchmark. Neural Defend and TruthScan anchor the two diagonal exceptions that matter most for this paper’s argument, while the lower-left quadrant, where both metrics agree a model is weak, is populated almost entirely by open-source detectors.

Figure 10: Confusion composition for representative detectors. Each stacked bar shows how the 100 predictions are distributed among true positives, true negatives, false negatives, and false positives. The figure illustrates why models with similar accuracy can obtain substantially different MCC values, highlighting contrasting operating-point behaviour across representative commercial APIs, vision LLMs, and open-source detectors.

Figure 10 shows why: models with superficially similar accuracy produce markedly different confusion compositions. Neural Defend and Reality Defender are dominated by true positives with only a thin false-positive sliver; dima806_ai_vs_real, TruthScan, and zai_glm52 show almost no true-negative bar at all, the base-rate exploitation this paper returns to below; and DRCT’s false-negative bar is nearly as large as a low-recall vision LLM’s, the visual cost of the same conservative default threshold that suppresses its MCC despite ranking fakes above reals better than any other open-source detector in the study. No single bar or metric predicts MCC in isolation; it is the balance across all four confusion cells that the ranking metric is built to capture.

5.0.0.3 The Base-Rate Trap Is Not Hypothetical:

Because the corpus is 79% fake by design, a model that predicts fake indiscriminately scores deceptively well on accuracy and F1 while carrying zero real discriminative skill. This is not a theoretical caveat: zai_glm52 is the concrete instance, posting 71.0% accuracy and F1 of 0.830 while its specificity is exactly zero (it flags all 21 real images as fake) and its MCC is negative (\(-0.152\)). TruthScan, discussed above, exhibits the identical pathology in the commercial track. Any evaluation of these systems that reported accuracy or F1 without also reporting specificity and MCC would have rated both models as reasonable performers; neither is.

5.0.0.4 Scope of These Claims:

Every result in this paper is a point measurement on one fixed, deliberately adversarial, 100-image corpus, evaluated in a single run per model. We do not compute confidence intervals or perform pairwise significance testing across the \(\binom{36}{2} = 630\) possible model comparisons in this revision, both because the corpus is too small to support many of the resulting per-comparison tests meaningfully and because a systematic multiple-comparisons correction across 630 tests was out of scope for this study; we return to this explicitly as future work in Section 6. The vision-LLM results in particular were collected out-of-band rather than through a uniformly controlled live harness, so that track’s numbers should be read as a generic zero-shot baseline rather than a tuned, purpose-built deployment. We interpret every number in this paper as a diagnostic signal on a hard, curated stress test, not as an estimate of population-level accuracy in deployment.

6 Limitations and Future Work↩︎

Several limitations bound the conclusions of this study, each paired with the extension it motivates. First, the corpus is small (100 images) and imbalanced (79:21), limiting confidence in individual metrics, while the smallest per-generator groups are too small for stable rate estimates; a larger, more balanced corpus would strengthen every reported estimate. Second, every result reflects a single run per model, without multiple seeds, bootstrap resampling, confidence intervals, or significance testing across the 630 possible pairwise comparisons; adding bootstrap confidence intervals, multi-seed runs, and a principled subset of statistical comparisons is a direct extension of this work. Third, the vision-LLM results were collected out-of-band, some via vendor APIs and others through browser automation, rather than through the uniformly controlled live harness used for the commercial track, making that track less reproducible. Fourth, provenance for 6 of the 21 fake source groups remains partial or unverified, and three open-source detectors from the original 27-model survey were not integrated in this study. Finally, the generator mix reflects a 2026 snapshot and will inevitably evolve as new generators and detectors emerge.

Future work includes expanding the corpus while preserving its adversarial, edge-case-heavy design; adding bootstrap confidence intervals and multi-seed runs for greater statistical rigor; completing the full 27-model open-source survey by resolving the three deferred detectors; producing per-generator-family analyses to identify where each paradigm fails; and investigating calibrated, per-model decision thresholds rather than shipped defaults, which Section 5 shows can substantially change operating-point quality without affecting underlying discriminative ability.

7 Conclusion↩︎

This paper set out to answer a question no single prior evaluation could: given a detection budget, does paying for a commercial API, prompting a general-purpose vision-language model already available, or self-hosting a free open-source detector actually buy meaningfully different capability against modern, adversarial synthetic media? We built VendorBench-100, a cross-paradigm benchmark evaluating 36 models including 5 commercial APIs, 7 zero-shot vision LLMs, and 24 open-source detectors on a single, deliberately hard 100-image corpus under one shared normalization schema, one abstention policy, and one ranking framework. The headline answer is that paradigm matters on average: commercial APIs achieve the strongest typical performance, vision LLMs occupy a middle tier despite never being trained for this task, and most open-source detectors trail on this adversarial generator mix. Yet this average conceals important exceptions, including DRCT, which outperforms every vision LLM on ranking ability, demonstrating that carefully designed academic detectors remain competitive despite the rapid evolution of proprietary detection systems.

The more consequential result is that ranking power and operating-point quality are fundamentally different properties of a detector. Models with excellent ROC-AUC can still produce unreliable default decisions, while models with modest ranking ability can achieve highly reliable operating-point performance. This divergence appears across all three paradigms and demonstrates that reporting only one metric can misrepresent real deployment behaviour. For a practitioner, the actionable consequence is concrete: any procurement or deployment decision should weigh both metrics side by side rather than trust a single leaderboard score, since either one in isolation can make a genuinely strong detector look weak, or a genuinely unreliable one look strong, depending on which axis is omitted. By releasing the complete evaluation harness, per-image evidence, and aggregated results, we provide a reproducible foundation for future benchmark development and more rigorous cross-paradigm comparisons. We believe this evaluation philosophy will encourage future benchmarks to prioritize fair, standardized, and practically meaningful comparisons over isolated leaderboard performance alone.

Beyond the specific 36 models evaluated here, VendorBench-100 represents a shift toward benchmarking paradigm choice itself rather than individual detectors in isolation. As commercial services evolve behind proprietary interfaces, vision-language models continue to expand beyond their original purpose, and open-source checkpoints proliferate rapidly, meaningful evaluation must remain unified, reproducible, and continuously updated. We hope the adversarial corpus design, shared normalization protocol, and complementary use of MCC and ROC-AUC become standard practice for future deepfake benchmarks, while larger corpora, repeated evaluations, statistical significance testing, and video-based extensions provide an increasingly reliable basis for selecting trustworthy detection systems.

References↩︎

[1]
H. Chen and K. Magramo, “Finance worker pays out $25 million after video call with deepfake ‘chief financial officer’.” CNN, Feb. 04, 2024, [Online]. Available: https://www.cnn.com/2024/02/04/asia/deepfake-cfo-scam-hong-kong-intl-hnk.
[2]
R. Umbach, N. Henry, G. Beard, and C. M. Berryessa, “Non-consensual synthetic intimate imagery: Prevalence, attitudes, and knowledge in 10 countries,” in Proceedings of the CHI conference on human factors in computing systems (CHI ’24), 2024, pp. 1–20, doi: 10.1145/3613904.3642382.
[3]
Internet Watch Foundation, “How AI is being abused to create child sexual abuse imagery,” Oct. 2023. [Online]. Available: https://www.iwf.org.uk/media/q4zll2ya/iwf-ai-csam-report_public-oct23v1.pdf.
[4]
V. Bakir et al., “Misinformation and elections: Provisional findings from four countries in 2024,” London School of Economics; Political Science, 2025. [Online]. Available: https://www.lse.ac.uk/media-and-communications/assets/documents/Misinformation-and-Elections-Report-FINAL.pdf.
[5]
OpenAI, “GPT-4 technical report,” OpenAI, 2024. [Online]. Available: https://arxiv.org/abs/2303.08774.
[6]
Gemini Team, Google, “Gemini: A family of highly capable multimodal models,” Google DeepMind, 2024. [Online]. Available: https://arxiv.org/abs/2312.11805.
[7]
B. Chen, J. Zeng, J. Yang, and R. Yang, ICML 2024 Spotlight. Code: https://github.com/beibuwandeluori/DRCT“DRCT: Diffusion reconstruction contrastive training towards universal detection of diffusion generated images,” in Proceedings of the 41st international conference on machine learning (ICML), 2024.
[8]
C. Koutlis and S. Papadopoulos, arXiv:2402.19091. Code: https://github.com/mever-team/rine“Leveraging representations from intermediate encoder-blocks for synthetic image detection,” in Proceedings of the european conference on computer vision (ECCV), 2024.
[9]
N. A. Chandra et al., “Deepfake-eval-2024: A multi-modal in-the-wild benchmark of deepfakes circulated in 2024.” 2025, [Online]. Available: https://arxiv.org/abs/2503.02857.
[10]
T. Wang, X. Liao, K. P. Chow, X. Lin, and Y. Wang, “Deepfake detection: A comprehensive survey from the reliability perspective.” 2022, [Online]. Available: https://arxiv.org/abs/2211.10881.
[11]
A. Rössler, D. Cozzolino, L. Verdoliva, C. Riess, J. Thies, and M. Nießner, FaceForensics++: Learning to detect manipulated facial images,” in Proceedings of the IEEE/CVF international conference on computer vision (ICCV), 2019, pp. 1–11, doi: 10.1109/ICCV.2019.00009.
[12]
M. Zhu et al., GenImage: A million-scale benchmark for detecting AI-generated image,” in Advances in neural information processing systems (NeurIPS), 2023, [Online]. Available: https://arxiv.org/abs/2306.08571.
[13]
H. Ajder et al., “The state of deepfakes: Landscape, threats, and impact,” Deeptrace (now Sensity AI), Oct. 2019. [Online]. Available: https://regmedia.co.uk/2019/10/08/deepfake_report.pdf.
[14]
Home Security Heroes, “The 2023 state of deepfakes: Realities, threats, and impact.” 2023, [Online]. Available: https://www.homesecurityheroes.com/state-of-deepfakes/assets/pdf/state-of-deepfake-infographic-2023.pdf.
[15]
Financial Crimes Enforcement Network (FinCEN), “FinCEN alert on fraud schemes involving deepfake media targeting financial institutions,” U.S. Department of the Treasury, FIN-2024-Alert004, Nov. 2024. [Online]. Available: https://www.fincen.gov/system/files/shared/FinCEN-Alert-DeepFakes-Alert508FINAL.pdf.
[16]
World Economic Forum, “Global cybersecurity outlook 2025,” 2025. [Online]. Available: https://reports.weforum.org/docs/WEF_Global_Cybersecurity_Outlook_2025.pdf.
[17]
M. Negreiro, “Children and deepfakes,” European Parliamentary Research Service, PE 775.855, Jul. 2025. [Online]. Available: https://www.europarl.europa.eu/RegData/etudes/BRIE/2025/775855/EPRS_BRI(2025)775855_EN.pdf.
[18]
World Economic Forum Cybercrime Atlas, “Unmasking cybercrime: Strengthening digital identity verification against deepfakes.” Jan. 08, 2026, [Online]. Available: https://www.infosecurity-magazine.com/news/wef-deepfake-faceswapping-security/.
[19]
I. Goodfellow et al., “Generative adversarial nets,” in Advances in neural information processing systems, 2014, vol. 27, pp. 2672–2680, [Online]. Available: https://arxiv.org/abs/1406.2661.
[20]
T. Karras, S. Laine, and T. Aila, “A style-based generator architecture for generative adversarial networks,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2019, pp. 4401–4410, [Online]. Available: https://arxiv.org/abs/1812.04948.
[21]
T. Karras, S. Laine, M. Aittala, J. Hellsten, J. Lehtinen, and T. Aila, “Analyzing and improving the image quality of StyleGAN,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2020, pp. 8110–8119, [Online]. Available: https://arxiv.org/abs/1912.04958.
[22]
J. Ho, A. N. Jain, and P. Abbeel, “Denoising diffusion probabilistic models,” in Advances in neural information processing systems, 2020, vol. 33, pp. 6840–6851, [Online]. Available: https://arxiv.org/abs/2006.11239.
[23]
R. Rombach, A. Blattmann, D. Lorenz, P. Esser, and B. Ommer, “High-resolution image synthesis with latent diffusion models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2022, pp. 10684–10695, doi: 10.1109/CVPR52688.2022.01042.
[24]
I. Korshunova, W. Shi, J. Dambre, and L. Theis, “Fast face-swap using convolutional neural networks,” in Proceedings of the IEEE international conference on computer vision (ICCV), Oct. 2017, pp. 3677–3685, doi: 10.1109/ICCV.2017.397.
[25]
J. Thies, M. Zollhöfer, M. Stamminger, C. Theobalt, and M. Nießner, “Face2Face: Real-time face capture and reenactment of RGB videos,” in Proceedings of the IEEE conference on computer vision and pattern recognition (CVPR), 2016, pp. 2387–2395, doi: 10.1109/CVPR.2016.262.
[26]
J. Thies, M. Zollhöfer, and M. Nießner, “Deferred neural rendering: Image synthesis using neural textures,” ACM Transactions on Graphics (TOG), vol. 38, no. 4, pp. 66:1–66:12, 2019, doi: 10.1145/3306346.3323035.
[27]
P. Korshunov and S. Marcel, “DeepFakes: A new threat to face recognition? Assessment and detection,” arXiv preprint arXiv:1812.08685, 2018, doi: 10.48550/arXiv.1812.08685.
[28]
S.-Y. Wang, O. Wang, R. Zhang, A. Owens, and A. A. Efros, CNN-Generated Images Are Surprisingly Easy to Spot... for Now,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2020, pp. 8695–8704, [Online]. Available: https://arxiv.org/abs/1912.11035.
[29]
J. Frank, T. Eisenhofer, L. Schönherr, A. Fischer, D. Kolossa, and T. Holz, “Leveraging frequency analysis for deep fake image recognition,” in Proceedings of the 37th international conference on machine learning (ICML), 2020, vol. 119, pp. 3247–3258, [Online]. Available: https://arxiv.org/abs/2003.08685.
[30]
R. Durall, M. Keuper, and J. Keuper, “Watch your up-convolution: CNN based generative deep neural networks are failing to reproduce spectral distributions,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2020, pp. 7893–7902, [Online]. Available: https://arxiv.org/abs/2003.01826.
[31]
U. Ojha, Y. Li, and Y. J. Lee, “Towards universal fake image detectors that generalize across generative models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2023, pp. 24480–24489, [Online]. Available: https://arxiv.org/abs/2302.10174.
[32]
D. Cozzolino, G. Poggi, R. Corvi, M. Nießner, and L. Verdoliva, “Raising the bar of AI-generated image detection with CLIP,” arXiv preprint arXiv:2312.00195, 2023, [Online]. Available: https://arxiv.org/abs/2312.00195.
[33]
Z. Wang et al., DIRE for diffusion-generated image detection,” arXiv preprint arXiv:2303.09295, 2023, [Online]. Available: https://arxiv.org/abs/2303.09295.
[34]
J. Ricker, D. Lukovnikov, and A. Fischer, AEROBLADE: Training-free detection of latent diffusion images using autoencoder reconstruction error,” arXiv preprint arXiv:2401.17879, 2024, [Online]. Available: https://arxiv.org/abs/2401.17879.
[35]
C. Tan, Y. Zhao, S. Wei, G. Gu, P. Liu, and Y. Wei, AAAI 2025. Code: https://github.com/chuangchuangtan/C2P-CLIP-DeepfakeDetection“C2P-CLIP: Injecting category common prompt in CLIP to enhance generalization in deepfake detection,” arXiv preprint arXiv:2408.09647, 2024.
[36]
A. Rössler, D. Cozzolino, L. Verdoliva, C. Riess, J. Thies, and M. Nießner, FaceForensics: A large-scale video dataset for forgery detection in human faces,” in arXiv preprint arXiv:1803.09179, 2018, [Online]. Available: https://arxiv.org/abs/1803.09179.
[37]
B. Dolhansky, R. Howes, B. Pflaum, N. Baram, and C. Canton Ferrer, “The Deepfake detection challenge (DFDC) preview dataset,” arXiv preprint arXiv:1910.08854, 2019, doi: 10.48550/arXiv.1910.08854.
[38]
B. Dolhansky, R. Howes, B. Pflaum, N. Baram, C. Canton Ferrer, et al., “The DeepFake detection challenge (DFDC) dataset,” arXiv preprint arXiv:2006.07397, 2020, doi: 10.48550/arXiv.2006.07397.
[39]
B. Zi, M. Chang, J. Chen, X. Ma, and Y.-G. Jiang, WildDeepfake: A challenging real-world dataset for deepfake detection,” in Proceedings of the 28th ACM international conference on multimedia, 2020, pp. 2382–2390, [Online]. Available: https://arxiv.org/abs/2101.01456.
[40]
Y. Li, X. Yang, P. Sun, H. Qi, and S. Lyu, Celeb-DF: A large-scale challenging dataset for DeepFake forensics,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2020, pp. 3204–3213, doi: 10.1109/CVPR42600.2020.00327.
[41]
Y. He et al., ForgeryNet: A versatile benchmark for comprehensive forgery analysis,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2021, pp. 4360–4369, doi: 10.1109/CVPR46437.2021.00434.
[42]
Z. Yan et al., DF40: Toward next-generation deepfake detection,” in Advances in neural information processing systems (NeurIPS) track on datasets and benchmarks, 2024, [Online]. Available: https://arxiv.org/abs/2406.13495.
[43]
Z. Yan, Y. Zhang, X. Yuan, S. Lyu, and B. Wu, “DeepfakeBench: A comprehensive benchmark of deepfake detection,” in Advances in neural information processing systems (NeurIPS) track on datasets and benchmarks, 2023, [Online]. Available: https://arxiv.org/abs/2307.01426.
[44]
Anthropic, Model-card reference for claude_opus48; exact model-card URL not independently verified.“Claude opus 4.8 model card.” 2026, [Online]. Available: https://www.anthropic.com/claude.
[45]
J. Bai et al., Cited as the Qwen vision-language family anchor; the exact Qwen version used for qwen is not specified in the evaluation harness.“Qwen-VL: A versatile vision-language model for understanding, localization, text reading, and beyond,” arXiv preprint arXiv:2308.12966, 2023.
[46]
Meta AI, Reference for llama4_maverick; blog/model-card URL not independently verified.“Llama 4: Multimodal intelligence, openly available.” 2025, [Online]. Available: https://ai.meta.com/blog/llama-4-multimodal-intelligence/.
[47]
NVIDIA, Reference for nemotron_nano_vl; exact model variant not independently verified.“Nemotron: NVIDIA’s family of open foundation models.” 2024, [Online]. Available: https://developer.nvidia.com/nemotron.
[48]
Zhipu AI, Reference for zai_glm52; exact GLM-5.2 release details not independently verified.“GLM: General language model family (zhipu AI / z.ai).” 2024, [Online]. Available: https://www.zhipuai.cn/.
[49]
Coalition for Content Provenance and Authenticity, C2PA technical specification,” C2PA, Technical Specification 1.0, 2021. [Online]. Available: https://spec.c2pa.org/specifications/specifications/1.0/specs/C2PA_Specification.html.
[50]
Coalition for Content Provenance and Authenticity (C2PA), “Content credentials: C2PA technical specification.” Technical specification v2.4, 2024, [Online]. Available: https://spec.c2pa.org/specifications/specifications/2.4/specs/C2PA_Specification.html.
[51]
S. Dathathri et al., “Scalable watermarking for identifying large language model outputs,” Nature, vol. 634, no. 8035, pp. 818–823, 2024, doi: 10.1038/s41586-024-08025-4.
[52]
S. Gowal et al., “SynthID-image: Image watermarking at internet scale,” arXiv preprint arXiv:2510.09263, 2025, doi: 10.48550/arXiv.2510.09263.
[53]
Reality Defender, “RealAPI product documentation.” https://www.realitydefender.com/product/realapi, 2024.
[54]
Hive AI, “AI-generated image and video detection documentation.” https://docs.thehive.ai/docs/ai-image-and-video-detection, 2024.
[55]
Sightengine, “AI-generated image detection API documentation.” https://sightengine.com/docs/ai-generated-image-detection, 2024.
[56]
TruthScan, “AI image detection API documentation.” https://truthscan.com/truthscan-ai-image-detection-api-documentation, 2024.
[57]
Neural Defend, “AI generated image detection (DeepScan API).” https://neuraldefend.gitbook.io/neural-defend/ai-generated-image-detection, 2024.
[58]
Sensity AI, “Deepfake detection platform.” https://sensity.ai/, 2024.
[59]
Illuminarty, “AI generated image detection.” https://www.illuminarty.ai/en/image/ai-generated-image-detection.html, 2024.
[60]
AI or Not, “Image detection API reference.” https://docs.aiornot.com/api-reference/reports-by-modality/image.md, 2024.
[61]
Intel Corporation, “Intel introduces real-time deepfake detector (FakeCatcher).” https://newsroom.intel.com/artificial-intelligence/intel-introduces-real-time-deepfake-detector, 2022.
[62]
B. Li, J. Sun, C. M. Poskitt, and X. Wang, “How generalizable are deepfake image detectors? An empirical study.” 2023, [Online]. Available: https://arxiv.org/abs/2308.04177.
[63]
Y. Lu and T. Ebrahimi, “Assessment framework for deepfake detection in real-world situations.” 2023, [Online]. Available: https://arxiv.org/abs/2304.06125.
[64]
P. Grommelt, L. Weiss, F.-J. Pfreundt, and J. Keuper, “Fake or JPEG? Revealing common biases in generated image detection datasets.” 2024, [Online]. Available: https://arxiv.org/abs/2403.17608.
[65]
S. Yan et al., “A sanity check for AI-generated image detection,” in International conference on learning representations (ICLR), 2025, [Online]. Available: https://arxiv.org/abs/2406.19435.
[66]
F. Li et al., “The adversarial AI-Art: Understanding, generation, detection, and benchmarking.” https://arxiv.org/abs/2404.14581, 2024.
[67]
A. Y. J. Ha, J. Passananti, et al., “Organic or diffused: Can we distinguish human art from AI-generated images?” https://doi.org/10.1145/3658644.3670306, 2024.
[68]
N. I. Chakraborty et al., “The visual counter turing test (VCT2): A benchmark for evaluating AI-Generated image detection and the visual AI index.” https://arxiv.org/abs/2411.16754, 2024.
[69]
L. Pellegrini et al., “AI-GenBench: A new ongoing benchmark for AI-generated image detection,” in 2025 international joint conference on neural networks (IJCNN), 2025, pp. 1–9, doi: 10.1109/IJCNN64981.2025.11228377.
[70]
A. S. Iufereva and P. Mozelius, “Deepfake detection: Human performance versus AI tools – a comparison of accuracy and effectiveness,” in Proceedings of the international conference on AI research (ICAIR), 2025, doi: 10.34190/icair.5.1.4070.
[71]
S. Hussain, P. Neekhara, M. Jere, F. Koushanfar, and J. McAuley, “Adversarial deepfakes: Evaluating vulnerability of deepfake detectors to adversarial examples,” in IEEE winter conference on applications of computer vision (WACV), 2021, pp. 3348–3357, doi: 10.1109/wacv48630.2021.00339.
[72]
C. K. Chow, “On optimum recognition error and reject tradeoff,” IEEE Transactions on Information Theory, vol. 16, no. 1, pp. 41–46, 1970, doi: 10.1109/TIT.1970.1054406.
[73]
R. El-Yaniv and Y. Wiener, “On the foundations of noise-free selective classification,” Journal of Machine Learning Research, vol. 11, no. 53, pp. 1605–1641, 2010, [Online]. Available: https://www.jmlr.org/papers/v11/el-yaniv10a.html.
[74]
Y. Geifman and R. El-Yaniv, “Selective classification for deep neural networks,” in Advances in neural information processing systems (NeurIPS), 2017, vol. 30, [Online]. Available: https://arxiv.org/abs/1705.08500.
[75]
Y. Geifman and R. El-Yaniv, SelectiveNet: A deep neural network with an integrated reject option,” in Proceedings of the 36th international conference on machine learning (ICML), 2019, pp. 2151–2159, [Online]. Available: https://arxiv.org/abs/1901.09192.
[76]
B. Zadrozny, “Learning and evaluating classifiers under sample selection bias,” in Proceedings of the 21st international conference on machine learning (ICML), 2004, pp. 903–910, doi: 10.1145/1015330.1015425.
[77]
Y. J. Choe, A. Gangrade, and A. Ramdas, “Counterfactually comparing abstaining classifiers,” in Advances in neural information processing systems (NeurIPS), 2023, vol. 36, [Online]. Available: https://arxiv.org/abs/2305.10564.
[78]
D. Chicco and G. Jurman, “The advantages of the Matthews correlation coefficient (MCC) over F1 score and accuracy in binary classification evaluation,” BMC Genomics, vol. 21, no. 1, p. 6, 2020, doi: 10.1186/s12864-019-6413-7.
[79]
K. H. Brodersen, C. S. Ong, K. E. Stephan, and J. M. Buhmann, “The balanced accuracy and its posterior distribution,” in Proceedings of the 20th international conference on pattern recognition (ICPR), 2010, pp. 3121–3124, doi: 10.1109/ICPR.2010.764.
[80]
M. Sokolova and G. Lapalme, “A systematic analysis of performance measures for classification tasks,” Information Processing & Management, vol. 45, no. 4, pp. 427–437, 2009, doi: 10.1016/j.ipm.2009.03.002.
[81]
Bitdefender, WACV 2025 (Bitdefender). Code: https://github.com/bit-ml/DeCLIP. Full author list not independently re-verified; cited via project registry.“DeCLIP: Decoupled learning for detection and localization of deepfakes,” in Proceedings of the IEEE/CVF winter conference on applications of computer vision (WACV), 2025.
[82]
AIDE authors, ICLR 2025. arXiv:2406.19435. Hugging Face: https://huggingface.co/meet4150/AIDE_image_detector. Full author list not independently re-verified; cited via project registry.“AIDE: Frequency-forensic and semantic hybrid detection of AI-generated images,” in Proceedings of the international conference on learning representations (ICLR), 2025.
[83]
Yermandy, WACV 2026. arXiv:2508.06248. Code: https://github.com/yermandy/GenD_DINOv3_L. Author list per project registry only; not independently re-verified against the published paper.“GenD: Generalizable deepfake detection with DINOv3-large,” in Proceedings of the IEEE/CVF winter conference on applications of computer vision (WACV), 2026.
[84]
OwensLab, University of Michigan, arXiv:2411.04125. Model (ViT-384 variant used here): https://huggingface.co/OwensLab/commfor-model-384. Full author list not independently re-verified; cited via project registry.“Community forensics: Using a large-scale, diverse generator set to train fake image detectors.” 2024.
[85]
OwensLab, University of Michigan, ViT-384 checkpoint accompanying the Community Forensics paper .“Commfor-model-384.” https://huggingface.co/OwensLab/commfor-model-384, 2024.
[86]
scarlettss (Ant International), Associated with the CVPR 2026 NTIRE challenge; not a peer-reviewed publication as such.“NTIRE2026_deepfake: NTIRE 2026 challenge DINOv3 ensemble.” https://huggingface.co/scarlettss/NTIRE2026_deepfake, 2026.
[87]
dima806, Fine-tuned on the CIFAKE dataset; community-hosted, no associated paper for this specific checkpoint.“Ai_vs_real_image_detection.” https://huggingface.co/dima806/ai_vs_real_image_detection, 2024.
[88]
Bombek1, SigLIP2+DINOv2 ensemble; community-hosted, no associated paper.“Ai-image-detector-siglip-dinov2.” https://huggingface.co/Bombek1/ai-image-detector-siglip-dinov2, 2024.
[89]
Organika, Community-hosted SwinV2 classifier; no associated paper.“Sdxl-detector.” https://huggingface.co/Organika/sdxl-detector, 2024.
[90]
prithivMLmods, SigLIP2-based 3-way classifier; community-hosted, no associated paper.“AI-vs-deepfake-vs-real-v2.0.” https://huggingface.co/prithivMLmods/AI-vs-Deepfake-vs-Real-v2.0, 2024.
[91]
Nahrawy, Swin-tiny binary classifier; community-hosted, no associated paper.“AIorNot.” https://huggingface.co/Nahrawy/AIorNot, 2024.
[92]
umm-maybe, Historical (2022) community baseline predating most modern generators; no associated paper.“AI-image-detector.” https://huggingface.co/umm-maybe/AI-image-detector, 2022.
[93]
yaya36095, 5-class generator-source classifier (SD/Midjourney/DALL-E/real/other); community-hosted, no associated paper.“Ai-source-detector.” https://huggingface.co/yaya36095/ai-source-detector, 2024.
[94]
ash12321, FLUX.1-generator-specialist ViT classifier; community-hosted, no associated paper.“Flux-detector-vit.” https://huggingface.co/ash12321/flux-detector-vit, 2024.
[95]
king1oo1, SigLIP2-based classifier; community-hosted, no associated paper.“Deepfake-model (DeepGuard).” https://huggingface.co/king1oo1/deepfake-model, 2024.
[96]
haywoodsloan, SwinV2-based classifier in the WasItAI style; community-hosted, no associated paper.“Ai-image-detector-deploy.” https://huggingface.co/haywoodsloan/ai-image-detector-deploy, 2024.
[97]
date3k2, ViT classifier; community-hosted, no associated paper.“Vit-real-fake-classification-v3.” https://huggingface.co/date3k2/vit-real-fake-classification-v3, 2024.
[98]
jacoballessio, Distilled ViT combining three detectors into one; community-hosted, no associated paper.“Ai-image-detect-distilled.” https://huggingface.co/jacoballessio/ai-image-detect-distilled, 2024.
[99]
aiwithoutborders-xyz, OpenSight framework build of the Community Forensics method ; community-hosted, no separate paper.“OpenSight-CommunityForensics-deepfake-ViT.” https://huggingface.co/aiwithoutborders-xyz/OpenSight-CommunityForensics-Deepfake-ViT, 2024.
[100]
Ateeqq, SigLIP2-based classifier; community-hosted, no associated paper.“Ai-vs-human-image-detector.” https://huggingface.co/Ateeqq/ai-vs-human-image-detector, 2024.
[101]
SadraCoding, Face-focused ViT classifier; community-hosted, no associated paper.“SDXL-deepfake-detector.” https://huggingface.co/SadraCoding/SDXL-Deepfake-Detector, 2024.
[102]
Wvolf, MSc thesis project, Solent University; not peer-reviewed.“ViT_deepfake_detection.” https://huggingface.co/Wvolf/ViT_Deepfake_Detection, 2024.
[103]
U. Ojha, Y. Li, and Y. J. Lee, Code: https://github.com/WisconsinAIVision/UniversalFakeDetect. Deferred detector, not run to completion in this study (Section 6).“Towards universal fake image detectors that generalize across generative models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2023.
[104]
H. Liu, Z. Tan, C. Tan, Y. Wei, J. Wang, and Y. Zhao, Code: https://github.com/Michel-liu/FatFormer. Deferred detector, not run to completion in this study (Section 6).“Forgery-aware adaptive transformer for generalizable synthetic image detection,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2024.
[105]
C. Tan, Y. Zhao, S. Wei, G. Gu, P. Liu, and Y. Wei, Code: https://github.com/chuangchuangtan/NPR-DeepfakeDetection. Deferred detector, not run to completion in this study (Section 6).“Rethinking the up-sampling operations in CNN-based generative network for generalizable deepfake detection,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (CVPR), 2024.