RKB109 commited on
Commit
9caec5f
·
verified ·
1 Parent(s): 2206765

Publish artifacts for audio-event-triage-20260902

Browse files
Files changed (5) hide show
  1. README.md +59 -0
  2. data/test.jsonl +4 -0
  3. data/train.jsonl +14 -0
  4. project.json +52 -0
  5. sources.json +12 -0
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: Audio Event Triage Baseline Synthetic Evaluation Set
6
+ size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - audio-classification
10
+ tags:
11
+ - synthetic
12
+ - audio-ml
13
+ - evaluation
14
+ - audio-classification
15
+ - automatic-speech-recognition
16
+ - feature-extraction
17
+ - audio-to-audio
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: data/train.jsonl
23
+ - split: test
24
+ path: data/test.jsonl
25
+ ---
26
+
27
+ # Audio Event Triage Baseline Synthetic Dataset
28
+
29
+ ## Summary
30
+
31
+ This dataset contains 14 training examples and 4
32
+ held-out examples for **Operations teams need an explainable starting point for classifying alarms, machinery noise, and speech-like events.**
33
+
34
+ Every record is synthetic and includes:
35
+
36
+ - `input`: query, event, or feature description
37
+ - `label`: expected class, route, relation, or evidence category
38
+ - `context`: synthetic supporting context
39
+ - `source`: fictional source identifier
40
+ - `variant`: generation pattern
41
+ - `synthetic`: always `true`
42
+
43
+ ## Uses
44
+
45
+ - Reproducible unit and integration tests
46
+ - Baseline model training
47
+ - Evaluation harness development
48
+ - Schema and architecture demonstrations
49
+
50
+ ## Limitations
51
+
52
+ The included records are synthetic feature vectors and do not replace evaluation on licensed real audio.
53
+
54
+ This dataset does not represent real users, patients, customers, production
55
+ traffic, or licensed media. It must not be presented as real-world evidence.
56
+
57
+ ## Related Model
58
+
59
+ [RKB109/audio-event-triage-20260902-model](https://huggingface.co/RKB109/audio-event-triage-20260902-model)
data/test.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"id":"audio-event-triage-2-1","input":"low frequency continuous vibration high zero crossing stability","label":"machinery","context":"Synthetic rotating equipment feature summary.","source":"audio-02","variant":"direct","synthetic":true}
2
+ {"id":"audio-event-triage-3-2","input":"In an operations review, variable pitch moderate energy speech cadence","label":"speech","context":"Synthetic spoken segment feature summary.","source":"audio-03","variant":"operations","synthetic":true}
3
+ {"id":"audio-event-triage-4-3","input":"For an evaluation case, repeating pulse bright spectrum urgent tone","label":"alarm","context":"Synthetic alert feature summary.","source":"audio-04","variant":"evaluation","synthetic":true}
4
+ {"id":"audio-event-triage-6-1","input":"syllabic rhythm changing pitch voice activity","label":"speech","context":"Synthetic voice feature summary.","source":"audio-06","variant":"direct","synthetic":true}
data/train.jsonl ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"id":"audio-event-triage-1-1","input":"high energy repeating tone peak frequency 2100","label":"alarm","context":"Synthetic alarm feature summary.","source":"audio-01","variant":"direct","synthetic":true}
2
+ {"id":"audio-event-triage-1-2","input":"In an operations review, high energy repeating tone peak frequency 2100","label":"alarm","context":"Synthetic alarm feature summary.","source":"audio-01","variant":"operations","synthetic":true}
3
+ {"id":"audio-event-triage-1-3","input":"For an evaluation case, high energy repeating tone peak frequency 2100","label":"alarm","context":"Synthetic alarm feature summary.","source":"audio-01","variant":"evaluation","synthetic":true}
4
+ {"id":"audio-event-triage-2-2","input":"In an operations review, low frequency continuous vibration high zero crossing stability","label":"machinery","context":"Synthetic rotating equipment feature summary.","source":"audio-02","variant":"operations","synthetic":true}
5
+ {"id":"audio-event-triage-2-3","input":"For an evaluation case, low frequency continuous vibration high zero crossing stability","label":"machinery","context":"Synthetic rotating equipment feature summary.","source":"audio-02","variant":"evaluation","synthetic":true}
6
+ {"id":"audio-event-triage-3-1","input":"variable pitch moderate energy speech cadence","label":"speech","context":"Synthetic spoken segment feature summary.","source":"audio-03","variant":"direct","synthetic":true}
7
+ {"id":"audio-event-triage-3-3","input":"For an evaluation case, variable pitch moderate energy speech cadence","label":"speech","context":"Synthetic spoken segment feature summary.","source":"audio-03","variant":"evaluation","synthetic":true}
8
+ {"id":"audio-event-triage-4-1","input":"repeating pulse bright spectrum urgent tone","label":"alarm","context":"Synthetic alert feature summary.","source":"audio-04","variant":"direct","synthetic":true}
9
+ {"id":"audio-event-triage-4-2","input":"In an operations review, repeating pulse bright spectrum urgent tone","label":"alarm","context":"Synthetic alert feature summary.","source":"audio-04","variant":"operations","synthetic":true}
10
+ {"id":"audio-event-triage-5-1","input":"steady hum harmonic vibration low pitch","label":"machinery","context":"Synthetic motor feature summary.","source":"audio-05","variant":"direct","synthetic":true}
11
+ {"id":"audio-event-triage-5-2","input":"In an operations review, steady hum harmonic vibration low pitch","label":"machinery","context":"Synthetic motor feature summary.","source":"audio-05","variant":"operations","synthetic":true}
12
+ {"id":"audio-event-triage-5-3","input":"For an evaluation case, steady hum harmonic vibration low pitch","label":"machinery","context":"Synthetic motor feature summary.","source":"audio-05","variant":"evaluation","synthetic":true}
13
+ {"id":"audio-event-triage-6-2","input":"In an operations review, syllabic rhythm changing pitch voice activity","label":"speech","context":"Synthetic voice feature summary.","source":"audio-06","variant":"operations","synthetic":true}
14
+ {"id":"audio-event-triage-6-3","input":"For an evaluation case, syllabic rhythm changing pitch voice activity","label":"speech","context":"Synthetic voice feature summary.","source":"audio-06","variant":"evaluation","synthetic":true}
project.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "Audio Event Triage Baseline",
3
+ "problem": "Operations teams need an explainable starting point for classifying alarms, machinery noise, and speech-like events.",
4
+ "domain": "audio-ml",
5
+ "architecture": "classifier",
6
+ "hugging_face_tasks": [
7
+ "audio-classification",
8
+ "automatic-speech-recognition",
9
+ "feature-extraction",
10
+ "audio-to-audio"
11
+ ],
12
+ "recommended_stack": [
13
+ "FastAPI for audio metadata and prediction APIs",
14
+ "Transformers with Wav2Vec2 or audio spectrogram models",
15
+ "librosa or torchaudio for feature extraction",
16
+ "MLflow for experiment and model registry",
17
+ "Object storage for licensed audio",
18
+ "OpenTelemetry for inference latency and error traces"
19
+ ],
20
+ "real_world_data_sources": [
21
+ {
22
+ "name": "Freesound API",
23
+ "url": "https://freesound.org/apiv2/search/text/?query=alarm&page_size=5",
24
+ "purpose": "Licensed public audio search when an API key is configured"
25
+ },
26
+ {
27
+ "name": "Hugging Face Datasets API",
28
+ "url": "https://huggingface.co/api/datasets?search=audio-classification&limit=5",
29
+ "purpose": "Discover public audio datasets and metadata"
30
+ }
31
+ ],
32
+ "job_description_skills": [
33
+ "Audio feature pipelines and model fine-tuning",
34
+ "Class imbalance and macro-metric evaluation",
35
+ "Streaming inference and confidence calibration",
36
+ "Dataset licensing and provenance controls",
37
+ "Model monitoring and human review workflows"
38
+ ],
39
+ "impact_targets": [
40
+ "Reach macro recall >= 0.85 on a licensed evaluation set",
41
+ "Review every prediction below the confidence threshold",
42
+ "Process one minute of audio in under five seconds",
43
+ "Track class-level drift and false-negative rates"
44
+ ],
45
+ "baseline_evaluation": {
46
+ "test_examples": 4,
47
+ "accuracy": 1,
48
+ "synthetic_evaluation": true
49
+ },
50
+ "estimated_delivery": "8-12 weeks for one engineer",
51
+ "generated_baseline_is_production_ready": false
52
+ }
sources.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "name": "Freesound API",
4
+ "url": "https://freesound.org/apiv2/search/text/?query=alarm&page_size=5",
5
+ "purpose": "Licensed public audio search when an API key is configured"
6
+ },
7
+ {
8
+ "name": "Hugging Face Datasets API",
9
+ "url": "https://huggingface.co/api/datasets?search=audio-classification&limit=5",
10
+ "purpose": "Discover public audio datasets and metadata"
11
+ }
12
+ ]