Clarify: ONNX inference build only, raw weights not released
Browse files
README.md
CHANGED
|
@@ -15,10 +15,17 @@ pipeline_tag: audio-classification
|
|
| 15 |
ArtifactNet detects AI-generated music by extracting forensic residual artifacts via a task-specific UNet, rather than learning generator-specific patterns. This approach generalizes across 22 AI music generators with only 4.2M parameters.
|
| 16 |
|
| 17 |
> ⚠️ **License: CC BY-NC 4.0 — Non-Commercial Only**
|
| 18 |
-
> This
|
| 19 |
> revenue-generating activity. Research, academic, and personal evaluation use are welcome.
|
| 20 |
> For commercial licensing, contact: **unohee.official@gmail.com**
|
| 21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
## Model Description
|
| 23 |
|
| 24 |
- **Architecture**: ArtifactUNet (3.6M) + 7ch HPSS Forensic CNN (424K) = 4.2M total
|
|
@@ -47,7 +54,7 @@ import onnxruntime as ort
|
|
| 47 |
import numpy as np
|
| 48 |
import soundfile as sf
|
| 49 |
|
| 50 |
-
# Load
|
| 51 |
sess = ort.InferenceSession("artifactnet_v94_full.onnx")
|
| 52 |
|
| 53 |
# Load audio (44.1kHz mono, 4-second chunk)
|
|
@@ -82,9 +89,9 @@ Evaluate with [ArtifactBench v1](https://huggingface.co/datasets/intrect/artifac
|
|
| 82 |
**CC BY-NC 4.0** — Free for academic, research, and personal use. **Commercial use is
|
| 83 |
prohibited** without prior written permission. This includes (but is not limited to):
|
| 84 |
|
| 85 |
-
- Selling access to the
|
| 86 |
- Integrating into commercial products, SaaS, or APIs
|
| 87 |
- Using the model to generate revenue, directly or indirectly
|
| 88 |
-
-
|
| 89 |
|
| 90 |
For commercial licensing inquiries: **unohee.official@gmail.com**
|
|
|
|
| 15 |
ArtifactNet detects AI-generated music by extracting forensic residual artifacts via a task-specific UNet, rather than learning generator-specific patterns. This approach generalizes across 22 AI music generators with only 4.2M parameters.
|
| 16 |
|
| 17 |
> ⚠️ **License: CC BY-NC 4.0 — Non-Commercial Only**
|
| 18 |
+
> This ONNX inference build may not be used for any commercial product, service, API, or
|
| 19 |
> revenue-generating activity. Research, academic, and personal evaluation use are welcome.
|
| 20 |
> For commercial licensing, contact: **unohee.official@gmail.com**
|
| 21 |
|
| 22 |
+
> ℹ️ **What is released**
|
| 23 |
+
> A pre-compiled, end-to-end **ONNX inference build** of the full pipeline (STFT → UNet →
|
| 24 |
+
> HPSS → 7-channel CNN → sigmoid). Raw PyTorch weights, training code, and training data
|
| 25 |
+
> are **not** publicly released. This is a deliberate scope limitation — the released
|
| 26 |
+
> binary is sufficient to reproduce inference numbers reported in our paper, but does
|
| 27 |
+
> not enable fine-tuning or weight extraction.
|
| 28 |
+
|
| 29 |
## Model Description
|
| 30 |
|
| 31 |
- **Architecture**: ArtifactUNet (3.6M) + 7ch HPSS Forensic CNN (424K) = 4.2M total
|
|
|
|
| 54 |
import numpy as np
|
| 55 |
import soundfile as sf
|
| 56 |
|
| 57 |
+
# Load ONNX inference build
|
| 58 |
sess = ort.InferenceSession("artifactnet_v94_full.onnx")
|
| 59 |
|
| 60 |
# Load audio (44.1kHz mono, 4-second chunk)
|
|
|
|
| 89 |
**CC BY-NC 4.0** — Free for academic, research, and personal use. **Commercial use is
|
| 90 |
prohibited** without prior written permission. This includes (but is not limited to):
|
| 91 |
|
| 92 |
+
- Selling access to the ONNX build or its outputs
|
| 93 |
- Integrating into commercial products, SaaS, or APIs
|
| 94 |
- Using the model to generate revenue, directly or indirectly
|
| 95 |
+
- Attempting to extract weights for derivative commercial models
|
| 96 |
|
| 97 |
For commercial licensing inquiries: **unohee.official@gmail.com**
|