intrect commited on
Commit
796bb5b
·
verified ·
1 Parent(s): bb06a6b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - audio-classification
5
+ tags:
6
+ - ai-music-detection
7
+ - benchmark
8
+ - forensic
9
+ - audio
10
+ language:
11
+ - en
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # ArtifactBench v1 — AI-Generated Music Detection Benchmark
17
+
18
+ A multi-generator evaluation benchmark for AI-generated music forensic detection, covering 22 AI generators and 6 real music sources.
19
+
20
+ ## Dataset Description
21
+
22
+ - **Total tracks**: 8,766 (4,383 AI + 4,383 Real, 1:1 balanced)
23
+ - **AI generators**: 22 (MusicGen, Stable Audio, Suno v3/v3.5/v4, Udio, Riffusion, DiffRhythm, Yue, Chirp v2/v3/v3.5, etc.)
24
+ - **Real sources**: 6 (SONICS, MoM, FMA, YouTube)
25
+ - **Format**: AI tracks as Parquet (audio bytes embedded), Real tracks as CSV (YouTube IDs for user download)
26
+
27
+ ## Motivation
28
+
29
+ Existing benchmarks (SONICS: 5 generators, MoM: 6 generators) only measure in-distribution performance. Models reporting high F1 on these benchmarks fail catastrophically on out-of-distribution generators:
30
+
31
+ - CLAM (194M params, F1=0.925 on MoM) → F1=0.824 on ArtifactBench
32
+ - SpecTTTra (19M params, F1=0.97 on SONICS) → F1=0.766 on ArtifactBench
33
+
34
+ ArtifactBench evaluates what matters for deployment: generalization across diverse generators.
35
+
36
+ ## Sanity Check Protocol
37
+
38
+ Per-source pass/fail thresholds:
39
+ - Real source FPR ≤ 5%
40
+ - AI source TPR ≥ 90% (Stable Audio: ≥ 60%)
41
+ - Codec invariance: mean Δ ≤ 0.15, max Δ ≤ 0.35
42
+
43
+ ## Baseline Results
44
+
45
+ | Model | Params | F1 | FAIL | Suno v4 TPR | Real FPR |
46
+ |---|---|---|---|---|---|
47
+ | **ArtifactNet v9.4** | **4.2M** | **0.983** | **4/28** | **98%** | **1.5%** |
48
+ | CLAM (MoM) | 194M | 0.824 | 16/28 | 78% | 70.5% |
49
+ | SpecTTTra | 19M | 0.766 | 23/28 | 55% | 21.4% |
50
+
51
+ ## Usage
52
+
53
+ ```python
54
+ from artifactbench.bench import main
55
+ # or
56
+ # python -m artifactbench.bench --model artifactnet --manifest artifactbench_v1_manifest.json
57
+ ```
58
+
59
+ ## Files
60
+
61
+ - `artifactbench_v1_manifest.json` — Track manifest with bench_origin tags
62
+ - `metadata.json` — Dataset statistics and generator list
63
+
64
+ ## Citation
65
+
66
+ ```bibtex
67
+ @article{oh2026artifactnet,
68
+ title={ArtifactNet: Detecting AI-Generated Music via Forensic Residual Physics},
69
+ author={Oh, Heewon},
70
+ year={2026}
71
+ }
72
+ ```
73
+
74
+ ## License
75
+
76
+ CC BY-NC 4.0