RKB109 commited on
Commit
9d11766
·
verified ·
1 Parent(s): 2d29a03

Publish artifacts for support-routing-ml-20260801

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: Applied ML Support Router Synthetic Evaluation Set
6
+ size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - text-classification
10
+ tags:
11
+ - synthetic
12
+ - applied-machine-learning
13
+ - evaluation
14
+ - text-classification
15
+ - zero-shot-classification
16
+ - sentence-similarity
17
+ - summarization
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
+ # Applied ML Support Router Synthetic Dataset
28
+
29
+ ## Summary
30
+
31
+ This dataset contains 14 training examples and 4
32
+ held-out examples for **Support operations need reproducible routing models that expose confidence and defer uncertain cases.**
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
+ Synthetic tickets do not represent every user population or language. Production training data needs consent and bias analysis.
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/support-routing-ml-20260801-model](https://huggingface.co/RKB109/support-routing-ml-20260801-model)
data/test.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"id":"support-routing-ml-2-1","input":"The API returns a timeout after deployment","label":"technical","context":"Technical failure affecting an integration.","source":"ticket-02","variant":"direct","synthetic":true}
2
+ {"id":"support-routing-ml-3-2","input":"In an operations review, I cannot reset my password or access my account","label":"account-access","context":"Authentication and account recovery request.","source":"ticket-03","variant":"operations","synthetic":true}
3
+ {"id":"support-routing-ml-4-3","input":"For an evaluation case, I received a suspicious login notification","label":"security","context":"Potential account compromise or unauthorized access.","source":"ticket-04","variant":"evaluation","synthetic":true}
4
+ {"id":"support-routing-ml-6-1","input":"The SDK fails to parse the response body","label":"technical","context":"Client library behavior requires engineering review.","source":"ticket-06","variant":"direct","synthetic":true}
data/train.jsonl ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"id":"support-routing-ml-1-1","input":"I was charged twice for the same subscription","label":"billing","context":"Duplicate charge investigation request.","source":"ticket-01","variant":"direct","synthetic":true}
2
+ {"id":"support-routing-ml-1-2","input":"In an operations review, I was charged twice for the same subscription","label":"billing","context":"Duplicate charge investigation request.","source":"ticket-01","variant":"operations","synthetic":true}
3
+ {"id":"support-routing-ml-1-3","input":"For an evaluation case, I was charged twice for the same subscription","label":"billing","context":"Duplicate charge investigation request.","source":"ticket-01","variant":"evaluation","synthetic":true}
4
+ {"id":"support-routing-ml-2-2","input":"In an operations review, The API returns a timeout after deployment","label":"technical","context":"Technical failure affecting an integration.","source":"ticket-02","variant":"operations","synthetic":true}
5
+ {"id":"support-routing-ml-2-3","input":"For an evaluation case, The API returns a timeout after deployment","label":"technical","context":"Technical failure affecting an integration.","source":"ticket-02","variant":"evaluation","synthetic":true}
6
+ {"id":"support-routing-ml-3-1","input":"I cannot reset my password or access my account","label":"account-access","context":"Authentication and account recovery request.","source":"ticket-03","variant":"direct","synthetic":true}
7
+ {"id":"support-routing-ml-3-3","input":"For an evaluation case, I cannot reset my password or access my account","label":"account-access","context":"Authentication and account recovery request.","source":"ticket-03","variant":"evaluation","synthetic":true}
8
+ {"id":"support-routing-ml-4-1","input":"I received a suspicious login notification","label":"security","context":"Potential account compromise or unauthorized access.","source":"ticket-04","variant":"direct","synthetic":true}
9
+ {"id":"support-routing-ml-4-2","input":"In an operations review, I received a suspicious login notification","label":"security","context":"Potential account compromise or unauthorized access.","source":"ticket-04","variant":"operations","synthetic":true}
10
+ {"id":"support-routing-ml-5-1","input":"My invoice has the wrong tax amount","label":"billing","context":"Invoice calculation or billing documentation issue.","source":"ticket-05","variant":"direct","synthetic":true}
11
+ {"id":"support-routing-ml-5-2","input":"In an operations review, My invoice has the wrong tax amount","label":"billing","context":"Invoice calculation or billing documentation issue.","source":"ticket-05","variant":"operations","synthetic":true}
12
+ {"id":"support-routing-ml-5-3","input":"For an evaluation case, My invoice has the wrong tax amount","label":"billing","context":"Invoice calculation or billing documentation issue.","source":"ticket-05","variant":"evaluation","synthetic":true}
13
+ {"id":"support-routing-ml-6-2","input":"In an operations review, The SDK fails to parse the response body","label":"technical","context":"Client library behavior requires engineering review.","source":"ticket-06","variant":"operations","synthetic":true}
14
+ {"id":"support-routing-ml-6-3","input":"For an evaluation case, The SDK fails to parse the response body","label":"technical","context":"Client library behavior requires engineering review.","source":"ticket-06","variant":"evaluation","synthetic":true}
project.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "Applied ML Support Router",
3
+ "problem": "Support operations need reproducible routing models that expose confidence and defer uncertain cases.",
4
+ "domain": "applied-machine-learning",
5
+ "architecture": "classifier",
6
+ "hugging_face_tasks": [
7
+ "text-classification",
8
+ "zero-shot-classification",
9
+ "sentence-similarity",
10
+ "summarization"
11
+ ],
12
+ "recommended_stack": [
13
+ "FastAPI for prediction and feedback endpoints",
14
+ "scikit-learn or LightGBM for production baselines",
15
+ "Sentence Transformers for semantic fallback",
16
+ "MLflow for experiments and model registry",
17
+ "PostgreSQL for labels and human feedback",
18
+ "Evidently-style drift and quality monitoring"
19
+ ],
20
+ "real_world_data_sources": [
21
+ {
22
+ "name": "GitHub Issues API",
23
+ "url": "https://api.github.com/repos/pytorch/pytorch/issues?state=open&per_page=10",
24
+ "purpose": "Real technical support-style issue text"
25
+ },
26
+ {
27
+ "name": "Stack Exchange API",
28
+ "url": "https://api.stackexchange.com/2.3/questions?pagesize=10&order=desc&sort=activity&site=stackoverflow",
29
+ "purpose": "Real developer questions for weak-label experiments"
30
+ }
31
+ ],
32
+ "job_description_skills": [
33
+ "Applied NLP classification and confidence calibration",
34
+ "Human feedback loops and active learning",
35
+ "Model registry, drift monitoring, and retraining",
36
+ "Feature, label, and evaluation pipeline design",
37
+ "Business-aware automation and escalation metrics"
38
+ ],
39
+ "impact_targets": [
40
+ "Reach macro F1 >= 0.85 on a reviewed support set",
41
+ "Automate >= 60% of tickets at >= 0.90 precision",
42
+ "Route low-confidence cases to human review",
43
+ "Detect label and feature drift before SLA impact"
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": "GitHub Issues API",
4
+ "url": "https://api.github.com/repos/pytorch/pytorch/issues?state=open&per_page=10",
5
+ "purpose": "Real technical support-style issue text"
6
+ },
7
+ {
8
+ "name": "Stack Exchange API",
9
+ "url": "https://api.stackexchange.com/2.3/questions?pagesize=10&order=desc&sort=activity&site=stackoverflow",
10
+ "purpose": "Real developer questions for weak-label experiments"
11
+ }
12
+ ]