rohhaiil commited on
Commit
718bd16
·
verified ·
1 Parent(s): b650abe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -7
README.md CHANGED
@@ -12,7 +12,7 @@ configs:
12
 
13
  - config_name: full
14
  data_files:
15
- - split: train
16
  path: compiled_dataset.jsonl
17
  ---
18
 
@@ -20,11 +20,16 @@ configs:
20
 
21
  Dataset used in "Automated Semantic Fault Localization in SysML v2: A Human-in-the-Loop Framework Using Knowledge-Graph Augmented LLMs", presented at INCOSE International Symposium 2026.
22
 
23
- ## Splits
 
 
 
 
 
 
24
 
25
- - **train**: 5,451 examples
26
- - **validation**: 1,184 examples
27
- - **test**: 1,145 examples
28
 
29
  ## Task
30
 
@@ -54,12 +59,12 @@ Given SysML v2 code and relevant context (compiler error, or relevant domain rul
54
  2. Synthetic errors were introduced via:
55
  - **Syntactic mutations** (5,497 instances)
56
  - **Domain/semantic mutations** based on violations of rules defined in a knowledge graph (1,402 instances)
57
- 3. An equal number of correct (unmutated) examples were included to support classification of correct vs. erroneous code, resulting in 8,301 total instances.
58
  4. Additional context was generated for each example:
59
  - Compiler error messages for syntactic errors
60
  - Relevant domain rules for semantic cases
61
  5. Target outputs were derived, including corrected code and corresponding diff patches.
62
- 6. The dataset was split into train/validation/test sets using a 70/15/15 ratio.
63
 
64
  ## License
65
 
 
12
 
13
  - config_name: full
14
  data_files:
15
+ - split: full
16
  path: compiled_dataset.jsonl
17
  ---
18
 
 
20
 
21
  Dataset used in "Automated Semantic Fault Localization in SysML v2: A Human-in-the-Loop Framework Using Knowledge-Graph Augmented LLMs", presented at INCOSE International Symposium 2026.
22
 
23
+ ## Dataset Structure
24
+
25
+ This dataset provides two configurations:
26
+
27
+ - **default**
28
+ Contains train/validation/test splits used for fine-tuning small models.
29
+ Samples exceeding 2048 tokens have been removed.
30
 
31
+ - **full**
32
+ Contains the full dataset ()
 
33
 
34
  ## Task
35
 
 
59
  2. Synthetic errors were introduced via:
60
  - **Syntactic mutations** (5,497 instances)
61
  - **Domain/semantic mutations** based on violations of rules defined in a knowledge graph (1,402 instances)
62
+ 3. An equal number of correct (unmutated) examples were included to support classification of correct vs. erroneous code, resulting in 8,301 instances.
63
  4. Additional context was generated for each example:
64
  - Compiler error messages for syntactic errors
65
  - Relevant domain rules for semantic cases
66
  5. Target outputs were derived, including corrected code and corresponding diff patches.
67
+ 6. Entries longer than 2048 tokens were dropped, and remaining (7,780 instances) were split into train/validation/test sets using a 70/15/15 ratio.
68
 
69
  ## License
70