jialinzhang commited on
Commit
d28f795
·
1 Parent(s): 7b53564

Add syntheticFail n1

Browse files
Files changed (30) hide show
  1. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/_tabbyflow_train.py +24 -0
  2. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/input_snapshot.json +36 -0
  3. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/normalized_schema_snapshot.json +1222 -0
  4. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/public_gate_report.json +37 -0
  5. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/staged_input_manifest.json +1227 -0
  6. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/run_config.json +42 -0
  7. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/runtime_result.json +24 -0
  8. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/staged_features.json +292 -0
  9. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/test.csv +3 -0
  10. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/train.csv +3 -0
  11. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/val.csv +3 -0
  12. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/adapter_report.json +7 -0
  13. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/adapter_transforms_applied.json +1 -0
  14. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/model_input_manifest.json +1229 -0
  15. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_cat_test.npy +3 -0
  16. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_cat_train.npy +3 -0
  17. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_cat_val.npy +3 -0
  18. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_num_test.npy +3 -0
  19. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_num_train.npy +3 -0
  20. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_num_val.npy +3 -0
  21. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/info.json +549 -0
  22. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/real.csv +3 -0
  23. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/staged_features.json +292 -0
  24. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/test.csv +3 -0
  25. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/train.csv +3 -0
  26. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/val.csv +3 -0
  27. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/y_test.npy +3 -0
  28. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/y_train.npy +3 -0
  29. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/y_val.npy +3 -0
  30. syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/train_20260510_202554.log +3 -0
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/_tabbyflow_train.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import os, shutil, subprocess, sys
3
+ root = r"/workspace/ef-vfm"
4
+ name = r"pipeline_n1"
5
+ src = r"/work/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1"
6
+ os.makedirs(os.path.join(root, "data", name), exist_ok=True)
7
+ dst_data = os.path.join(root, "data", name)
8
+ dst_syn = os.path.join(root, "synthetic", name)
9
+ shutil.rmtree(dst_data, ignore_errors=True)
10
+ shutil.copytree(src, dst_data)
11
+ os.makedirs(dst_syn, exist_ok=True)
12
+ for fn in ("real.csv", "test.csv", "val.csv"):
13
+ shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
14
+ os.chdir(root)
15
+ os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "")
16
+ os.environ["EFVFM_SMOKE_STEPS"] = "100"
17
+ os.environ["EFVFM_ADAPTER_TRAIN"] = "1"
18
+ os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128")
19
+ os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512")
20
+ subprocess.check_call([
21
+ sys.executable, "main.py",
22
+ "--dataname", name, "--mode", "train", "--gpu", "0",
23
+ "--no_wandb", "--exp_name", r"adapter_efvfm",
24
+ ])
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/input_snapshot.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "n1",
3
+ "model": "tabbyflow",
4
+ "inputs": {
5
+ "train_csv": {
6
+ "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv",
7
+ "exists": true,
8
+ "size": 563021,
9
+ "sha256": "e603fe5195edac0e926f63b398fd1af936766c1b502b300341a478e70aef4df5"
10
+ },
11
+ "val_csv": {
12
+ "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv",
13
+ "exists": true,
14
+ "size": 71100,
15
+ "sha256": "29ec664376ba652ee157545c9afe81d1afa054e30a554bc50ab2ebf1c52cef83"
16
+ },
17
+ "test_csv": {
18
+ "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv",
19
+ "exists": true,
20
+ "size": 71605,
21
+ "sha256": "2696873d18a2f693dc4b08f1c30f34a30cf96f1195790479ab8947fee8bc35ef"
22
+ },
23
+ "profile_json": {
24
+ "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_profile.json",
25
+ "exists": true,
26
+ "size": 21967,
27
+ "sha256": "62128c1a7c75e9b7c23136d477b5795a9477bc710734776bd4a1378d3d81dc33"
28
+ },
29
+ "contract_json": {
30
+ "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n1/n1-dataset_contract_v1.json",
31
+ "exists": true,
32
+ "size": 27866,
33
+ "sha256": "cf9ef940957593e898ef55899808bb02267775fdad024ec6bf75793ef28b7ba1"
34
+ }
35
+ }
36
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/normalized_schema_snapshot.json ADDED
@@ -0,0 +1,1222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "n1",
3
+ "target_column": "class",
4
+ "task_type": "classification",
5
+ "columns": [
6
+ {
7
+ "name": "word_freq_make",
8
+ "role": "feature",
9
+ "semantic_type": "numeric",
10
+ "nullable": false,
11
+ "missing_tokens": [],
12
+ "parse_format": null,
13
+ "impute_strategy": "median",
14
+ "profile_stats": {
15
+ "missing_rate": 0.0,
16
+ "unique_count": 137,
17
+ "unique_ratio": 0.037228,
18
+ "example_values": [
19
+ "0",
20
+ "0.98",
21
+ "0.16",
22
+ "0.1",
23
+ "0.07"
24
+ ]
25
+ }
26
+ },
27
+ {
28
+ "name": "word_freq_address",
29
+ "role": "feature",
30
+ "semantic_type": "numeric",
31
+ "nullable": false,
32
+ "missing_tokens": [],
33
+ "parse_format": null,
34
+ "impute_strategy": "median",
35
+ "profile_stats": {
36
+ "missing_rate": 0.0,
37
+ "unique_count": 156,
38
+ "unique_ratio": 0.042391,
39
+ "example_values": [
40
+ "0",
41
+ "0.16",
42
+ "0.24",
43
+ "0.1",
44
+ "0.32"
45
+ ]
46
+ }
47
+ },
48
+ {
49
+ "name": "word_freq_all",
50
+ "role": "feature",
51
+ "semantic_type": "numeric",
52
+ "nullable": false,
53
+ "missing_tokens": [],
54
+ "parse_format": null,
55
+ "impute_strategy": "median",
56
+ "profile_stats": {
57
+ "missing_rate": 0.0,
58
+ "unique_count": 207,
59
+ "unique_ratio": 0.05625,
60
+ "example_values": [
61
+ "1.07",
62
+ "0",
63
+ "0.32",
64
+ "0.41",
65
+ "1.24"
66
+ ]
67
+ }
68
+ },
69
+ {
70
+ "name": "word_freq_3d",
71
+ "role": "feature",
72
+ "semantic_type": "boolean",
73
+ "nullable": false,
74
+ "missing_tokens": [],
75
+ "parse_format": null,
76
+ "impute_strategy": "mode",
77
+ "profile_stats": {
78
+ "missing_rate": 0.0,
79
+ "unique_count": 34,
80
+ "unique_ratio": 0.009239,
81
+ "example_values": [
82
+ "0",
83
+ "4.31",
84
+ "42.81",
85
+ "13.63",
86
+ "0.42"
87
+ ]
88
+ }
89
+ },
90
+ {
91
+ "name": "word_freq_our",
92
+ "role": "feature",
93
+ "semantic_type": "numeric",
94
+ "nullable": false,
95
+ "missing_tokens": [],
96
+ "parse_format": null,
97
+ "impute_strategy": "median",
98
+ "profile_stats": {
99
+ "missing_rate": 0.0,
100
+ "unique_count": 247,
101
+ "unique_ratio": 0.06712,
102
+ "example_values": [
103
+ "0.53",
104
+ "0",
105
+ "0.32",
106
+ "0.08",
107
+ "0.41"
108
+ ]
109
+ }
110
+ },
111
+ {
112
+ "name": "word_freq_over",
113
+ "role": "feature",
114
+ "semantic_type": "numeric",
115
+ "nullable": false,
116
+ "missing_tokens": [],
117
+ "parse_format": null,
118
+ "impute_strategy": "median",
119
+ "profile_stats": {
120
+ "missing_rate": 0.0,
121
+ "unique_count": 130,
122
+ "unique_ratio": 0.035326,
123
+ "example_values": [
124
+ "0",
125
+ "0.8",
126
+ "0.24",
127
+ "0.58",
128
+ "0.2"
129
+ ]
130
+ }
131
+ },
132
+ {
133
+ "name": "word_freq_remove",
134
+ "role": "feature",
135
+ "semantic_type": "numeric",
136
+ "nullable": false,
137
+ "missing_tokens": [],
138
+ "parse_format": null,
139
+ "impute_strategy": "median",
140
+ "profile_stats": {
141
+ "missing_rate": 0.0,
142
+ "unique_count": 160,
143
+ "unique_ratio": 0.043478,
144
+ "example_values": [
145
+ "0",
146
+ "0.49",
147
+ "0.2",
148
+ "0.62",
149
+ "0.16"
150
+ ]
151
+ }
152
+ },
153
+ {
154
+ "name": "word_freq_internet",
155
+ "role": "feature",
156
+ "semantic_type": "numeric",
157
+ "nullable": false,
158
+ "missing_tokens": [],
159
+ "parse_format": null,
160
+ "impute_strategy": "median",
161
+ "profile_stats": {
162
+ "missing_rate": 0.0,
163
+ "unique_count": 156,
164
+ "unique_ratio": 0.042391,
165
+ "example_values": [
166
+ "0",
167
+ "0.08",
168
+ "0.33",
169
+ "0.1",
170
+ "0.88"
171
+ ]
172
+ }
173
+ },
174
+ {
175
+ "name": "word_freq_order",
176
+ "role": "feature",
177
+ "semantic_type": "numeric",
178
+ "nullable": false,
179
+ "missing_tokens": [],
180
+ "parse_format": null,
181
+ "impute_strategy": "median",
182
+ "profile_stats": {
183
+ "missing_rate": 0.0,
184
+ "unique_count": 130,
185
+ "unique_ratio": 0.035326,
186
+ "example_values": [
187
+ "0",
188
+ "0.66",
189
+ "1.43",
190
+ "0.03",
191
+ "0.3"
192
+ ]
193
+ }
194
+ },
195
+ {
196
+ "name": "word_freq_mail",
197
+ "role": "feature",
198
+ "semantic_type": "numeric",
199
+ "nullable": false,
200
+ "missing_tokens": [],
201
+ "parse_format": null,
202
+ "impute_strategy": "median",
203
+ "profile_stats": {
204
+ "missing_rate": 0.0,
205
+ "unique_count": 232,
206
+ "unique_ratio": 0.063043,
207
+ "example_values": [
208
+ "0",
209
+ "0.49",
210
+ "0.66",
211
+ "1.96",
212
+ "0.82"
213
+ ]
214
+ }
215
+ },
216
+ {
217
+ "name": "word_freq_receive",
218
+ "role": "feature",
219
+ "semantic_type": "numeric",
220
+ "nullable": false,
221
+ "missing_tokens": [],
222
+ "parse_format": null,
223
+ "impute_strategy": "median",
224
+ "profile_stats": {
225
+ "missing_rate": 0.0,
226
+ "unique_count": 107,
227
+ "unique_ratio": 0.029076,
228
+ "example_values": [
229
+ "0",
230
+ "0.08",
231
+ "0.24",
232
+ "0.1",
233
+ "0.62"
234
+ ]
235
+ }
236
+ },
237
+ {
238
+ "name": "word_freq_will",
239
+ "role": "feature",
240
+ "semantic_type": "numeric",
241
+ "nullable": false,
242
+ "missing_tokens": [],
243
+ "parse_format": null,
244
+ "impute_strategy": "median",
245
+ "profile_stats": {
246
+ "missing_rate": 0.0,
247
+ "unique_count": 301,
248
+ "unique_ratio": 0.081793,
249
+ "example_values": [
250
+ "0",
251
+ "0.64",
252
+ "1.81",
253
+ "0.57",
254
+ "1.24"
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "name": "word_freq_people",
260
+ "role": "feature",
261
+ "semantic_type": "numeric",
262
+ "nullable": false,
263
+ "missing_tokens": [],
264
+ "parse_format": null,
265
+ "impute_strategy": "median",
266
+ "profile_stats": {
267
+ "missing_rate": 0.0,
268
+ "unique_count": 148,
269
+ "unique_ratio": 0.040217,
270
+ "example_values": [
271
+ "0",
272
+ "0.9",
273
+ "0.16",
274
+ "0.17",
275
+ "0.74"
276
+ ]
277
+ }
278
+ },
279
+ {
280
+ "name": "word_freq_report",
281
+ "role": "feature",
282
+ "semantic_type": "numeric",
283
+ "nullable": false,
284
+ "missing_tokens": [],
285
+ "parse_format": null,
286
+ "impute_strategy": "median",
287
+ "profile_stats": {
288
+ "missing_rate": 0.0,
289
+ "unique_count": 117,
290
+ "unique_ratio": 0.031793,
291
+ "example_values": [
292
+ "0",
293
+ "1.82",
294
+ "0.23",
295
+ "0.2",
296
+ "0.08"
297
+ ]
298
+ }
299
+ },
300
+ {
301
+ "name": "word_freq_addresses",
302
+ "role": "feature",
303
+ "semantic_type": "numeric",
304
+ "nullable": false,
305
+ "missing_tokens": [],
306
+ "parse_format": null,
307
+ "impute_strategy": "median",
308
+ "profile_stats": {
309
+ "missing_rate": 0.0,
310
+ "unique_count": 108,
311
+ "unique_ratio": 0.029348,
312
+ "example_values": [
313
+ "0",
314
+ "0.16",
315
+ "0.66",
316
+ "0.31",
317
+ "0.4"
318
+ ]
319
+ }
320
+ },
321
+ {
322
+ "name": "word_freq_free",
323
+ "role": "feature",
324
+ "semantic_type": "numeric",
325
+ "nullable": false,
326
+ "missing_tokens": [],
327
+ "parse_format": null,
328
+ "impute_strategy": "median",
329
+ "profile_stats": {
330
+ "missing_rate": 0.0,
331
+ "unique_count": 246,
332
+ "unique_ratio": 0.066848,
333
+ "example_values": [
334
+ "0",
335
+ "0.82",
336
+ "0.1",
337
+ "1.56",
338
+ "0.38"
339
+ ]
340
+ }
341
+ },
342
+ {
343
+ "name": "word_freq_business",
344
+ "role": "feature",
345
+ "semantic_type": "numeric",
346
+ "nullable": false,
347
+ "missing_tokens": [],
348
+ "parse_format": null,
349
+ "impute_strategy": "median",
350
+ "profile_stats": {
351
+ "missing_rate": 0.0,
352
+ "unique_count": 175,
353
+ "unique_ratio": 0.047554,
354
+ "example_values": [
355
+ "0",
356
+ "0.16",
357
+ "0.31",
358
+ "2.22",
359
+ "1.63"
360
+ ]
361
+ }
362
+ },
363
+ {
364
+ "name": "word_freq_email",
365
+ "role": "feature",
366
+ "semantic_type": "numeric",
367
+ "nullable": false,
368
+ "missing_tokens": [],
369
+ "parse_format": null,
370
+ "impute_strategy": "median",
371
+ "profile_stats": {
372
+ "missing_rate": 0.0,
373
+ "unique_count": 217,
374
+ "unique_ratio": 0.058967,
375
+ "example_values": [
376
+ "0",
377
+ "0.32",
378
+ "1.57",
379
+ "1.96",
380
+ "1.02"
381
+ ]
382
+ }
383
+ },
384
+ {
385
+ "name": "word_freq_you",
386
+ "role": "feature",
387
+ "semantic_type": "numeric",
388
+ "nullable": false,
389
+ "missing_tokens": [],
390
+ "parse_format": null,
391
+ "impute_strategy": "median",
392
+ "profile_stats": {
393
+ "missing_rate": 0.0,
394
+ "unique_count": 548,
395
+ "unique_ratio": 0.148913,
396
+ "example_values": [
397
+ "3.22",
398
+ "2.4",
399
+ "0.32",
400
+ "1.81",
401
+ "2.46"
402
+ ]
403
+ }
404
+ },
405
+ {
406
+ "name": "word_freq_credit",
407
+ "role": "feature",
408
+ "semantic_type": "numeric",
409
+ "nullable": false,
410
+ "missing_tokens": [],
411
+ "parse_format": null,
412
+ "impute_strategy": "median",
413
+ "profile_stats": {
414
+ "missing_rate": 0.0,
415
+ "unique_count": 126,
416
+ "unique_ratio": 0.034239,
417
+ "example_values": [
418
+ "0.53",
419
+ "0",
420
+ "0.16",
421
+ "0.41",
422
+ "0.4"
423
+ ]
424
+ }
425
+ },
426
+ {
427
+ "name": "word_freq_your",
428
+ "role": "feature",
429
+ "semantic_type": "numeric",
430
+ "nullable": false,
431
+ "missing_tokens": [],
432
+ "parse_format": null,
433
+ "impute_strategy": "median",
434
+ "profile_stats": {
435
+ "missing_rate": 0.0,
436
+ "unique_count": 383,
437
+ "unique_ratio": 0.104076,
438
+ "example_values": [
439
+ "1.07",
440
+ "0",
441
+ "1.14",
442
+ "1.16",
443
+ "1.84"
444
+ ]
445
+ }
446
+ },
447
+ {
448
+ "name": "word_freq_font",
449
+ "role": "feature",
450
+ "semantic_type": "numeric",
451
+ "nullable": false,
452
+ "missing_tokens": [],
453
+ "parse_format": null,
454
+ "impute_strategy": "median",
455
+ "profile_stats": {
456
+ "missing_rate": 0.0,
457
+ "unique_count": 82,
458
+ "unique_ratio": 0.022283,
459
+ "example_values": [
460
+ "8.06",
461
+ "12.8",
462
+ "0",
463
+ "0.2",
464
+ "7.33"
465
+ ]
466
+ }
467
+ },
468
+ {
469
+ "name": "word_freq_000",
470
+ "role": "feature",
471
+ "semantic_type": "numeric",
472
+ "nullable": false,
473
+ "missing_tokens": [],
474
+ "parse_format": null,
475
+ "impute_strategy": "median",
476
+ "profile_stats": {
477
+ "missing_rate": 0.0,
478
+ "unique_count": 152,
479
+ "unique_ratio": 0.041304,
480
+ "example_values": [
481
+ "0",
482
+ "0.49",
483
+ "0.91",
484
+ "0.09",
485
+ "0.72"
486
+ ]
487
+ }
488
+ },
489
+ {
490
+ "name": "word_freq_money",
491
+ "role": "feature",
492
+ "semantic_type": "numeric",
493
+ "nullable": false,
494
+ "missing_tokens": [],
495
+ "parse_format": null,
496
+ "impute_strategy": "median",
497
+ "profile_stats": {
498
+ "missing_rate": 0.0,
499
+ "unique_count": 127,
500
+ "unique_ratio": 0.034511,
501
+ "example_values": [
502
+ "0",
503
+ "1.14",
504
+ "0.16",
505
+ "0.3",
506
+ "0.32"
507
+ ]
508
+ }
509
+ },
510
+ {
511
+ "name": "word_freq_hp",
512
+ "role": "feature",
513
+ "semantic_type": "numeric",
514
+ "nullable": false,
515
+ "missing_tokens": [],
516
+ "parse_format": null,
517
+ "impute_strategy": "median",
518
+ "profile_stats": {
519
+ "missing_rate": 0.0,
520
+ "unique_count": 360,
521
+ "unique_ratio": 0.097826,
522
+ "example_values": [
523
+ "0",
524
+ "0.64",
525
+ "0.72",
526
+ "0.52",
527
+ "5.45"
528
+ ]
529
+ }
530
+ },
531
+ {
532
+ "name": "word_freq_hpl",
533
+ "role": "feature",
534
+ "semantic_type": "numeric",
535
+ "nullable": false,
536
+ "missing_tokens": [],
537
+ "parse_format": null,
538
+ "impute_strategy": "median",
539
+ "profile_stats": {
540
+ "missing_rate": 0.0,
541
+ "unique_count": 262,
542
+ "unique_ratio": 0.071196,
543
+ "example_values": [
544
+ "0",
545
+ "0.64",
546
+ "6.56",
547
+ "0.35",
548
+ "2.17"
549
+ ]
550
+ }
551
+ },
552
+ {
553
+ "name": "word_freq_george",
554
+ "role": "feature",
555
+ "semantic_type": "numeric",
556
+ "nullable": false,
557
+ "missing_tokens": [],
558
+ "parse_format": null,
559
+ "impute_strategy": "median",
560
+ "profile_stats": {
561
+ "missing_rate": 0.0,
562
+ "unique_count": 226,
563
+ "unique_ratio": 0.061413,
564
+ "example_values": [
565
+ "0",
566
+ "0.35",
567
+ "0.47",
568
+ "0.23",
569
+ "0.86"
570
+ ]
571
+ }
572
+ },
573
+ {
574
+ "name": "word_freq_650",
575
+ "role": "feature",
576
+ "semantic_type": "numeric",
577
+ "nullable": false,
578
+ "missing_tokens": [],
579
+ "parse_format": null,
580
+ "impute_strategy": "median",
581
+ "profile_stats": {
582
+ "missing_rate": 0.0,
583
+ "unique_count": 187,
584
+ "unique_ratio": 0.050815,
585
+ "example_values": [
586
+ "0",
587
+ "1.96",
588
+ "0.17",
589
+ "0.11",
590
+ "0.28"
591
+ ]
592
+ }
593
+ },
594
+ {
595
+ "name": "word_freq_lab",
596
+ "role": "feature",
597
+ "semantic_type": "numeric",
598
+ "nullable": false,
599
+ "missing_tokens": [],
600
+ "parse_format": null,
601
+ "impute_strategy": "median",
602
+ "profile_stats": {
603
+ "missing_rate": 0.0,
604
+ "unique_count": 145,
605
+ "unique_ratio": 0.039402,
606
+ "example_values": [
607
+ "0",
608
+ "0.17",
609
+ "0.47",
610
+ "0.11",
611
+ "0.28"
612
+ ]
613
+ }
614
+ },
615
+ {
616
+ "name": "word_freq_labs",
617
+ "role": "feature",
618
+ "semantic_type": "numeric",
619
+ "nullable": false,
620
+ "missing_tokens": [],
621
+ "parse_format": null,
622
+ "impute_strategy": "median",
623
+ "profile_stats": {
624
+ "missing_rate": 0.0,
625
+ "unique_count": 160,
626
+ "unique_ratio": 0.043478,
627
+ "example_values": [
628
+ "0",
629
+ "0.17",
630
+ "0.11",
631
+ "0.28",
632
+ "1.19"
633
+ ]
634
+ }
635
+ },
636
+ {
637
+ "name": "word_freq_telnet",
638
+ "role": "feature",
639
+ "semantic_type": "numeric",
640
+ "nullable": false,
641
+ "missing_tokens": [],
642
+ "parse_format": null,
643
+ "impute_strategy": "median",
644
+ "profile_stats": {
645
+ "missing_rate": 0.0,
646
+ "unique_count": 116,
647
+ "unique_ratio": 0.031522,
648
+ "example_values": [
649
+ "0",
650
+ "0.17",
651
+ "0.18",
652
+ "1.16",
653
+ "0.28"
654
+ ]
655
+ }
656
+ },
657
+ {
658
+ "name": "word_freq_857",
659
+ "role": "feature",
660
+ "semantic_type": "numeric",
661
+ "nullable": false,
662
+ "missing_tokens": [],
663
+ "parse_format": null,
664
+ "impute_strategy": "median",
665
+ "profile_stats": {
666
+ "missing_rate": 0.0,
667
+ "unique_count": 97,
668
+ "unique_ratio": 0.026359,
669
+ "example_values": [
670
+ "0",
671
+ "0.17",
672
+ "0.28",
673
+ "0.39",
674
+ "2.77"
675
+ ]
676
+ }
677
+ },
678
+ {
679
+ "name": "word_freq_data",
680
+ "role": "feature",
681
+ "semantic_type": "numeric",
682
+ "nullable": false,
683
+ "missing_tokens": [],
684
+ "parse_format": null,
685
+ "impute_strategy": "median",
686
+ "profile_stats": {
687
+ "missing_rate": 0.0,
688
+ "unique_count": 166,
689
+ "unique_ratio": 0.045109,
690
+ "example_values": [
691
+ "0",
692
+ "0.17",
693
+ "0.47",
694
+ "0.03",
695
+ "0.14"
696
+ ]
697
+ }
698
+ },
699
+ {
700
+ "name": "word_freq_415",
701
+ "role": "feature",
702
+ "semantic_type": "numeric",
703
+ "nullable": false,
704
+ "missing_tokens": [],
705
+ "parse_format": null,
706
+ "impute_strategy": "median",
707
+ "profile_stats": {
708
+ "missing_rate": 0.0,
709
+ "unique_count": 102,
710
+ "unique_ratio": 0.027717,
711
+ "example_values": [
712
+ "0",
713
+ "0.17",
714
+ "0.28",
715
+ "0.39",
716
+ "2.77"
717
+ ]
718
+ }
719
+ },
720
+ {
721
+ "name": "word_freq_85",
722
+ "role": "feature",
723
+ "semantic_type": "numeric",
724
+ "nullable": false,
725
+ "missing_tokens": [],
726
+ "parse_format": null,
727
+ "impute_strategy": "median",
728
+ "profile_stats": {
729
+ "missing_rate": 0.0,
730
+ "unique_count": 158,
731
+ "unique_ratio": 0.042935,
732
+ "example_values": [
733
+ "0",
734
+ "0.1",
735
+ "0.17",
736
+ "0.22",
737
+ "0.28"
738
+ ]
739
+ }
740
+ },
741
+ {
742
+ "name": "word_freq_technology",
743
+ "role": "feature",
744
+ "semantic_type": "numeric",
745
+ "nullable": false,
746
+ "missing_tokens": [],
747
+ "parse_format": null,
748
+ "impute_strategy": "median",
749
+ "profile_stats": {
750
+ "missing_rate": 0.0,
751
+ "unique_count": 151,
752
+ "unique_ratio": 0.041033,
753
+ "example_values": [
754
+ "0",
755
+ "0.32",
756
+ "0.72",
757
+ "0.17",
758
+ "0.07"
759
+ ]
760
+ }
761
+ },
762
+ {
763
+ "name": "word_freq_1999",
764
+ "role": "feature",
765
+ "semantic_type": "numeric",
766
+ "nullable": false,
767
+ "missing_tokens": [],
768
+ "parse_format": null,
769
+ "impute_strategy": "median",
770
+ "profile_stats": {
771
+ "missing_rate": 0.0,
772
+ "unique_count": 180,
773
+ "unique_ratio": 0.048913,
774
+ "example_values": [
775
+ "0",
776
+ "0.64",
777
+ "0.17",
778
+ "0.71",
779
+ "0.18"
780
+ ]
781
+ }
782
+ },
783
+ {
784
+ "name": "word_freq_parts",
785
+ "role": "feature",
786
+ "semantic_type": "boolean",
787
+ "nullable": false,
788
+ "missing_tokens": [],
789
+ "parse_format": null,
790
+ "impute_strategy": "mode",
791
+ "profile_stats": {
792
+ "missing_rate": 0.0,
793
+ "unique_count": 48,
794
+ "unique_ratio": 0.013043,
795
+ "example_values": [
796
+ "0",
797
+ "0.14",
798
+ "1.44",
799
+ "0.04",
800
+ "0.29"
801
+ ]
802
+ }
803
+ },
804
+ {
805
+ "name": "word_freq_pm",
806
+ "role": "feature",
807
+ "semantic_type": "numeric",
808
+ "nullable": false,
809
+ "missing_tokens": [],
810
+ "parse_format": null,
811
+ "impute_strategy": "median",
812
+ "profile_stats": {
813
+ "missing_rate": 0.0,
814
+ "unique_count": 149,
815
+ "unique_ratio": 0.040489,
816
+ "example_values": [
817
+ "0",
818
+ "0.1",
819
+ "0.14",
820
+ "1.58",
821
+ "1.96"
822
+ ]
823
+ }
824
+ },
825
+ {
826
+ "name": "word_freq_direct",
827
+ "role": "feature",
828
+ "semantic_type": "numeric",
829
+ "nullable": false,
830
+ "missing_tokens": [],
831
+ "parse_format": null,
832
+ "impute_strategy": "median",
833
+ "profile_stats": {
834
+ "missing_rate": 0.0,
835
+ "unique_count": 112,
836
+ "unique_ratio": 0.030435,
837
+ "example_values": [
838
+ "0",
839
+ "0.08",
840
+ "0.17",
841
+ "0.16",
842
+ "0.03"
843
+ ]
844
+ }
845
+ },
846
+ {
847
+ "name": "word_freq_cs",
848
+ "role": "feature",
849
+ "semantic_type": "numeric",
850
+ "nullable": false,
851
+ "missing_tokens": [],
852
+ "parse_format": null,
853
+ "impute_strategy": "median",
854
+ "profile_stats": {
855
+ "missing_rate": 0.0,
856
+ "unique_count": 95,
857
+ "unique_ratio": 0.025815,
858
+ "example_values": [
859
+ "0",
860
+ "0.34",
861
+ "0.51",
862
+ "3.12",
863
+ "0.37"
864
+ ]
865
+ }
866
+ },
867
+ {
868
+ "name": "word_freq_meeting",
869
+ "role": "feature",
870
+ "semantic_type": "numeric",
871
+ "nullable": false,
872
+ "missing_tokens": [],
873
+ "parse_format": null,
874
+ "impute_strategy": "median",
875
+ "profile_stats": {
876
+ "missing_rate": 0.0,
877
+ "unique_count": 172,
878
+ "unique_ratio": 0.046739,
879
+ "example_values": [
880
+ "0",
881
+ "0.9",
882
+ "1.21",
883
+ "0.71",
884
+ "0.04"
885
+ ]
886
+ }
887
+ },
888
+ {
889
+ "name": "word_freq_original",
890
+ "role": "feature",
891
+ "semantic_type": "numeric",
892
+ "nullable": false,
893
+ "missing_tokens": [],
894
+ "parse_format": null,
895
+ "impute_strategy": "median",
896
+ "profile_stats": {
897
+ "missing_rate": 0.0,
898
+ "unique_count": 123,
899
+ "unique_ratio": 0.033424,
900
+ "example_values": [
901
+ "0",
902
+ "0.94",
903
+ "0.43",
904
+ "0.09",
905
+ "0.39"
906
+ ]
907
+ }
908
+ },
909
+ {
910
+ "name": "word_freq_project",
911
+ "role": "feature",
912
+ "semantic_type": "numeric",
913
+ "nullable": false,
914
+ "missing_tokens": [],
915
+ "parse_format": null,
916
+ "impute_strategy": "median",
917
+ "profile_stats": {
918
+ "missing_rate": 0.0,
919
+ "unique_count": 142,
920
+ "unique_ratio": 0.038587,
921
+ "example_values": [
922
+ "0",
923
+ "0.97",
924
+ "1.08",
925
+ "0.41",
926
+ "0.37"
927
+ ]
928
+ }
929
+ },
930
+ {
931
+ "name": "word_freq_re",
932
+ "role": "feature",
933
+ "semantic_type": "numeric",
934
+ "nullable": false,
935
+ "missing_tokens": [],
936
+ "parse_format": null,
937
+ "impute_strategy": "median",
938
+ "profile_stats": {
939
+ "missing_rate": 0.0,
940
+ "unique_count": 222,
941
+ "unique_ratio": 0.060326,
942
+ "example_values": [
943
+ "0",
944
+ "0.08",
945
+ "0.17",
946
+ "0.38",
947
+ "1.18"
948
+ ]
949
+ }
950
+ },
951
+ {
952
+ "name": "word_freq_edu",
953
+ "role": "feature",
954
+ "semantic_type": "numeric",
955
+ "nullable": false,
956
+ "missing_tokens": [],
957
+ "parse_format": null,
958
+ "impute_strategy": "median",
959
+ "profile_stats": {
960
+ "missing_rate": 0.0,
961
+ "unique_count": 203,
962
+ "unique_ratio": 0.055163,
963
+ "example_values": [
964
+ "0",
965
+ "4.76",
966
+ "0.25",
967
+ "0.28",
968
+ "0.9"
969
+ ]
970
+ }
971
+ },
972
+ {
973
+ "name": "word_freq_table",
974
+ "role": "feature",
975
+ "semantic_type": "boolean",
976
+ "nullable": false,
977
+ "missing_tokens": [],
978
+ "parse_format": null,
979
+ "impute_strategy": "mode",
980
+ "profile_stats": {
981
+ "missing_rate": 0.0,
982
+ "unique_count": 31,
983
+ "unique_ratio": 0.008424,
984
+ "example_values": [
985
+ "0",
986
+ "1.51",
987
+ "0.72",
988
+ "0.61",
989
+ "0.04"
990
+ ]
991
+ }
992
+ },
993
+ {
994
+ "name": "word_freq_conference",
995
+ "role": "feature",
996
+ "semantic_type": "numeric",
997
+ "nullable": false,
998
+ "missing_tokens": [],
999
+ "parse_format": null,
1000
+ "impute_strategy": "median",
1001
+ "profile_stats": {
1002
+ "missing_rate": 0.0,
1003
+ "unique_count": 94,
1004
+ "unique_ratio": 0.025543,
1005
+ "example_values": [
1006
+ "0",
1007
+ "0.03",
1008
+ "2.22",
1009
+ "0.14",
1010
+ "0.74"
1011
+ ]
1012
+ }
1013
+ },
1014
+ {
1015
+ "name": "char_freq_%3B",
1016
+ "role": "feature",
1017
+ "semantic_type": "numeric",
1018
+ "nullable": false,
1019
+ "missing_tokens": [],
1020
+ "parse_format": null,
1021
+ "impute_strategy": "median",
1022
+ "profile_stats": {
1023
+ "missing_rate": 0.0,
1024
+ "unique_count": 281,
1025
+ "unique_ratio": 0.076359,
1026
+ "example_values": [
1027
+ "0",
1028
+ "0.119",
1029
+ "0.028",
1030
+ "0.176",
1031
+ "0.023"
1032
+ ]
1033
+ }
1034
+ },
1035
+ {
1036
+ "name": "char_freq_%28",
1037
+ "role": "feature",
1038
+ "semantic_type": "numeric",
1039
+ "nullable": false,
1040
+ "missing_tokens": [],
1041
+ "parse_format": null,
1042
+ "impute_strategy": "median",
1043
+ "profile_stats": {
1044
+ "missing_rate": 0.0,
1045
+ "unique_count": 586,
1046
+ "unique_ratio": 0.159239,
1047
+ "example_values": [
1048
+ "0",
1049
+ "0.04",
1050
+ "0.159",
1051
+ "0.095",
1052
+ "0.132"
1053
+ ]
1054
+ }
1055
+ },
1056
+ {
1057
+ "name": "char_freq_%5B",
1058
+ "role": "feature",
1059
+ "semantic_type": "numeric",
1060
+ "nullable": false,
1061
+ "missing_tokens": [],
1062
+ "parse_format": null,
1063
+ "impute_strategy": "median",
1064
+ "profile_stats": {
1065
+ "missing_rate": 0.0,
1066
+ "unique_count": 200,
1067
+ "unique_ratio": 0.054348,
1068
+ "example_values": [
1069
+ "0",
1070
+ "0.264",
1071
+ "0.298",
1072
+ "0.119",
1073
+ "0.046"
1074
+ ]
1075
+ }
1076
+ },
1077
+ {
1078
+ "name": "char_freq_%21",
1079
+ "role": "feature",
1080
+ "semantic_type": "numeric",
1081
+ "nullable": false,
1082
+ "missing_tokens": [],
1083
+ "parse_format": null,
1084
+ "impute_strategy": "median",
1085
+ "profile_stats": {
1086
+ "missing_rate": 0.0,
1087
+ "unique_count": 870,
1088
+ "unique_ratio": 0.236413,
1089
+ "example_values": [
1090
+ "0.265",
1091
+ "0.709",
1092
+ "0",
1093
+ "0.751",
1094
+ "0.25"
1095
+ ]
1096
+ }
1097
+ },
1098
+ {
1099
+ "name": "char_freq_%24",
1100
+ "role": "feature",
1101
+ "semantic_type": "numeric",
1102
+ "nullable": false,
1103
+ "missing_tokens": [],
1104
+ "parse_format": null,
1105
+ "impute_strategy": "median",
1106
+ "profile_stats": {
1107
+ "missing_rate": 0.0,
1108
+ "unique_count": 461,
1109
+ "unique_ratio": 0.125272,
1110
+ "example_values": [
1111
+ "0.088",
1112
+ "0",
1113
+ "0.159",
1114
+ "0.255",
1115
+ "0.224"
1116
+ ]
1117
+ }
1118
+ },
1119
+ {
1120
+ "name": "char_freq_%23",
1121
+ "role": "feature",
1122
+ "semantic_type": "numeric",
1123
+ "nullable": false,
1124
+ "missing_tokens": [],
1125
+ "parse_format": null,
1126
+ "impute_strategy": "median",
1127
+ "profile_stats": {
1128
+ "missing_rate": 0.0,
1129
+ "unique_count": 279,
1130
+ "unique_ratio": 0.075815,
1131
+ "example_values": [
1132
+ "1.151",
1133
+ "1.56",
1134
+ "0",
1135
+ "0.095",
1136
+ "0.013"
1137
+ ]
1138
+ }
1139
+ },
1140
+ {
1141
+ "name": "capital_run_length_average",
1142
+ "role": "feature",
1143
+ "semantic_type": "numeric",
1144
+ "nullable": false,
1145
+ "missing_tokens": [],
1146
+ "parse_format": null,
1147
+ "impute_strategy": "median",
1148
+ "profile_stats": {
1149
+ "missing_rate": 0.0,
1150
+ "unique_count": 1865,
1151
+ "unique_ratio": 0.506793,
1152
+ "example_values": [
1153
+ "11.066",
1154
+ "7.82",
1155
+ "1.902",
1156
+ "1.515",
1157
+ "4.163"
1158
+ ]
1159
+ }
1160
+ },
1161
+ {
1162
+ "name": "capital_run_length_longest",
1163
+ "role": "feature",
1164
+ "semantic_type": "numeric",
1165
+ "nullable": false,
1166
+ "missing_tokens": [],
1167
+ "parse_format": null,
1168
+ "impute_strategy": "median",
1169
+ "profile_stats": {
1170
+ "missing_rate": 0.0,
1171
+ "unique_count": 249,
1172
+ "unique_ratio": 0.067663,
1173
+ "example_values": [
1174
+ "67",
1175
+ "39",
1176
+ "10",
1177
+ "5",
1178
+ "84"
1179
+ ]
1180
+ }
1181
+ },
1182
+ {
1183
+ "name": "capital_run_length_total",
1184
+ "role": "feature",
1185
+ "semantic_type": "numeric",
1186
+ "nullable": false,
1187
+ "missing_tokens": [],
1188
+ "parse_format": null,
1189
+ "impute_strategy": "median",
1190
+ "profile_stats": {
1191
+ "missing_rate": 0.0,
1192
+ "unique_count": 828,
1193
+ "unique_ratio": 0.225,
1194
+ "example_values": [
1195
+ "332",
1196
+ "305",
1197
+ "175",
1198
+ "50",
1199
+ "712"
1200
+ ]
1201
+ }
1202
+ },
1203
+ {
1204
+ "name": "class",
1205
+ "role": "target",
1206
+ "semantic_type": "boolean",
1207
+ "nullable": false,
1208
+ "missing_tokens": [],
1209
+ "parse_format": null,
1210
+ "impute_strategy": "mode",
1211
+ "profile_stats": {
1212
+ "missing_rate": 0.0,
1213
+ "unique_count": 2,
1214
+ "unique_ratio": 0.000543,
1215
+ "example_values": [
1216
+ "1",
1217
+ "0"
1218
+ ]
1219
+ }
1220
+ }
1221
+ ]
1222
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/public_gate_report.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "n1",
3
+ "status": "pass",
4
+ "checks": [
5
+ {
6
+ "check_id": "PG001_csv_parse_ok",
7
+ "status": "pass"
8
+ },
9
+ {
10
+ "check_id": "PG002_split_header_consistent",
11
+ "status": "pass"
12
+ },
13
+ {
14
+ "check_id": "PG003_profile_header_match",
15
+ "status": "pass"
16
+ },
17
+ {
18
+ "check_id": "PG004_missing_token_normalized",
19
+ "status": "pass"
20
+ },
21
+ {
22
+ "check_id": "PG005_semantic_type_validated",
23
+ "status": "pass"
24
+ },
25
+ {
26
+ "check_id": "PG006_target_defined_and_valid",
27
+ "status": "pass"
28
+ }
29
+ ],
30
+ "target_column": "class",
31
+ "task_type": "classification",
32
+ "input_splits": {
33
+ "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-train.csv",
34
+ "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-val.csv",
35
+ "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n1/n1-test.csv"
36
+ }
37
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/staged_input_manifest.json ADDED
@@ -0,0 +1,1227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "n1",
3
+ "target_column": "class",
4
+ "task_type": "classification",
5
+ "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/train.csv",
6
+ "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/val.csv",
7
+ "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/test.csv",
8
+ "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/staged_features.json",
9
+ "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/public_gate_report.json",
10
+ "column_schema": [
11
+ {
12
+ "name": "word_freq_make",
13
+ "role": "feature",
14
+ "semantic_type": "numeric",
15
+ "nullable": false,
16
+ "missing_tokens": [],
17
+ "parse_format": null,
18
+ "impute_strategy": "median",
19
+ "profile_stats": {
20
+ "missing_rate": 0.0,
21
+ "unique_count": 137,
22
+ "unique_ratio": 0.037228,
23
+ "example_values": [
24
+ "0",
25
+ "0.98",
26
+ "0.16",
27
+ "0.1",
28
+ "0.07"
29
+ ]
30
+ }
31
+ },
32
+ {
33
+ "name": "word_freq_address",
34
+ "role": "feature",
35
+ "semantic_type": "numeric",
36
+ "nullable": false,
37
+ "missing_tokens": [],
38
+ "parse_format": null,
39
+ "impute_strategy": "median",
40
+ "profile_stats": {
41
+ "missing_rate": 0.0,
42
+ "unique_count": 156,
43
+ "unique_ratio": 0.042391,
44
+ "example_values": [
45
+ "0",
46
+ "0.16",
47
+ "0.24",
48
+ "0.1",
49
+ "0.32"
50
+ ]
51
+ }
52
+ },
53
+ {
54
+ "name": "word_freq_all",
55
+ "role": "feature",
56
+ "semantic_type": "numeric",
57
+ "nullable": false,
58
+ "missing_tokens": [],
59
+ "parse_format": null,
60
+ "impute_strategy": "median",
61
+ "profile_stats": {
62
+ "missing_rate": 0.0,
63
+ "unique_count": 207,
64
+ "unique_ratio": 0.05625,
65
+ "example_values": [
66
+ "1.07",
67
+ "0",
68
+ "0.32",
69
+ "0.41",
70
+ "1.24"
71
+ ]
72
+ }
73
+ },
74
+ {
75
+ "name": "word_freq_3d",
76
+ "role": "feature",
77
+ "semantic_type": "boolean",
78
+ "nullable": false,
79
+ "missing_tokens": [],
80
+ "parse_format": null,
81
+ "impute_strategy": "mode",
82
+ "profile_stats": {
83
+ "missing_rate": 0.0,
84
+ "unique_count": 34,
85
+ "unique_ratio": 0.009239,
86
+ "example_values": [
87
+ "0",
88
+ "4.31",
89
+ "42.81",
90
+ "13.63",
91
+ "0.42"
92
+ ]
93
+ }
94
+ },
95
+ {
96
+ "name": "word_freq_our",
97
+ "role": "feature",
98
+ "semantic_type": "numeric",
99
+ "nullable": false,
100
+ "missing_tokens": [],
101
+ "parse_format": null,
102
+ "impute_strategy": "median",
103
+ "profile_stats": {
104
+ "missing_rate": 0.0,
105
+ "unique_count": 247,
106
+ "unique_ratio": 0.06712,
107
+ "example_values": [
108
+ "0.53",
109
+ "0",
110
+ "0.32",
111
+ "0.08",
112
+ "0.41"
113
+ ]
114
+ }
115
+ },
116
+ {
117
+ "name": "word_freq_over",
118
+ "role": "feature",
119
+ "semantic_type": "numeric",
120
+ "nullable": false,
121
+ "missing_tokens": [],
122
+ "parse_format": null,
123
+ "impute_strategy": "median",
124
+ "profile_stats": {
125
+ "missing_rate": 0.0,
126
+ "unique_count": 130,
127
+ "unique_ratio": 0.035326,
128
+ "example_values": [
129
+ "0",
130
+ "0.8",
131
+ "0.24",
132
+ "0.58",
133
+ "0.2"
134
+ ]
135
+ }
136
+ },
137
+ {
138
+ "name": "word_freq_remove",
139
+ "role": "feature",
140
+ "semantic_type": "numeric",
141
+ "nullable": false,
142
+ "missing_tokens": [],
143
+ "parse_format": null,
144
+ "impute_strategy": "median",
145
+ "profile_stats": {
146
+ "missing_rate": 0.0,
147
+ "unique_count": 160,
148
+ "unique_ratio": 0.043478,
149
+ "example_values": [
150
+ "0",
151
+ "0.49",
152
+ "0.2",
153
+ "0.62",
154
+ "0.16"
155
+ ]
156
+ }
157
+ },
158
+ {
159
+ "name": "word_freq_internet",
160
+ "role": "feature",
161
+ "semantic_type": "numeric",
162
+ "nullable": false,
163
+ "missing_tokens": [],
164
+ "parse_format": null,
165
+ "impute_strategy": "median",
166
+ "profile_stats": {
167
+ "missing_rate": 0.0,
168
+ "unique_count": 156,
169
+ "unique_ratio": 0.042391,
170
+ "example_values": [
171
+ "0",
172
+ "0.08",
173
+ "0.33",
174
+ "0.1",
175
+ "0.88"
176
+ ]
177
+ }
178
+ },
179
+ {
180
+ "name": "word_freq_order",
181
+ "role": "feature",
182
+ "semantic_type": "numeric",
183
+ "nullable": false,
184
+ "missing_tokens": [],
185
+ "parse_format": null,
186
+ "impute_strategy": "median",
187
+ "profile_stats": {
188
+ "missing_rate": 0.0,
189
+ "unique_count": 130,
190
+ "unique_ratio": 0.035326,
191
+ "example_values": [
192
+ "0",
193
+ "0.66",
194
+ "1.43",
195
+ "0.03",
196
+ "0.3"
197
+ ]
198
+ }
199
+ },
200
+ {
201
+ "name": "word_freq_mail",
202
+ "role": "feature",
203
+ "semantic_type": "numeric",
204
+ "nullable": false,
205
+ "missing_tokens": [],
206
+ "parse_format": null,
207
+ "impute_strategy": "median",
208
+ "profile_stats": {
209
+ "missing_rate": 0.0,
210
+ "unique_count": 232,
211
+ "unique_ratio": 0.063043,
212
+ "example_values": [
213
+ "0",
214
+ "0.49",
215
+ "0.66",
216
+ "1.96",
217
+ "0.82"
218
+ ]
219
+ }
220
+ },
221
+ {
222
+ "name": "word_freq_receive",
223
+ "role": "feature",
224
+ "semantic_type": "numeric",
225
+ "nullable": false,
226
+ "missing_tokens": [],
227
+ "parse_format": null,
228
+ "impute_strategy": "median",
229
+ "profile_stats": {
230
+ "missing_rate": 0.0,
231
+ "unique_count": 107,
232
+ "unique_ratio": 0.029076,
233
+ "example_values": [
234
+ "0",
235
+ "0.08",
236
+ "0.24",
237
+ "0.1",
238
+ "0.62"
239
+ ]
240
+ }
241
+ },
242
+ {
243
+ "name": "word_freq_will",
244
+ "role": "feature",
245
+ "semantic_type": "numeric",
246
+ "nullable": false,
247
+ "missing_tokens": [],
248
+ "parse_format": null,
249
+ "impute_strategy": "median",
250
+ "profile_stats": {
251
+ "missing_rate": 0.0,
252
+ "unique_count": 301,
253
+ "unique_ratio": 0.081793,
254
+ "example_values": [
255
+ "0",
256
+ "0.64",
257
+ "1.81",
258
+ "0.57",
259
+ "1.24"
260
+ ]
261
+ }
262
+ },
263
+ {
264
+ "name": "word_freq_people",
265
+ "role": "feature",
266
+ "semantic_type": "numeric",
267
+ "nullable": false,
268
+ "missing_tokens": [],
269
+ "parse_format": null,
270
+ "impute_strategy": "median",
271
+ "profile_stats": {
272
+ "missing_rate": 0.0,
273
+ "unique_count": 148,
274
+ "unique_ratio": 0.040217,
275
+ "example_values": [
276
+ "0",
277
+ "0.9",
278
+ "0.16",
279
+ "0.17",
280
+ "0.74"
281
+ ]
282
+ }
283
+ },
284
+ {
285
+ "name": "word_freq_report",
286
+ "role": "feature",
287
+ "semantic_type": "numeric",
288
+ "nullable": false,
289
+ "missing_tokens": [],
290
+ "parse_format": null,
291
+ "impute_strategy": "median",
292
+ "profile_stats": {
293
+ "missing_rate": 0.0,
294
+ "unique_count": 117,
295
+ "unique_ratio": 0.031793,
296
+ "example_values": [
297
+ "0",
298
+ "1.82",
299
+ "0.23",
300
+ "0.2",
301
+ "0.08"
302
+ ]
303
+ }
304
+ },
305
+ {
306
+ "name": "word_freq_addresses",
307
+ "role": "feature",
308
+ "semantic_type": "numeric",
309
+ "nullable": false,
310
+ "missing_tokens": [],
311
+ "parse_format": null,
312
+ "impute_strategy": "median",
313
+ "profile_stats": {
314
+ "missing_rate": 0.0,
315
+ "unique_count": 108,
316
+ "unique_ratio": 0.029348,
317
+ "example_values": [
318
+ "0",
319
+ "0.16",
320
+ "0.66",
321
+ "0.31",
322
+ "0.4"
323
+ ]
324
+ }
325
+ },
326
+ {
327
+ "name": "word_freq_free",
328
+ "role": "feature",
329
+ "semantic_type": "numeric",
330
+ "nullable": false,
331
+ "missing_tokens": [],
332
+ "parse_format": null,
333
+ "impute_strategy": "median",
334
+ "profile_stats": {
335
+ "missing_rate": 0.0,
336
+ "unique_count": 246,
337
+ "unique_ratio": 0.066848,
338
+ "example_values": [
339
+ "0",
340
+ "0.82",
341
+ "0.1",
342
+ "1.56",
343
+ "0.38"
344
+ ]
345
+ }
346
+ },
347
+ {
348
+ "name": "word_freq_business",
349
+ "role": "feature",
350
+ "semantic_type": "numeric",
351
+ "nullable": false,
352
+ "missing_tokens": [],
353
+ "parse_format": null,
354
+ "impute_strategy": "median",
355
+ "profile_stats": {
356
+ "missing_rate": 0.0,
357
+ "unique_count": 175,
358
+ "unique_ratio": 0.047554,
359
+ "example_values": [
360
+ "0",
361
+ "0.16",
362
+ "0.31",
363
+ "2.22",
364
+ "1.63"
365
+ ]
366
+ }
367
+ },
368
+ {
369
+ "name": "word_freq_email",
370
+ "role": "feature",
371
+ "semantic_type": "numeric",
372
+ "nullable": false,
373
+ "missing_tokens": [],
374
+ "parse_format": null,
375
+ "impute_strategy": "median",
376
+ "profile_stats": {
377
+ "missing_rate": 0.0,
378
+ "unique_count": 217,
379
+ "unique_ratio": 0.058967,
380
+ "example_values": [
381
+ "0",
382
+ "0.32",
383
+ "1.57",
384
+ "1.96",
385
+ "1.02"
386
+ ]
387
+ }
388
+ },
389
+ {
390
+ "name": "word_freq_you",
391
+ "role": "feature",
392
+ "semantic_type": "numeric",
393
+ "nullable": false,
394
+ "missing_tokens": [],
395
+ "parse_format": null,
396
+ "impute_strategy": "median",
397
+ "profile_stats": {
398
+ "missing_rate": 0.0,
399
+ "unique_count": 548,
400
+ "unique_ratio": 0.148913,
401
+ "example_values": [
402
+ "3.22",
403
+ "2.4",
404
+ "0.32",
405
+ "1.81",
406
+ "2.46"
407
+ ]
408
+ }
409
+ },
410
+ {
411
+ "name": "word_freq_credit",
412
+ "role": "feature",
413
+ "semantic_type": "numeric",
414
+ "nullable": false,
415
+ "missing_tokens": [],
416
+ "parse_format": null,
417
+ "impute_strategy": "median",
418
+ "profile_stats": {
419
+ "missing_rate": 0.0,
420
+ "unique_count": 126,
421
+ "unique_ratio": 0.034239,
422
+ "example_values": [
423
+ "0.53",
424
+ "0",
425
+ "0.16",
426
+ "0.41",
427
+ "0.4"
428
+ ]
429
+ }
430
+ },
431
+ {
432
+ "name": "word_freq_your",
433
+ "role": "feature",
434
+ "semantic_type": "numeric",
435
+ "nullable": false,
436
+ "missing_tokens": [],
437
+ "parse_format": null,
438
+ "impute_strategy": "median",
439
+ "profile_stats": {
440
+ "missing_rate": 0.0,
441
+ "unique_count": 383,
442
+ "unique_ratio": 0.104076,
443
+ "example_values": [
444
+ "1.07",
445
+ "0",
446
+ "1.14",
447
+ "1.16",
448
+ "1.84"
449
+ ]
450
+ }
451
+ },
452
+ {
453
+ "name": "word_freq_font",
454
+ "role": "feature",
455
+ "semantic_type": "numeric",
456
+ "nullable": false,
457
+ "missing_tokens": [],
458
+ "parse_format": null,
459
+ "impute_strategy": "median",
460
+ "profile_stats": {
461
+ "missing_rate": 0.0,
462
+ "unique_count": 82,
463
+ "unique_ratio": 0.022283,
464
+ "example_values": [
465
+ "8.06",
466
+ "12.8",
467
+ "0",
468
+ "0.2",
469
+ "7.33"
470
+ ]
471
+ }
472
+ },
473
+ {
474
+ "name": "word_freq_000",
475
+ "role": "feature",
476
+ "semantic_type": "numeric",
477
+ "nullable": false,
478
+ "missing_tokens": [],
479
+ "parse_format": null,
480
+ "impute_strategy": "median",
481
+ "profile_stats": {
482
+ "missing_rate": 0.0,
483
+ "unique_count": 152,
484
+ "unique_ratio": 0.041304,
485
+ "example_values": [
486
+ "0",
487
+ "0.49",
488
+ "0.91",
489
+ "0.09",
490
+ "0.72"
491
+ ]
492
+ }
493
+ },
494
+ {
495
+ "name": "word_freq_money",
496
+ "role": "feature",
497
+ "semantic_type": "numeric",
498
+ "nullable": false,
499
+ "missing_tokens": [],
500
+ "parse_format": null,
501
+ "impute_strategy": "median",
502
+ "profile_stats": {
503
+ "missing_rate": 0.0,
504
+ "unique_count": 127,
505
+ "unique_ratio": 0.034511,
506
+ "example_values": [
507
+ "0",
508
+ "1.14",
509
+ "0.16",
510
+ "0.3",
511
+ "0.32"
512
+ ]
513
+ }
514
+ },
515
+ {
516
+ "name": "word_freq_hp",
517
+ "role": "feature",
518
+ "semantic_type": "numeric",
519
+ "nullable": false,
520
+ "missing_tokens": [],
521
+ "parse_format": null,
522
+ "impute_strategy": "median",
523
+ "profile_stats": {
524
+ "missing_rate": 0.0,
525
+ "unique_count": 360,
526
+ "unique_ratio": 0.097826,
527
+ "example_values": [
528
+ "0",
529
+ "0.64",
530
+ "0.72",
531
+ "0.52",
532
+ "5.45"
533
+ ]
534
+ }
535
+ },
536
+ {
537
+ "name": "word_freq_hpl",
538
+ "role": "feature",
539
+ "semantic_type": "numeric",
540
+ "nullable": false,
541
+ "missing_tokens": [],
542
+ "parse_format": null,
543
+ "impute_strategy": "median",
544
+ "profile_stats": {
545
+ "missing_rate": 0.0,
546
+ "unique_count": 262,
547
+ "unique_ratio": 0.071196,
548
+ "example_values": [
549
+ "0",
550
+ "0.64",
551
+ "6.56",
552
+ "0.35",
553
+ "2.17"
554
+ ]
555
+ }
556
+ },
557
+ {
558
+ "name": "word_freq_george",
559
+ "role": "feature",
560
+ "semantic_type": "numeric",
561
+ "nullable": false,
562
+ "missing_tokens": [],
563
+ "parse_format": null,
564
+ "impute_strategy": "median",
565
+ "profile_stats": {
566
+ "missing_rate": 0.0,
567
+ "unique_count": 226,
568
+ "unique_ratio": 0.061413,
569
+ "example_values": [
570
+ "0",
571
+ "0.35",
572
+ "0.47",
573
+ "0.23",
574
+ "0.86"
575
+ ]
576
+ }
577
+ },
578
+ {
579
+ "name": "word_freq_650",
580
+ "role": "feature",
581
+ "semantic_type": "numeric",
582
+ "nullable": false,
583
+ "missing_tokens": [],
584
+ "parse_format": null,
585
+ "impute_strategy": "median",
586
+ "profile_stats": {
587
+ "missing_rate": 0.0,
588
+ "unique_count": 187,
589
+ "unique_ratio": 0.050815,
590
+ "example_values": [
591
+ "0",
592
+ "1.96",
593
+ "0.17",
594
+ "0.11",
595
+ "0.28"
596
+ ]
597
+ }
598
+ },
599
+ {
600
+ "name": "word_freq_lab",
601
+ "role": "feature",
602
+ "semantic_type": "numeric",
603
+ "nullable": false,
604
+ "missing_tokens": [],
605
+ "parse_format": null,
606
+ "impute_strategy": "median",
607
+ "profile_stats": {
608
+ "missing_rate": 0.0,
609
+ "unique_count": 145,
610
+ "unique_ratio": 0.039402,
611
+ "example_values": [
612
+ "0",
613
+ "0.17",
614
+ "0.47",
615
+ "0.11",
616
+ "0.28"
617
+ ]
618
+ }
619
+ },
620
+ {
621
+ "name": "word_freq_labs",
622
+ "role": "feature",
623
+ "semantic_type": "numeric",
624
+ "nullable": false,
625
+ "missing_tokens": [],
626
+ "parse_format": null,
627
+ "impute_strategy": "median",
628
+ "profile_stats": {
629
+ "missing_rate": 0.0,
630
+ "unique_count": 160,
631
+ "unique_ratio": 0.043478,
632
+ "example_values": [
633
+ "0",
634
+ "0.17",
635
+ "0.11",
636
+ "0.28",
637
+ "1.19"
638
+ ]
639
+ }
640
+ },
641
+ {
642
+ "name": "word_freq_telnet",
643
+ "role": "feature",
644
+ "semantic_type": "numeric",
645
+ "nullable": false,
646
+ "missing_tokens": [],
647
+ "parse_format": null,
648
+ "impute_strategy": "median",
649
+ "profile_stats": {
650
+ "missing_rate": 0.0,
651
+ "unique_count": 116,
652
+ "unique_ratio": 0.031522,
653
+ "example_values": [
654
+ "0",
655
+ "0.17",
656
+ "0.18",
657
+ "1.16",
658
+ "0.28"
659
+ ]
660
+ }
661
+ },
662
+ {
663
+ "name": "word_freq_857",
664
+ "role": "feature",
665
+ "semantic_type": "numeric",
666
+ "nullable": false,
667
+ "missing_tokens": [],
668
+ "parse_format": null,
669
+ "impute_strategy": "median",
670
+ "profile_stats": {
671
+ "missing_rate": 0.0,
672
+ "unique_count": 97,
673
+ "unique_ratio": 0.026359,
674
+ "example_values": [
675
+ "0",
676
+ "0.17",
677
+ "0.28",
678
+ "0.39",
679
+ "2.77"
680
+ ]
681
+ }
682
+ },
683
+ {
684
+ "name": "word_freq_data",
685
+ "role": "feature",
686
+ "semantic_type": "numeric",
687
+ "nullable": false,
688
+ "missing_tokens": [],
689
+ "parse_format": null,
690
+ "impute_strategy": "median",
691
+ "profile_stats": {
692
+ "missing_rate": 0.0,
693
+ "unique_count": 166,
694
+ "unique_ratio": 0.045109,
695
+ "example_values": [
696
+ "0",
697
+ "0.17",
698
+ "0.47",
699
+ "0.03",
700
+ "0.14"
701
+ ]
702
+ }
703
+ },
704
+ {
705
+ "name": "word_freq_415",
706
+ "role": "feature",
707
+ "semantic_type": "numeric",
708
+ "nullable": false,
709
+ "missing_tokens": [],
710
+ "parse_format": null,
711
+ "impute_strategy": "median",
712
+ "profile_stats": {
713
+ "missing_rate": 0.0,
714
+ "unique_count": 102,
715
+ "unique_ratio": 0.027717,
716
+ "example_values": [
717
+ "0",
718
+ "0.17",
719
+ "0.28",
720
+ "0.39",
721
+ "2.77"
722
+ ]
723
+ }
724
+ },
725
+ {
726
+ "name": "word_freq_85",
727
+ "role": "feature",
728
+ "semantic_type": "numeric",
729
+ "nullable": false,
730
+ "missing_tokens": [],
731
+ "parse_format": null,
732
+ "impute_strategy": "median",
733
+ "profile_stats": {
734
+ "missing_rate": 0.0,
735
+ "unique_count": 158,
736
+ "unique_ratio": 0.042935,
737
+ "example_values": [
738
+ "0",
739
+ "0.1",
740
+ "0.17",
741
+ "0.22",
742
+ "0.28"
743
+ ]
744
+ }
745
+ },
746
+ {
747
+ "name": "word_freq_technology",
748
+ "role": "feature",
749
+ "semantic_type": "numeric",
750
+ "nullable": false,
751
+ "missing_tokens": [],
752
+ "parse_format": null,
753
+ "impute_strategy": "median",
754
+ "profile_stats": {
755
+ "missing_rate": 0.0,
756
+ "unique_count": 151,
757
+ "unique_ratio": 0.041033,
758
+ "example_values": [
759
+ "0",
760
+ "0.32",
761
+ "0.72",
762
+ "0.17",
763
+ "0.07"
764
+ ]
765
+ }
766
+ },
767
+ {
768
+ "name": "word_freq_1999",
769
+ "role": "feature",
770
+ "semantic_type": "numeric",
771
+ "nullable": false,
772
+ "missing_tokens": [],
773
+ "parse_format": null,
774
+ "impute_strategy": "median",
775
+ "profile_stats": {
776
+ "missing_rate": 0.0,
777
+ "unique_count": 180,
778
+ "unique_ratio": 0.048913,
779
+ "example_values": [
780
+ "0",
781
+ "0.64",
782
+ "0.17",
783
+ "0.71",
784
+ "0.18"
785
+ ]
786
+ }
787
+ },
788
+ {
789
+ "name": "word_freq_parts",
790
+ "role": "feature",
791
+ "semantic_type": "boolean",
792
+ "nullable": false,
793
+ "missing_tokens": [],
794
+ "parse_format": null,
795
+ "impute_strategy": "mode",
796
+ "profile_stats": {
797
+ "missing_rate": 0.0,
798
+ "unique_count": 48,
799
+ "unique_ratio": 0.013043,
800
+ "example_values": [
801
+ "0",
802
+ "0.14",
803
+ "1.44",
804
+ "0.04",
805
+ "0.29"
806
+ ]
807
+ }
808
+ },
809
+ {
810
+ "name": "word_freq_pm",
811
+ "role": "feature",
812
+ "semantic_type": "numeric",
813
+ "nullable": false,
814
+ "missing_tokens": [],
815
+ "parse_format": null,
816
+ "impute_strategy": "median",
817
+ "profile_stats": {
818
+ "missing_rate": 0.0,
819
+ "unique_count": 149,
820
+ "unique_ratio": 0.040489,
821
+ "example_values": [
822
+ "0",
823
+ "0.1",
824
+ "0.14",
825
+ "1.58",
826
+ "1.96"
827
+ ]
828
+ }
829
+ },
830
+ {
831
+ "name": "word_freq_direct",
832
+ "role": "feature",
833
+ "semantic_type": "numeric",
834
+ "nullable": false,
835
+ "missing_tokens": [],
836
+ "parse_format": null,
837
+ "impute_strategy": "median",
838
+ "profile_stats": {
839
+ "missing_rate": 0.0,
840
+ "unique_count": 112,
841
+ "unique_ratio": 0.030435,
842
+ "example_values": [
843
+ "0",
844
+ "0.08",
845
+ "0.17",
846
+ "0.16",
847
+ "0.03"
848
+ ]
849
+ }
850
+ },
851
+ {
852
+ "name": "word_freq_cs",
853
+ "role": "feature",
854
+ "semantic_type": "numeric",
855
+ "nullable": false,
856
+ "missing_tokens": [],
857
+ "parse_format": null,
858
+ "impute_strategy": "median",
859
+ "profile_stats": {
860
+ "missing_rate": 0.0,
861
+ "unique_count": 95,
862
+ "unique_ratio": 0.025815,
863
+ "example_values": [
864
+ "0",
865
+ "0.34",
866
+ "0.51",
867
+ "3.12",
868
+ "0.37"
869
+ ]
870
+ }
871
+ },
872
+ {
873
+ "name": "word_freq_meeting",
874
+ "role": "feature",
875
+ "semantic_type": "numeric",
876
+ "nullable": false,
877
+ "missing_tokens": [],
878
+ "parse_format": null,
879
+ "impute_strategy": "median",
880
+ "profile_stats": {
881
+ "missing_rate": 0.0,
882
+ "unique_count": 172,
883
+ "unique_ratio": 0.046739,
884
+ "example_values": [
885
+ "0",
886
+ "0.9",
887
+ "1.21",
888
+ "0.71",
889
+ "0.04"
890
+ ]
891
+ }
892
+ },
893
+ {
894
+ "name": "word_freq_original",
895
+ "role": "feature",
896
+ "semantic_type": "numeric",
897
+ "nullable": false,
898
+ "missing_tokens": [],
899
+ "parse_format": null,
900
+ "impute_strategy": "median",
901
+ "profile_stats": {
902
+ "missing_rate": 0.0,
903
+ "unique_count": 123,
904
+ "unique_ratio": 0.033424,
905
+ "example_values": [
906
+ "0",
907
+ "0.94",
908
+ "0.43",
909
+ "0.09",
910
+ "0.39"
911
+ ]
912
+ }
913
+ },
914
+ {
915
+ "name": "word_freq_project",
916
+ "role": "feature",
917
+ "semantic_type": "numeric",
918
+ "nullable": false,
919
+ "missing_tokens": [],
920
+ "parse_format": null,
921
+ "impute_strategy": "median",
922
+ "profile_stats": {
923
+ "missing_rate": 0.0,
924
+ "unique_count": 142,
925
+ "unique_ratio": 0.038587,
926
+ "example_values": [
927
+ "0",
928
+ "0.97",
929
+ "1.08",
930
+ "0.41",
931
+ "0.37"
932
+ ]
933
+ }
934
+ },
935
+ {
936
+ "name": "word_freq_re",
937
+ "role": "feature",
938
+ "semantic_type": "numeric",
939
+ "nullable": false,
940
+ "missing_tokens": [],
941
+ "parse_format": null,
942
+ "impute_strategy": "median",
943
+ "profile_stats": {
944
+ "missing_rate": 0.0,
945
+ "unique_count": 222,
946
+ "unique_ratio": 0.060326,
947
+ "example_values": [
948
+ "0",
949
+ "0.08",
950
+ "0.17",
951
+ "0.38",
952
+ "1.18"
953
+ ]
954
+ }
955
+ },
956
+ {
957
+ "name": "word_freq_edu",
958
+ "role": "feature",
959
+ "semantic_type": "numeric",
960
+ "nullable": false,
961
+ "missing_tokens": [],
962
+ "parse_format": null,
963
+ "impute_strategy": "median",
964
+ "profile_stats": {
965
+ "missing_rate": 0.0,
966
+ "unique_count": 203,
967
+ "unique_ratio": 0.055163,
968
+ "example_values": [
969
+ "0",
970
+ "4.76",
971
+ "0.25",
972
+ "0.28",
973
+ "0.9"
974
+ ]
975
+ }
976
+ },
977
+ {
978
+ "name": "word_freq_table",
979
+ "role": "feature",
980
+ "semantic_type": "boolean",
981
+ "nullable": false,
982
+ "missing_tokens": [],
983
+ "parse_format": null,
984
+ "impute_strategy": "mode",
985
+ "profile_stats": {
986
+ "missing_rate": 0.0,
987
+ "unique_count": 31,
988
+ "unique_ratio": 0.008424,
989
+ "example_values": [
990
+ "0",
991
+ "1.51",
992
+ "0.72",
993
+ "0.61",
994
+ "0.04"
995
+ ]
996
+ }
997
+ },
998
+ {
999
+ "name": "word_freq_conference",
1000
+ "role": "feature",
1001
+ "semantic_type": "numeric",
1002
+ "nullable": false,
1003
+ "missing_tokens": [],
1004
+ "parse_format": null,
1005
+ "impute_strategy": "median",
1006
+ "profile_stats": {
1007
+ "missing_rate": 0.0,
1008
+ "unique_count": 94,
1009
+ "unique_ratio": 0.025543,
1010
+ "example_values": [
1011
+ "0",
1012
+ "0.03",
1013
+ "2.22",
1014
+ "0.14",
1015
+ "0.74"
1016
+ ]
1017
+ }
1018
+ },
1019
+ {
1020
+ "name": "char_freq_%3B",
1021
+ "role": "feature",
1022
+ "semantic_type": "numeric",
1023
+ "nullable": false,
1024
+ "missing_tokens": [],
1025
+ "parse_format": null,
1026
+ "impute_strategy": "median",
1027
+ "profile_stats": {
1028
+ "missing_rate": 0.0,
1029
+ "unique_count": 281,
1030
+ "unique_ratio": 0.076359,
1031
+ "example_values": [
1032
+ "0",
1033
+ "0.119",
1034
+ "0.028",
1035
+ "0.176",
1036
+ "0.023"
1037
+ ]
1038
+ }
1039
+ },
1040
+ {
1041
+ "name": "char_freq_%28",
1042
+ "role": "feature",
1043
+ "semantic_type": "numeric",
1044
+ "nullable": false,
1045
+ "missing_tokens": [],
1046
+ "parse_format": null,
1047
+ "impute_strategy": "median",
1048
+ "profile_stats": {
1049
+ "missing_rate": 0.0,
1050
+ "unique_count": 586,
1051
+ "unique_ratio": 0.159239,
1052
+ "example_values": [
1053
+ "0",
1054
+ "0.04",
1055
+ "0.159",
1056
+ "0.095",
1057
+ "0.132"
1058
+ ]
1059
+ }
1060
+ },
1061
+ {
1062
+ "name": "char_freq_%5B",
1063
+ "role": "feature",
1064
+ "semantic_type": "numeric",
1065
+ "nullable": false,
1066
+ "missing_tokens": [],
1067
+ "parse_format": null,
1068
+ "impute_strategy": "median",
1069
+ "profile_stats": {
1070
+ "missing_rate": 0.0,
1071
+ "unique_count": 200,
1072
+ "unique_ratio": 0.054348,
1073
+ "example_values": [
1074
+ "0",
1075
+ "0.264",
1076
+ "0.298",
1077
+ "0.119",
1078
+ "0.046"
1079
+ ]
1080
+ }
1081
+ },
1082
+ {
1083
+ "name": "char_freq_%21",
1084
+ "role": "feature",
1085
+ "semantic_type": "numeric",
1086
+ "nullable": false,
1087
+ "missing_tokens": [],
1088
+ "parse_format": null,
1089
+ "impute_strategy": "median",
1090
+ "profile_stats": {
1091
+ "missing_rate": 0.0,
1092
+ "unique_count": 870,
1093
+ "unique_ratio": 0.236413,
1094
+ "example_values": [
1095
+ "0.265",
1096
+ "0.709",
1097
+ "0",
1098
+ "0.751",
1099
+ "0.25"
1100
+ ]
1101
+ }
1102
+ },
1103
+ {
1104
+ "name": "char_freq_%24",
1105
+ "role": "feature",
1106
+ "semantic_type": "numeric",
1107
+ "nullable": false,
1108
+ "missing_tokens": [],
1109
+ "parse_format": null,
1110
+ "impute_strategy": "median",
1111
+ "profile_stats": {
1112
+ "missing_rate": 0.0,
1113
+ "unique_count": 461,
1114
+ "unique_ratio": 0.125272,
1115
+ "example_values": [
1116
+ "0.088",
1117
+ "0",
1118
+ "0.159",
1119
+ "0.255",
1120
+ "0.224"
1121
+ ]
1122
+ }
1123
+ },
1124
+ {
1125
+ "name": "char_freq_%23",
1126
+ "role": "feature",
1127
+ "semantic_type": "numeric",
1128
+ "nullable": false,
1129
+ "missing_tokens": [],
1130
+ "parse_format": null,
1131
+ "impute_strategy": "median",
1132
+ "profile_stats": {
1133
+ "missing_rate": 0.0,
1134
+ "unique_count": 279,
1135
+ "unique_ratio": 0.075815,
1136
+ "example_values": [
1137
+ "1.151",
1138
+ "1.56",
1139
+ "0",
1140
+ "0.095",
1141
+ "0.013"
1142
+ ]
1143
+ }
1144
+ },
1145
+ {
1146
+ "name": "capital_run_length_average",
1147
+ "role": "feature",
1148
+ "semantic_type": "numeric",
1149
+ "nullable": false,
1150
+ "missing_tokens": [],
1151
+ "parse_format": null,
1152
+ "impute_strategy": "median",
1153
+ "profile_stats": {
1154
+ "missing_rate": 0.0,
1155
+ "unique_count": 1865,
1156
+ "unique_ratio": 0.506793,
1157
+ "example_values": [
1158
+ "11.066",
1159
+ "7.82",
1160
+ "1.902",
1161
+ "1.515",
1162
+ "4.163"
1163
+ ]
1164
+ }
1165
+ },
1166
+ {
1167
+ "name": "capital_run_length_longest",
1168
+ "role": "feature",
1169
+ "semantic_type": "numeric",
1170
+ "nullable": false,
1171
+ "missing_tokens": [],
1172
+ "parse_format": null,
1173
+ "impute_strategy": "median",
1174
+ "profile_stats": {
1175
+ "missing_rate": 0.0,
1176
+ "unique_count": 249,
1177
+ "unique_ratio": 0.067663,
1178
+ "example_values": [
1179
+ "67",
1180
+ "39",
1181
+ "10",
1182
+ "5",
1183
+ "84"
1184
+ ]
1185
+ }
1186
+ },
1187
+ {
1188
+ "name": "capital_run_length_total",
1189
+ "role": "feature",
1190
+ "semantic_type": "numeric",
1191
+ "nullable": false,
1192
+ "missing_tokens": [],
1193
+ "parse_format": null,
1194
+ "impute_strategy": "median",
1195
+ "profile_stats": {
1196
+ "missing_rate": 0.0,
1197
+ "unique_count": 828,
1198
+ "unique_ratio": 0.225,
1199
+ "example_values": [
1200
+ "332",
1201
+ "305",
1202
+ "175",
1203
+ "50",
1204
+ "712"
1205
+ ]
1206
+ }
1207
+ },
1208
+ {
1209
+ "name": "class",
1210
+ "role": "target",
1211
+ "semantic_type": "boolean",
1212
+ "nullable": false,
1213
+ "missing_tokens": [],
1214
+ "parse_format": null,
1215
+ "impute_strategy": "mode",
1216
+ "profile_stats": {
1217
+ "missing_rate": 0.0,
1218
+ "unique_count": 2,
1219
+ "unique_ratio": 0.000543,
1220
+ "example_values": [
1221
+ "1",
1222
+ "0"
1223
+ ]
1224
+ }
1225
+ }
1226
+ ]
1227
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/run_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": 1,
3
+ "recorded_at": "2026-05-10T20:25:54",
4
+ "dataset_id": "n1",
5
+ "model": "tabbyflow",
6
+ "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554",
7
+ "dataset_source_requested": "new",
8
+ "dataset_source_resolved": "new",
9
+ "cli_args": {
10
+ "model": "tabbyflow",
11
+ "dataset": "n1",
12
+ "dataset_source": "new",
13
+ "train": true,
14
+ "generate": true,
15
+ "num_rows": 0,
16
+ "epochs": 100,
17
+ "output_dir": null,
18
+ "model_dir": null,
19
+ "work_dir": null,
20
+ "resume": false,
21
+ "no_stats": false
22
+ },
23
+ "resolved": {
24
+ "num_rows": 3680,
25
+ "model_path": null,
26
+ "output_csv": null
27
+ },
28
+ "input_artifacts": {
29
+ "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/public_gate_report.json",
30
+ "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/staged_input_manifest.json",
31
+ "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/model_input_manifest.json",
32
+ "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/train.csv",
33
+ "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/staged_features.json",
34
+ "target_column": "class",
35
+ "task_type": "classification"
36
+ },
37
+ "env_overrides": {
38
+ "BENCHMARK_TABBYFLOW_GPUS": "device=3",
39
+ "EFVFM_EVAL_NUM_SAMPLES": "512",
40
+ "EFVFM_SAMPLE_BATCH_SIZE": "64"
41
+ }
42
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/runtime_result.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "n1",
3
+ "model": "tabbyflow",
4
+ "run_id": "tabbyflow-n1-20260510_202554",
5
+ "public_gate_status": "pass",
6
+ "adapter_ready_status": "pass",
7
+ "train_status": "fail",
8
+ "generate_status": "skipped",
9
+ "reason_code": "adapter_runtime_error",
10
+ "reason_detail": "Command '['docker', 'run', '--rm', '--init', '--user', '1005:1005', '-e', 'HOME=/work/.home', '--cidfile', '/tmp/bench_docker_tabbyflow_qznz6391/container.cid', '--gpus', 'device=3', '-e', 'WANDB_MODE=disabled', '-v', '/data/jialinzhang/SynthesizePipeline-server:/work', '-w', '/work', '-v', '/data/jialinzhang/synthetic_benchmark/third_party/ef-vfm:/workspace/ef-vfm', 'benchmark:tabdiff-tabbyflow-zjl', 'python', '/work/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/_tabbyflow_train.py']' returned non-zero exit status 1.",
11
+ "artifacts": {},
12
+ "timings": {
13
+ "train": {
14
+ "started_at": "2026-05-10T20:25:54",
15
+ "ended_at": "2026-05-10T20:25:55",
16
+ "duration_sec": 1.291
17
+ },
18
+ "generate": {
19
+ "started_at": null,
20
+ "ended_at": null,
21
+ "duration_sec": null
22
+ }
23
+ }
24
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/staged_features.json ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "feature_name": "word_freq_make",
4
+ "data_type": "continuous",
5
+ "is_target": false
6
+ },
7
+ {
8
+ "feature_name": "word_freq_address",
9
+ "data_type": "continuous",
10
+ "is_target": false
11
+ },
12
+ {
13
+ "feature_name": "word_freq_all",
14
+ "data_type": "continuous",
15
+ "is_target": false
16
+ },
17
+ {
18
+ "feature_name": "word_freq_3d",
19
+ "data_type": "binary",
20
+ "is_target": false
21
+ },
22
+ {
23
+ "feature_name": "word_freq_our",
24
+ "data_type": "continuous",
25
+ "is_target": false
26
+ },
27
+ {
28
+ "feature_name": "word_freq_over",
29
+ "data_type": "continuous",
30
+ "is_target": false
31
+ },
32
+ {
33
+ "feature_name": "word_freq_remove",
34
+ "data_type": "continuous",
35
+ "is_target": false
36
+ },
37
+ {
38
+ "feature_name": "word_freq_internet",
39
+ "data_type": "continuous",
40
+ "is_target": false
41
+ },
42
+ {
43
+ "feature_name": "word_freq_order",
44
+ "data_type": "continuous",
45
+ "is_target": false
46
+ },
47
+ {
48
+ "feature_name": "word_freq_mail",
49
+ "data_type": "continuous",
50
+ "is_target": false
51
+ },
52
+ {
53
+ "feature_name": "word_freq_receive",
54
+ "data_type": "continuous",
55
+ "is_target": false
56
+ },
57
+ {
58
+ "feature_name": "word_freq_will",
59
+ "data_type": "continuous",
60
+ "is_target": false
61
+ },
62
+ {
63
+ "feature_name": "word_freq_people",
64
+ "data_type": "continuous",
65
+ "is_target": false
66
+ },
67
+ {
68
+ "feature_name": "word_freq_report",
69
+ "data_type": "continuous",
70
+ "is_target": false
71
+ },
72
+ {
73
+ "feature_name": "word_freq_addresses",
74
+ "data_type": "continuous",
75
+ "is_target": false
76
+ },
77
+ {
78
+ "feature_name": "word_freq_free",
79
+ "data_type": "continuous",
80
+ "is_target": false
81
+ },
82
+ {
83
+ "feature_name": "word_freq_business",
84
+ "data_type": "continuous",
85
+ "is_target": false
86
+ },
87
+ {
88
+ "feature_name": "word_freq_email",
89
+ "data_type": "continuous",
90
+ "is_target": false
91
+ },
92
+ {
93
+ "feature_name": "word_freq_you",
94
+ "data_type": "continuous",
95
+ "is_target": false
96
+ },
97
+ {
98
+ "feature_name": "word_freq_credit",
99
+ "data_type": "continuous",
100
+ "is_target": false
101
+ },
102
+ {
103
+ "feature_name": "word_freq_your",
104
+ "data_type": "continuous",
105
+ "is_target": false
106
+ },
107
+ {
108
+ "feature_name": "word_freq_font",
109
+ "data_type": "continuous",
110
+ "is_target": false
111
+ },
112
+ {
113
+ "feature_name": "word_freq_000",
114
+ "data_type": "continuous",
115
+ "is_target": false
116
+ },
117
+ {
118
+ "feature_name": "word_freq_money",
119
+ "data_type": "continuous",
120
+ "is_target": false
121
+ },
122
+ {
123
+ "feature_name": "word_freq_hp",
124
+ "data_type": "continuous",
125
+ "is_target": false
126
+ },
127
+ {
128
+ "feature_name": "word_freq_hpl",
129
+ "data_type": "continuous",
130
+ "is_target": false
131
+ },
132
+ {
133
+ "feature_name": "word_freq_george",
134
+ "data_type": "continuous",
135
+ "is_target": false
136
+ },
137
+ {
138
+ "feature_name": "word_freq_650",
139
+ "data_type": "continuous",
140
+ "is_target": false
141
+ },
142
+ {
143
+ "feature_name": "word_freq_lab",
144
+ "data_type": "continuous",
145
+ "is_target": false
146
+ },
147
+ {
148
+ "feature_name": "word_freq_labs",
149
+ "data_type": "continuous",
150
+ "is_target": false
151
+ },
152
+ {
153
+ "feature_name": "word_freq_telnet",
154
+ "data_type": "continuous",
155
+ "is_target": false
156
+ },
157
+ {
158
+ "feature_name": "word_freq_857",
159
+ "data_type": "continuous",
160
+ "is_target": false
161
+ },
162
+ {
163
+ "feature_name": "word_freq_data",
164
+ "data_type": "continuous",
165
+ "is_target": false
166
+ },
167
+ {
168
+ "feature_name": "word_freq_415",
169
+ "data_type": "continuous",
170
+ "is_target": false
171
+ },
172
+ {
173
+ "feature_name": "word_freq_85",
174
+ "data_type": "continuous",
175
+ "is_target": false
176
+ },
177
+ {
178
+ "feature_name": "word_freq_technology",
179
+ "data_type": "continuous",
180
+ "is_target": false
181
+ },
182
+ {
183
+ "feature_name": "word_freq_1999",
184
+ "data_type": "continuous",
185
+ "is_target": false
186
+ },
187
+ {
188
+ "feature_name": "word_freq_parts",
189
+ "data_type": "binary",
190
+ "is_target": false
191
+ },
192
+ {
193
+ "feature_name": "word_freq_pm",
194
+ "data_type": "continuous",
195
+ "is_target": false
196
+ },
197
+ {
198
+ "feature_name": "word_freq_direct",
199
+ "data_type": "continuous",
200
+ "is_target": false
201
+ },
202
+ {
203
+ "feature_name": "word_freq_cs",
204
+ "data_type": "continuous",
205
+ "is_target": false
206
+ },
207
+ {
208
+ "feature_name": "word_freq_meeting",
209
+ "data_type": "continuous",
210
+ "is_target": false
211
+ },
212
+ {
213
+ "feature_name": "word_freq_original",
214
+ "data_type": "continuous",
215
+ "is_target": false
216
+ },
217
+ {
218
+ "feature_name": "word_freq_project",
219
+ "data_type": "continuous",
220
+ "is_target": false
221
+ },
222
+ {
223
+ "feature_name": "word_freq_re",
224
+ "data_type": "continuous",
225
+ "is_target": false
226
+ },
227
+ {
228
+ "feature_name": "word_freq_edu",
229
+ "data_type": "continuous",
230
+ "is_target": false
231
+ },
232
+ {
233
+ "feature_name": "word_freq_table",
234
+ "data_type": "binary",
235
+ "is_target": false
236
+ },
237
+ {
238
+ "feature_name": "word_freq_conference",
239
+ "data_type": "continuous",
240
+ "is_target": false
241
+ },
242
+ {
243
+ "feature_name": "char_freq_%3B",
244
+ "data_type": "continuous",
245
+ "is_target": false
246
+ },
247
+ {
248
+ "feature_name": "char_freq_%28",
249
+ "data_type": "continuous",
250
+ "is_target": false
251
+ },
252
+ {
253
+ "feature_name": "char_freq_%5B",
254
+ "data_type": "continuous",
255
+ "is_target": false
256
+ },
257
+ {
258
+ "feature_name": "char_freq_%21",
259
+ "data_type": "continuous",
260
+ "is_target": false
261
+ },
262
+ {
263
+ "feature_name": "char_freq_%24",
264
+ "data_type": "continuous",
265
+ "is_target": false
266
+ },
267
+ {
268
+ "feature_name": "char_freq_%23",
269
+ "data_type": "continuous",
270
+ "is_target": false
271
+ },
272
+ {
273
+ "feature_name": "capital_run_length_average",
274
+ "data_type": "continuous",
275
+ "is_target": false
276
+ },
277
+ {
278
+ "feature_name": "capital_run_length_longest",
279
+ "data_type": "continuous",
280
+ "is_target": false
281
+ },
282
+ {
283
+ "feature_name": "capital_run_length_total",
284
+ "data_type": "continuous",
285
+ "is_target": false
286
+ },
287
+ {
288
+ "feature_name": "class",
289
+ "data_type": "binary",
290
+ "is_target": true
291
+ }
292
+ ]
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03
3
+ size 111841
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23
3
+ size 885832
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c
3
+ size 111513
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/adapter_report.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "adapter_ready_status": "pass",
3
+ "adapter_fail_reason_code": null,
4
+ "adapter_fail_detail": null,
5
+ "adapter_transforms_applied": [],
6
+ "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/model_input_manifest.json"
7
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/adapter_transforms_applied.json ADDED
@@ -0,0 +1 @@
 
 
1
+ []
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/tabbyflow/model_input_manifest.json ADDED
@@ -0,0 +1,1229 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "n1",
3
+ "model": "tabbyflow",
4
+ "target_column": "class",
5
+ "task_type": "classification",
6
+ "column_schema": [
7
+ {
8
+ "name": "word_freq_make",
9
+ "role": "feature",
10
+ "semantic_type": "numeric",
11
+ "nullable": false,
12
+ "missing_tokens": [],
13
+ "parse_format": null,
14
+ "impute_strategy": "median",
15
+ "profile_stats": {
16
+ "missing_rate": 0.0,
17
+ "unique_count": 137,
18
+ "unique_ratio": 0.037228,
19
+ "example_values": [
20
+ "0",
21
+ "0.98",
22
+ "0.16",
23
+ "0.1",
24
+ "0.07"
25
+ ]
26
+ }
27
+ },
28
+ {
29
+ "name": "word_freq_address",
30
+ "role": "feature",
31
+ "semantic_type": "numeric",
32
+ "nullable": false,
33
+ "missing_tokens": [],
34
+ "parse_format": null,
35
+ "impute_strategy": "median",
36
+ "profile_stats": {
37
+ "missing_rate": 0.0,
38
+ "unique_count": 156,
39
+ "unique_ratio": 0.042391,
40
+ "example_values": [
41
+ "0",
42
+ "0.16",
43
+ "0.24",
44
+ "0.1",
45
+ "0.32"
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "name": "word_freq_all",
51
+ "role": "feature",
52
+ "semantic_type": "numeric",
53
+ "nullable": false,
54
+ "missing_tokens": [],
55
+ "parse_format": null,
56
+ "impute_strategy": "median",
57
+ "profile_stats": {
58
+ "missing_rate": 0.0,
59
+ "unique_count": 207,
60
+ "unique_ratio": 0.05625,
61
+ "example_values": [
62
+ "1.07",
63
+ "0",
64
+ "0.32",
65
+ "0.41",
66
+ "1.24"
67
+ ]
68
+ }
69
+ },
70
+ {
71
+ "name": "word_freq_3d",
72
+ "role": "feature",
73
+ "semantic_type": "boolean",
74
+ "nullable": false,
75
+ "missing_tokens": [],
76
+ "parse_format": null,
77
+ "impute_strategy": "mode",
78
+ "profile_stats": {
79
+ "missing_rate": 0.0,
80
+ "unique_count": 34,
81
+ "unique_ratio": 0.009239,
82
+ "example_values": [
83
+ "0",
84
+ "4.31",
85
+ "42.81",
86
+ "13.63",
87
+ "0.42"
88
+ ]
89
+ }
90
+ },
91
+ {
92
+ "name": "word_freq_our",
93
+ "role": "feature",
94
+ "semantic_type": "numeric",
95
+ "nullable": false,
96
+ "missing_tokens": [],
97
+ "parse_format": null,
98
+ "impute_strategy": "median",
99
+ "profile_stats": {
100
+ "missing_rate": 0.0,
101
+ "unique_count": 247,
102
+ "unique_ratio": 0.06712,
103
+ "example_values": [
104
+ "0.53",
105
+ "0",
106
+ "0.32",
107
+ "0.08",
108
+ "0.41"
109
+ ]
110
+ }
111
+ },
112
+ {
113
+ "name": "word_freq_over",
114
+ "role": "feature",
115
+ "semantic_type": "numeric",
116
+ "nullable": false,
117
+ "missing_tokens": [],
118
+ "parse_format": null,
119
+ "impute_strategy": "median",
120
+ "profile_stats": {
121
+ "missing_rate": 0.0,
122
+ "unique_count": 130,
123
+ "unique_ratio": 0.035326,
124
+ "example_values": [
125
+ "0",
126
+ "0.8",
127
+ "0.24",
128
+ "0.58",
129
+ "0.2"
130
+ ]
131
+ }
132
+ },
133
+ {
134
+ "name": "word_freq_remove",
135
+ "role": "feature",
136
+ "semantic_type": "numeric",
137
+ "nullable": false,
138
+ "missing_tokens": [],
139
+ "parse_format": null,
140
+ "impute_strategy": "median",
141
+ "profile_stats": {
142
+ "missing_rate": 0.0,
143
+ "unique_count": 160,
144
+ "unique_ratio": 0.043478,
145
+ "example_values": [
146
+ "0",
147
+ "0.49",
148
+ "0.2",
149
+ "0.62",
150
+ "0.16"
151
+ ]
152
+ }
153
+ },
154
+ {
155
+ "name": "word_freq_internet",
156
+ "role": "feature",
157
+ "semantic_type": "numeric",
158
+ "nullable": false,
159
+ "missing_tokens": [],
160
+ "parse_format": null,
161
+ "impute_strategy": "median",
162
+ "profile_stats": {
163
+ "missing_rate": 0.0,
164
+ "unique_count": 156,
165
+ "unique_ratio": 0.042391,
166
+ "example_values": [
167
+ "0",
168
+ "0.08",
169
+ "0.33",
170
+ "0.1",
171
+ "0.88"
172
+ ]
173
+ }
174
+ },
175
+ {
176
+ "name": "word_freq_order",
177
+ "role": "feature",
178
+ "semantic_type": "numeric",
179
+ "nullable": false,
180
+ "missing_tokens": [],
181
+ "parse_format": null,
182
+ "impute_strategy": "median",
183
+ "profile_stats": {
184
+ "missing_rate": 0.0,
185
+ "unique_count": 130,
186
+ "unique_ratio": 0.035326,
187
+ "example_values": [
188
+ "0",
189
+ "0.66",
190
+ "1.43",
191
+ "0.03",
192
+ "0.3"
193
+ ]
194
+ }
195
+ },
196
+ {
197
+ "name": "word_freq_mail",
198
+ "role": "feature",
199
+ "semantic_type": "numeric",
200
+ "nullable": false,
201
+ "missing_tokens": [],
202
+ "parse_format": null,
203
+ "impute_strategy": "median",
204
+ "profile_stats": {
205
+ "missing_rate": 0.0,
206
+ "unique_count": 232,
207
+ "unique_ratio": 0.063043,
208
+ "example_values": [
209
+ "0",
210
+ "0.49",
211
+ "0.66",
212
+ "1.96",
213
+ "0.82"
214
+ ]
215
+ }
216
+ },
217
+ {
218
+ "name": "word_freq_receive",
219
+ "role": "feature",
220
+ "semantic_type": "numeric",
221
+ "nullable": false,
222
+ "missing_tokens": [],
223
+ "parse_format": null,
224
+ "impute_strategy": "median",
225
+ "profile_stats": {
226
+ "missing_rate": 0.0,
227
+ "unique_count": 107,
228
+ "unique_ratio": 0.029076,
229
+ "example_values": [
230
+ "0",
231
+ "0.08",
232
+ "0.24",
233
+ "0.1",
234
+ "0.62"
235
+ ]
236
+ }
237
+ },
238
+ {
239
+ "name": "word_freq_will",
240
+ "role": "feature",
241
+ "semantic_type": "numeric",
242
+ "nullable": false,
243
+ "missing_tokens": [],
244
+ "parse_format": null,
245
+ "impute_strategy": "median",
246
+ "profile_stats": {
247
+ "missing_rate": 0.0,
248
+ "unique_count": 301,
249
+ "unique_ratio": 0.081793,
250
+ "example_values": [
251
+ "0",
252
+ "0.64",
253
+ "1.81",
254
+ "0.57",
255
+ "1.24"
256
+ ]
257
+ }
258
+ },
259
+ {
260
+ "name": "word_freq_people",
261
+ "role": "feature",
262
+ "semantic_type": "numeric",
263
+ "nullable": false,
264
+ "missing_tokens": [],
265
+ "parse_format": null,
266
+ "impute_strategy": "median",
267
+ "profile_stats": {
268
+ "missing_rate": 0.0,
269
+ "unique_count": 148,
270
+ "unique_ratio": 0.040217,
271
+ "example_values": [
272
+ "0",
273
+ "0.9",
274
+ "0.16",
275
+ "0.17",
276
+ "0.74"
277
+ ]
278
+ }
279
+ },
280
+ {
281
+ "name": "word_freq_report",
282
+ "role": "feature",
283
+ "semantic_type": "numeric",
284
+ "nullable": false,
285
+ "missing_tokens": [],
286
+ "parse_format": null,
287
+ "impute_strategy": "median",
288
+ "profile_stats": {
289
+ "missing_rate": 0.0,
290
+ "unique_count": 117,
291
+ "unique_ratio": 0.031793,
292
+ "example_values": [
293
+ "0",
294
+ "1.82",
295
+ "0.23",
296
+ "0.2",
297
+ "0.08"
298
+ ]
299
+ }
300
+ },
301
+ {
302
+ "name": "word_freq_addresses",
303
+ "role": "feature",
304
+ "semantic_type": "numeric",
305
+ "nullable": false,
306
+ "missing_tokens": [],
307
+ "parse_format": null,
308
+ "impute_strategy": "median",
309
+ "profile_stats": {
310
+ "missing_rate": 0.0,
311
+ "unique_count": 108,
312
+ "unique_ratio": 0.029348,
313
+ "example_values": [
314
+ "0",
315
+ "0.16",
316
+ "0.66",
317
+ "0.31",
318
+ "0.4"
319
+ ]
320
+ }
321
+ },
322
+ {
323
+ "name": "word_freq_free",
324
+ "role": "feature",
325
+ "semantic_type": "numeric",
326
+ "nullable": false,
327
+ "missing_tokens": [],
328
+ "parse_format": null,
329
+ "impute_strategy": "median",
330
+ "profile_stats": {
331
+ "missing_rate": 0.0,
332
+ "unique_count": 246,
333
+ "unique_ratio": 0.066848,
334
+ "example_values": [
335
+ "0",
336
+ "0.82",
337
+ "0.1",
338
+ "1.56",
339
+ "0.38"
340
+ ]
341
+ }
342
+ },
343
+ {
344
+ "name": "word_freq_business",
345
+ "role": "feature",
346
+ "semantic_type": "numeric",
347
+ "nullable": false,
348
+ "missing_tokens": [],
349
+ "parse_format": null,
350
+ "impute_strategy": "median",
351
+ "profile_stats": {
352
+ "missing_rate": 0.0,
353
+ "unique_count": 175,
354
+ "unique_ratio": 0.047554,
355
+ "example_values": [
356
+ "0",
357
+ "0.16",
358
+ "0.31",
359
+ "2.22",
360
+ "1.63"
361
+ ]
362
+ }
363
+ },
364
+ {
365
+ "name": "word_freq_email",
366
+ "role": "feature",
367
+ "semantic_type": "numeric",
368
+ "nullable": false,
369
+ "missing_tokens": [],
370
+ "parse_format": null,
371
+ "impute_strategy": "median",
372
+ "profile_stats": {
373
+ "missing_rate": 0.0,
374
+ "unique_count": 217,
375
+ "unique_ratio": 0.058967,
376
+ "example_values": [
377
+ "0",
378
+ "0.32",
379
+ "1.57",
380
+ "1.96",
381
+ "1.02"
382
+ ]
383
+ }
384
+ },
385
+ {
386
+ "name": "word_freq_you",
387
+ "role": "feature",
388
+ "semantic_type": "numeric",
389
+ "nullable": false,
390
+ "missing_tokens": [],
391
+ "parse_format": null,
392
+ "impute_strategy": "median",
393
+ "profile_stats": {
394
+ "missing_rate": 0.0,
395
+ "unique_count": 548,
396
+ "unique_ratio": 0.148913,
397
+ "example_values": [
398
+ "3.22",
399
+ "2.4",
400
+ "0.32",
401
+ "1.81",
402
+ "2.46"
403
+ ]
404
+ }
405
+ },
406
+ {
407
+ "name": "word_freq_credit",
408
+ "role": "feature",
409
+ "semantic_type": "numeric",
410
+ "nullable": false,
411
+ "missing_tokens": [],
412
+ "parse_format": null,
413
+ "impute_strategy": "median",
414
+ "profile_stats": {
415
+ "missing_rate": 0.0,
416
+ "unique_count": 126,
417
+ "unique_ratio": 0.034239,
418
+ "example_values": [
419
+ "0.53",
420
+ "0",
421
+ "0.16",
422
+ "0.41",
423
+ "0.4"
424
+ ]
425
+ }
426
+ },
427
+ {
428
+ "name": "word_freq_your",
429
+ "role": "feature",
430
+ "semantic_type": "numeric",
431
+ "nullable": false,
432
+ "missing_tokens": [],
433
+ "parse_format": null,
434
+ "impute_strategy": "median",
435
+ "profile_stats": {
436
+ "missing_rate": 0.0,
437
+ "unique_count": 383,
438
+ "unique_ratio": 0.104076,
439
+ "example_values": [
440
+ "1.07",
441
+ "0",
442
+ "1.14",
443
+ "1.16",
444
+ "1.84"
445
+ ]
446
+ }
447
+ },
448
+ {
449
+ "name": "word_freq_font",
450
+ "role": "feature",
451
+ "semantic_type": "numeric",
452
+ "nullable": false,
453
+ "missing_tokens": [],
454
+ "parse_format": null,
455
+ "impute_strategy": "median",
456
+ "profile_stats": {
457
+ "missing_rate": 0.0,
458
+ "unique_count": 82,
459
+ "unique_ratio": 0.022283,
460
+ "example_values": [
461
+ "8.06",
462
+ "12.8",
463
+ "0",
464
+ "0.2",
465
+ "7.33"
466
+ ]
467
+ }
468
+ },
469
+ {
470
+ "name": "word_freq_000",
471
+ "role": "feature",
472
+ "semantic_type": "numeric",
473
+ "nullable": false,
474
+ "missing_tokens": [],
475
+ "parse_format": null,
476
+ "impute_strategy": "median",
477
+ "profile_stats": {
478
+ "missing_rate": 0.0,
479
+ "unique_count": 152,
480
+ "unique_ratio": 0.041304,
481
+ "example_values": [
482
+ "0",
483
+ "0.49",
484
+ "0.91",
485
+ "0.09",
486
+ "0.72"
487
+ ]
488
+ }
489
+ },
490
+ {
491
+ "name": "word_freq_money",
492
+ "role": "feature",
493
+ "semantic_type": "numeric",
494
+ "nullable": false,
495
+ "missing_tokens": [],
496
+ "parse_format": null,
497
+ "impute_strategy": "median",
498
+ "profile_stats": {
499
+ "missing_rate": 0.0,
500
+ "unique_count": 127,
501
+ "unique_ratio": 0.034511,
502
+ "example_values": [
503
+ "0",
504
+ "1.14",
505
+ "0.16",
506
+ "0.3",
507
+ "0.32"
508
+ ]
509
+ }
510
+ },
511
+ {
512
+ "name": "word_freq_hp",
513
+ "role": "feature",
514
+ "semantic_type": "numeric",
515
+ "nullable": false,
516
+ "missing_tokens": [],
517
+ "parse_format": null,
518
+ "impute_strategy": "median",
519
+ "profile_stats": {
520
+ "missing_rate": 0.0,
521
+ "unique_count": 360,
522
+ "unique_ratio": 0.097826,
523
+ "example_values": [
524
+ "0",
525
+ "0.64",
526
+ "0.72",
527
+ "0.52",
528
+ "5.45"
529
+ ]
530
+ }
531
+ },
532
+ {
533
+ "name": "word_freq_hpl",
534
+ "role": "feature",
535
+ "semantic_type": "numeric",
536
+ "nullable": false,
537
+ "missing_tokens": [],
538
+ "parse_format": null,
539
+ "impute_strategy": "median",
540
+ "profile_stats": {
541
+ "missing_rate": 0.0,
542
+ "unique_count": 262,
543
+ "unique_ratio": 0.071196,
544
+ "example_values": [
545
+ "0",
546
+ "0.64",
547
+ "6.56",
548
+ "0.35",
549
+ "2.17"
550
+ ]
551
+ }
552
+ },
553
+ {
554
+ "name": "word_freq_george",
555
+ "role": "feature",
556
+ "semantic_type": "numeric",
557
+ "nullable": false,
558
+ "missing_tokens": [],
559
+ "parse_format": null,
560
+ "impute_strategy": "median",
561
+ "profile_stats": {
562
+ "missing_rate": 0.0,
563
+ "unique_count": 226,
564
+ "unique_ratio": 0.061413,
565
+ "example_values": [
566
+ "0",
567
+ "0.35",
568
+ "0.47",
569
+ "0.23",
570
+ "0.86"
571
+ ]
572
+ }
573
+ },
574
+ {
575
+ "name": "word_freq_650",
576
+ "role": "feature",
577
+ "semantic_type": "numeric",
578
+ "nullable": false,
579
+ "missing_tokens": [],
580
+ "parse_format": null,
581
+ "impute_strategy": "median",
582
+ "profile_stats": {
583
+ "missing_rate": 0.0,
584
+ "unique_count": 187,
585
+ "unique_ratio": 0.050815,
586
+ "example_values": [
587
+ "0",
588
+ "1.96",
589
+ "0.17",
590
+ "0.11",
591
+ "0.28"
592
+ ]
593
+ }
594
+ },
595
+ {
596
+ "name": "word_freq_lab",
597
+ "role": "feature",
598
+ "semantic_type": "numeric",
599
+ "nullable": false,
600
+ "missing_tokens": [],
601
+ "parse_format": null,
602
+ "impute_strategy": "median",
603
+ "profile_stats": {
604
+ "missing_rate": 0.0,
605
+ "unique_count": 145,
606
+ "unique_ratio": 0.039402,
607
+ "example_values": [
608
+ "0",
609
+ "0.17",
610
+ "0.47",
611
+ "0.11",
612
+ "0.28"
613
+ ]
614
+ }
615
+ },
616
+ {
617
+ "name": "word_freq_labs",
618
+ "role": "feature",
619
+ "semantic_type": "numeric",
620
+ "nullable": false,
621
+ "missing_tokens": [],
622
+ "parse_format": null,
623
+ "impute_strategy": "median",
624
+ "profile_stats": {
625
+ "missing_rate": 0.0,
626
+ "unique_count": 160,
627
+ "unique_ratio": 0.043478,
628
+ "example_values": [
629
+ "0",
630
+ "0.17",
631
+ "0.11",
632
+ "0.28",
633
+ "1.19"
634
+ ]
635
+ }
636
+ },
637
+ {
638
+ "name": "word_freq_telnet",
639
+ "role": "feature",
640
+ "semantic_type": "numeric",
641
+ "nullable": false,
642
+ "missing_tokens": [],
643
+ "parse_format": null,
644
+ "impute_strategy": "median",
645
+ "profile_stats": {
646
+ "missing_rate": 0.0,
647
+ "unique_count": 116,
648
+ "unique_ratio": 0.031522,
649
+ "example_values": [
650
+ "0",
651
+ "0.17",
652
+ "0.18",
653
+ "1.16",
654
+ "0.28"
655
+ ]
656
+ }
657
+ },
658
+ {
659
+ "name": "word_freq_857",
660
+ "role": "feature",
661
+ "semantic_type": "numeric",
662
+ "nullable": false,
663
+ "missing_tokens": [],
664
+ "parse_format": null,
665
+ "impute_strategy": "median",
666
+ "profile_stats": {
667
+ "missing_rate": 0.0,
668
+ "unique_count": 97,
669
+ "unique_ratio": 0.026359,
670
+ "example_values": [
671
+ "0",
672
+ "0.17",
673
+ "0.28",
674
+ "0.39",
675
+ "2.77"
676
+ ]
677
+ }
678
+ },
679
+ {
680
+ "name": "word_freq_data",
681
+ "role": "feature",
682
+ "semantic_type": "numeric",
683
+ "nullable": false,
684
+ "missing_tokens": [],
685
+ "parse_format": null,
686
+ "impute_strategy": "median",
687
+ "profile_stats": {
688
+ "missing_rate": 0.0,
689
+ "unique_count": 166,
690
+ "unique_ratio": 0.045109,
691
+ "example_values": [
692
+ "0",
693
+ "0.17",
694
+ "0.47",
695
+ "0.03",
696
+ "0.14"
697
+ ]
698
+ }
699
+ },
700
+ {
701
+ "name": "word_freq_415",
702
+ "role": "feature",
703
+ "semantic_type": "numeric",
704
+ "nullable": false,
705
+ "missing_tokens": [],
706
+ "parse_format": null,
707
+ "impute_strategy": "median",
708
+ "profile_stats": {
709
+ "missing_rate": 0.0,
710
+ "unique_count": 102,
711
+ "unique_ratio": 0.027717,
712
+ "example_values": [
713
+ "0",
714
+ "0.17",
715
+ "0.28",
716
+ "0.39",
717
+ "2.77"
718
+ ]
719
+ }
720
+ },
721
+ {
722
+ "name": "word_freq_85",
723
+ "role": "feature",
724
+ "semantic_type": "numeric",
725
+ "nullable": false,
726
+ "missing_tokens": [],
727
+ "parse_format": null,
728
+ "impute_strategy": "median",
729
+ "profile_stats": {
730
+ "missing_rate": 0.0,
731
+ "unique_count": 158,
732
+ "unique_ratio": 0.042935,
733
+ "example_values": [
734
+ "0",
735
+ "0.1",
736
+ "0.17",
737
+ "0.22",
738
+ "0.28"
739
+ ]
740
+ }
741
+ },
742
+ {
743
+ "name": "word_freq_technology",
744
+ "role": "feature",
745
+ "semantic_type": "numeric",
746
+ "nullable": false,
747
+ "missing_tokens": [],
748
+ "parse_format": null,
749
+ "impute_strategy": "median",
750
+ "profile_stats": {
751
+ "missing_rate": 0.0,
752
+ "unique_count": 151,
753
+ "unique_ratio": 0.041033,
754
+ "example_values": [
755
+ "0",
756
+ "0.32",
757
+ "0.72",
758
+ "0.17",
759
+ "0.07"
760
+ ]
761
+ }
762
+ },
763
+ {
764
+ "name": "word_freq_1999",
765
+ "role": "feature",
766
+ "semantic_type": "numeric",
767
+ "nullable": false,
768
+ "missing_tokens": [],
769
+ "parse_format": null,
770
+ "impute_strategy": "median",
771
+ "profile_stats": {
772
+ "missing_rate": 0.0,
773
+ "unique_count": 180,
774
+ "unique_ratio": 0.048913,
775
+ "example_values": [
776
+ "0",
777
+ "0.64",
778
+ "0.17",
779
+ "0.71",
780
+ "0.18"
781
+ ]
782
+ }
783
+ },
784
+ {
785
+ "name": "word_freq_parts",
786
+ "role": "feature",
787
+ "semantic_type": "boolean",
788
+ "nullable": false,
789
+ "missing_tokens": [],
790
+ "parse_format": null,
791
+ "impute_strategy": "mode",
792
+ "profile_stats": {
793
+ "missing_rate": 0.0,
794
+ "unique_count": 48,
795
+ "unique_ratio": 0.013043,
796
+ "example_values": [
797
+ "0",
798
+ "0.14",
799
+ "1.44",
800
+ "0.04",
801
+ "0.29"
802
+ ]
803
+ }
804
+ },
805
+ {
806
+ "name": "word_freq_pm",
807
+ "role": "feature",
808
+ "semantic_type": "numeric",
809
+ "nullable": false,
810
+ "missing_tokens": [],
811
+ "parse_format": null,
812
+ "impute_strategy": "median",
813
+ "profile_stats": {
814
+ "missing_rate": 0.0,
815
+ "unique_count": 149,
816
+ "unique_ratio": 0.040489,
817
+ "example_values": [
818
+ "0",
819
+ "0.1",
820
+ "0.14",
821
+ "1.58",
822
+ "1.96"
823
+ ]
824
+ }
825
+ },
826
+ {
827
+ "name": "word_freq_direct",
828
+ "role": "feature",
829
+ "semantic_type": "numeric",
830
+ "nullable": false,
831
+ "missing_tokens": [],
832
+ "parse_format": null,
833
+ "impute_strategy": "median",
834
+ "profile_stats": {
835
+ "missing_rate": 0.0,
836
+ "unique_count": 112,
837
+ "unique_ratio": 0.030435,
838
+ "example_values": [
839
+ "0",
840
+ "0.08",
841
+ "0.17",
842
+ "0.16",
843
+ "0.03"
844
+ ]
845
+ }
846
+ },
847
+ {
848
+ "name": "word_freq_cs",
849
+ "role": "feature",
850
+ "semantic_type": "numeric",
851
+ "nullable": false,
852
+ "missing_tokens": [],
853
+ "parse_format": null,
854
+ "impute_strategy": "median",
855
+ "profile_stats": {
856
+ "missing_rate": 0.0,
857
+ "unique_count": 95,
858
+ "unique_ratio": 0.025815,
859
+ "example_values": [
860
+ "0",
861
+ "0.34",
862
+ "0.51",
863
+ "3.12",
864
+ "0.37"
865
+ ]
866
+ }
867
+ },
868
+ {
869
+ "name": "word_freq_meeting",
870
+ "role": "feature",
871
+ "semantic_type": "numeric",
872
+ "nullable": false,
873
+ "missing_tokens": [],
874
+ "parse_format": null,
875
+ "impute_strategy": "median",
876
+ "profile_stats": {
877
+ "missing_rate": 0.0,
878
+ "unique_count": 172,
879
+ "unique_ratio": 0.046739,
880
+ "example_values": [
881
+ "0",
882
+ "0.9",
883
+ "1.21",
884
+ "0.71",
885
+ "0.04"
886
+ ]
887
+ }
888
+ },
889
+ {
890
+ "name": "word_freq_original",
891
+ "role": "feature",
892
+ "semantic_type": "numeric",
893
+ "nullable": false,
894
+ "missing_tokens": [],
895
+ "parse_format": null,
896
+ "impute_strategy": "median",
897
+ "profile_stats": {
898
+ "missing_rate": 0.0,
899
+ "unique_count": 123,
900
+ "unique_ratio": 0.033424,
901
+ "example_values": [
902
+ "0",
903
+ "0.94",
904
+ "0.43",
905
+ "0.09",
906
+ "0.39"
907
+ ]
908
+ }
909
+ },
910
+ {
911
+ "name": "word_freq_project",
912
+ "role": "feature",
913
+ "semantic_type": "numeric",
914
+ "nullable": false,
915
+ "missing_tokens": [],
916
+ "parse_format": null,
917
+ "impute_strategy": "median",
918
+ "profile_stats": {
919
+ "missing_rate": 0.0,
920
+ "unique_count": 142,
921
+ "unique_ratio": 0.038587,
922
+ "example_values": [
923
+ "0",
924
+ "0.97",
925
+ "1.08",
926
+ "0.41",
927
+ "0.37"
928
+ ]
929
+ }
930
+ },
931
+ {
932
+ "name": "word_freq_re",
933
+ "role": "feature",
934
+ "semantic_type": "numeric",
935
+ "nullable": false,
936
+ "missing_tokens": [],
937
+ "parse_format": null,
938
+ "impute_strategy": "median",
939
+ "profile_stats": {
940
+ "missing_rate": 0.0,
941
+ "unique_count": 222,
942
+ "unique_ratio": 0.060326,
943
+ "example_values": [
944
+ "0",
945
+ "0.08",
946
+ "0.17",
947
+ "0.38",
948
+ "1.18"
949
+ ]
950
+ }
951
+ },
952
+ {
953
+ "name": "word_freq_edu",
954
+ "role": "feature",
955
+ "semantic_type": "numeric",
956
+ "nullable": false,
957
+ "missing_tokens": [],
958
+ "parse_format": null,
959
+ "impute_strategy": "median",
960
+ "profile_stats": {
961
+ "missing_rate": 0.0,
962
+ "unique_count": 203,
963
+ "unique_ratio": 0.055163,
964
+ "example_values": [
965
+ "0",
966
+ "4.76",
967
+ "0.25",
968
+ "0.28",
969
+ "0.9"
970
+ ]
971
+ }
972
+ },
973
+ {
974
+ "name": "word_freq_table",
975
+ "role": "feature",
976
+ "semantic_type": "boolean",
977
+ "nullable": false,
978
+ "missing_tokens": [],
979
+ "parse_format": null,
980
+ "impute_strategy": "mode",
981
+ "profile_stats": {
982
+ "missing_rate": 0.0,
983
+ "unique_count": 31,
984
+ "unique_ratio": 0.008424,
985
+ "example_values": [
986
+ "0",
987
+ "1.51",
988
+ "0.72",
989
+ "0.61",
990
+ "0.04"
991
+ ]
992
+ }
993
+ },
994
+ {
995
+ "name": "word_freq_conference",
996
+ "role": "feature",
997
+ "semantic_type": "numeric",
998
+ "nullable": false,
999
+ "missing_tokens": [],
1000
+ "parse_format": null,
1001
+ "impute_strategy": "median",
1002
+ "profile_stats": {
1003
+ "missing_rate": 0.0,
1004
+ "unique_count": 94,
1005
+ "unique_ratio": 0.025543,
1006
+ "example_values": [
1007
+ "0",
1008
+ "0.03",
1009
+ "2.22",
1010
+ "0.14",
1011
+ "0.74"
1012
+ ]
1013
+ }
1014
+ },
1015
+ {
1016
+ "name": "char_freq_%3B",
1017
+ "role": "feature",
1018
+ "semantic_type": "numeric",
1019
+ "nullable": false,
1020
+ "missing_tokens": [],
1021
+ "parse_format": null,
1022
+ "impute_strategy": "median",
1023
+ "profile_stats": {
1024
+ "missing_rate": 0.0,
1025
+ "unique_count": 281,
1026
+ "unique_ratio": 0.076359,
1027
+ "example_values": [
1028
+ "0",
1029
+ "0.119",
1030
+ "0.028",
1031
+ "0.176",
1032
+ "0.023"
1033
+ ]
1034
+ }
1035
+ },
1036
+ {
1037
+ "name": "char_freq_%28",
1038
+ "role": "feature",
1039
+ "semantic_type": "numeric",
1040
+ "nullable": false,
1041
+ "missing_tokens": [],
1042
+ "parse_format": null,
1043
+ "impute_strategy": "median",
1044
+ "profile_stats": {
1045
+ "missing_rate": 0.0,
1046
+ "unique_count": 586,
1047
+ "unique_ratio": 0.159239,
1048
+ "example_values": [
1049
+ "0",
1050
+ "0.04",
1051
+ "0.159",
1052
+ "0.095",
1053
+ "0.132"
1054
+ ]
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "char_freq_%5B",
1059
+ "role": "feature",
1060
+ "semantic_type": "numeric",
1061
+ "nullable": false,
1062
+ "missing_tokens": [],
1063
+ "parse_format": null,
1064
+ "impute_strategy": "median",
1065
+ "profile_stats": {
1066
+ "missing_rate": 0.0,
1067
+ "unique_count": 200,
1068
+ "unique_ratio": 0.054348,
1069
+ "example_values": [
1070
+ "0",
1071
+ "0.264",
1072
+ "0.298",
1073
+ "0.119",
1074
+ "0.046"
1075
+ ]
1076
+ }
1077
+ },
1078
+ {
1079
+ "name": "char_freq_%21",
1080
+ "role": "feature",
1081
+ "semantic_type": "numeric",
1082
+ "nullable": false,
1083
+ "missing_tokens": [],
1084
+ "parse_format": null,
1085
+ "impute_strategy": "median",
1086
+ "profile_stats": {
1087
+ "missing_rate": 0.0,
1088
+ "unique_count": 870,
1089
+ "unique_ratio": 0.236413,
1090
+ "example_values": [
1091
+ "0.265",
1092
+ "0.709",
1093
+ "0",
1094
+ "0.751",
1095
+ "0.25"
1096
+ ]
1097
+ }
1098
+ },
1099
+ {
1100
+ "name": "char_freq_%24",
1101
+ "role": "feature",
1102
+ "semantic_type": "numeric",
1103
+ "nullable": false,
1104
+ "missing_tokens": [],
1105
+ "parse_format": null,
1106
+ "impute_strategy": "median",
1107
+ "profile_stats": {
1108
+ "missing_rate": 0.0,
1109
+ "unique_count": 461,
1110
+ "unique_ratio": 0.125272,
1111
+ "example_values": [
1112
+ "0.088",
1113
+ "0",
1114
+ "0.159",
1115
+ "0.255",
1116
+ "0.224"
1117
+ ]
1118
+ }
1119
+ },
1120
+ {
1121
+ "name": "char_freq_%23",
1122
+ "role": "feature",
1123
+ "semantic_type": "numeric",
1124
+ "nullable": false,
1125
+ "missing_tokens": [],
1126
+ "parse_format": null,
1127
+ "impute_strategy": "median",
1128
+ "profile_stats": {
1129
+ "missing_rate": 0.0,
1130
+ "unique_count": 279,
1131
+ "unique_ratio": 0.075815,
1132
+ "example_values": [
1133
+ "1.151",
1134
+ "1.56",
1135
+ "0",
1136
+ "0.095",
1137
+ "0.013"
1138
+ ]
1139
+ }
1140
+ },
1141
+ {
1142
+ "name": "capital_run_length_average",
1143
+ "role": "feature",
1144
+ "semantic_type": "numeric",
1145
+ "nullable": false,
1146
+ "missing_tokens": [],
1147
+ "parse_format": null,
1148
+ "impute_strategy": "median",
1149
+ "profile_stats": {
1150
+ "missing_rate": 0.0,
1151
+ "unique_count": 1865,
1152
+ "unique_ratio": 0.506793,
1153
+ "example_values": [
1154
+ "11.066",
1155
+ "7.82",
1156
+ "1.902",
1157
+ "1.515",
1158
+ "4.163"
1159
+ ]
1160
+ }
1161
+ },
1162
+ {
1163
+ "name": "capital_run_length_longest",
1164
+ "role": "feature",
1165
+ "semantic_type": "numeric",
1166
+ "nullable": false,
1167
+ "missing_tokens": [],
1168
+ "parse_format": null,
1169
+ "impute_strategy": "median",
1170
+ "profile_stats": {
1171
+ "missing_rate": 0.0,
1172
+ "unique_count": 249,
1173
+ "unique_ratio": 0.067663,
1174
+ "example_values": [
1175
+ "67",
1176
+ "39",
1177
+ "10",
1178
+ "5",
1179
+ "84"
1180
+ ]
1181
+ }
1182
+ },
1183
+ {
1184
+ "name": "capital_run_length_total",
1185
+ "role": "feature",
1186
+ "semantic_type": "numeric",
1187
+ "nullable": false,
1188
+ "missing_tokens": [],
1189
+ "parse_format": null,
1190
+ "impute_strategy": "median",
1191
+ "profile_stats": {
1192
+ "missing_rate": 0.0,
1193
+ "unique_count": 828,
1194
+ "unique_ratio": 0.225,
1195
+ "example_values": [
1196
+ "332",
1197
+ "305",
1198
+ "175",
1199
+ "50",
1200
+ "712"
1201
+ ]
1202
+ }
1203
+ },
1204
+ {
1205
+ "name": "class",
1206
+ "role": "target",
1207
+ "semantic_type": "boolean",
1208
+ "nullable": false,
1209
+ "missing_tokens": [],
1210
+ "parse_format": null,
1211
+ "impute_strategy": "mode",
1212
+ "profile_stats": {
1213
+ "missing_rate": 0.0,
1214
+ "unique_count": 2,
1215
+ "unique_ratio": 0.000543,
1216
+ "example_values": [
1217
+ "1",
1218
+ "0"
1219
+ ]
1220
+ }
1221
+ }
1222
+ ],
1223
+ "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/staged_input_manifest.json",
1224
+ "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/train.csv",
1225
+ "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/val.csv",
1226
+ "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/test.csv",
1227
+ "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/staged/public/staged_features.json",
1228
+ "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n1/tabbyflow/tabbyflow-n1-20260510_202554/public_gate/public_gate_report.json"
1229
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_cat_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce39359d15374fd5bc8311d733e1243c43dca144525eba006e3c0b41a8eb4251
3
+ size 11192
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_cat_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e44da05d9396d1367ad2ac98c73b8ad851d5fa0dda09b31c516f4415814936d3
3
+ size 88448
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_cat_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53fffd3425ceecb9abe5333d3cac00f624dd14660753505f1308f4895b14851f
3
+ size 11168
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_num_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33aabf67c3c2b6492fe4ea8d9e068bd423b1120630ddaf316c6a7f5c44b7898a
3
+ size 99704
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_num_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baeca6b93a124ec3d0514924dba9f700cf5c4eff1718a2cc3f60e0b34d7099ab
3
+ size 795008
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/X_num_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:265654043d2e56cbf3fef03d81ce433e48cae9474063a7b9fbbd6ee7d830775e
3
+ size 99488
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/info.json ADDED
@@ -0,0 +1,549 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "pipeline_n1",
3
+ "task_type": "binclass",
4
+ "n_num_features": 54,
5
+ "n_cat_features": 3,
6
+ "train_size": 3680,
7
+ "val_size": 460,
8
+ "test_size": 461,
9
+ "num_col_idx": [
10
+ 0,
11
+ 1,
12
+ 2,
13
+ 4,
14
+ 5,
15
+ 6,
16
+ 7,
17
+ 8,
18
+ 9,
19
+ 10,
20
+ 11,
21
+ 12,
22
+ 13,
23
+ 14,
24
+ 15,
25
+ 16,
26
+ 17,
27
+ 18,
28
+ 19,
29
+ 20,
30
+ 21,
31
+ 22,
32
+ 23,
33
+ 24,
34
+ 25,
35
+ 26,
36
+ 27,
37
+ 28,
38
+ 29,
39
+ 30,
40
+ 31,
41
+ 32,
42
+ 33,
43
+ 34,
44
+ 35,
45
+ 36,
46
+ 38,
47
+ 39,
48
+ 40,
49
+ 41,
50
+ 42,
51
+ 43,
52
+ 44,
53
+ 45,
54
+ 47,
55
+ 48,
56
+ 49,
57
+ 50,
58
+ 51,
59
+ 52,
60
+ 53,
61
+ 54,
62
+ 55,
63
+ 56
64
+ ],
65
+ "cat_col_idx": [
66
+ 3,
67
+ 37,
68
+ 46
69
+ ],
70
+ "target_col_idx": [
71
+ 57
72
+ ],
73
+ "column_names": [
74
+ "word_freq_make",
75
+ "word_freq_address",
76
+ "word_freq_all",
77
+ "word_freq_3d",
78
+ "word_freq_our",
79
+ "word_freq_over",
80
+ "word_freq_remove",
81
+ "word_freq_internet",
82
+ "word_freq_order",
83
+ "word_freq_mail",
84
+ "word_freq_receive",
85
+ "word_freq_will",
86
+ "word_freq_people",
87
+ "word_freq_report",
88
+ "word_freq_addresses",
89
+ "word_freq_free",
90
+ "word_freq_business",
91
+ "word_freq_email",
92
+ "word_freq_you",
93
+ "word_freq_credit",
94
+ "word_freq_your",
95
+ "word_freq_font",
96
+ "word_freq_000",
97
+ "word_freq_money",
98
+ "word_freq_hp",
99
+ "word_freq_hpl",
100
+ "word_freq_george",
101
+ "word_freq_650",
102
+ "word_freq_lab",
103
+ "word_freq_labs",
104
+ "word_freq_telnet",
105
+ "word_freq_857",
106
+ "word_freq_data",
107
+ "word_freq_415",
108
+ "word_freq_85",
109
+ "word_freq_technology",
110
+ "word_freq_1999",
111
+ "word_freq_parts",
112
+ "word_freq_pm",
113
+ "word_freq_direct",
114
+ "word_freq_cs",
115
+ "word_freq_meeting",
116
+ "word_freq_original",
117
+ "word_freq_project",
118
+ "word_freq_re",
119
+ "word_freq_edu",
120
+ "word_freq_table",
121
+ "word_freq_conference",
122
+ "char_freq_%3B",
123
+ "char_freq_%28",
124
+ "char_freq_%5B",
125
+ "char_freq_%21",
126
+ "char_freq_%24",
127
+ "char_freq_%23",
128
+ "capital_run_length_average",
129
+ "capital_run_length_longest",
130
+ "capital_run_length_total",
131
+ "class"
132
+ ],
133
+ "idx_mapping": {
134
+ "0": 0,
135
+ "1": 1,
136
+ "2": 2,
137
+ "4": 3,
138
+ "5": 4,
139
+ "6": 5,
140
+ "7": 6,
141
+ "8": 7,
142
+ "9": 8,
143
+ "10": 9,
144
+ "11": 10,
145
+ "12": 11,
146
+ "13": 12,
147
+ "14": 13,
148
+ "15": 14,
149
+ "16": 15,
150
+ "17": 16,
151
+ "18": 17,
152
+ "19": 18,
153
+ "20": 19,
154
+ "21": 20,
155
+ "22": 21,
156
+ "23": 22,
157
+ "24": 23,
158
+ "25": 24,
159
+ "26": 25,
160
+ "27": 26,
161
+ "28": 27,
162
+ "29": 28,
163
+ "30": 29,
164
+ "31": 30,
165
+ "32": 31,
166
+ "33": 32,
167
+ "34": 33,
168
+ "35": 34,
169
+ "36": 35,
170
+ "38": 36,
171
+ "39": 37,
172
+ "40": 38,
173
+ "41": 39,
174
+ "42": 40,
175
+ "43": 41,
176
+ "44": 42,
177
+ "45": 43,
178
+ "47": 44,
179
+ "48": 45,
180
+ "49": 46,
181
+ "50": 47,
182
+ "51": 48,
183
+ "52": 49,
184
+ "53": 50,
185
+ "54": 51,
186
+ "55": 52,
187
+ "56": 53,
188
+ "3": 54,
189
+ "37": 55,
190
+ "46": 56,
191
+ "57": 57
192
+ },
193
+ "inverse_idx_mapping": {
194
+ "0": 0,
195
+ "1": 1,
196
+ "2": 2,
197
+ "3": 4,
198
+ "4": 5,
199
+ "5": 6,
200
+ "6": 7,
201
+ "7": 8,
202
+ "8": 9,
203
+ "9": 10,
204
+ "10": 11,
205
+ "11": 12,
206
+ "12": 13,
207
+ "13": 14,
208
+ "14": 15,
209
+ "15": 16,
210
+ "16": 17,
211
+ "17": 18,
212
+ "18": 19,
213
+ "19": 20,
214
+ "20": 21,
215
+ "21": 22,
216
+ "22": 23,
217
+ "23": 24,
218
+ "24": 25,
219
+ "25": 26,
220
+ "26": 27,
221
+ "27": 28,
222
+ "28": 29,
223
+ "29": 30,
224
+ "30": 31,
225
+ "31": 32,
226
+ "32": 33,
227
+ "33": 34,
228
+ "34": 35,
229
+ "35": 36,
230
+ "36": 38,
231
+ "37": 39,
232
+ "38": 40,
233
+ "39": 41,
234
+ "40": 42,
235
+ "41": 43,
236
+ "42": 44,
237
+ "43": 45,
238
+ "44": 47,
239
+ "45": 48,
240
+ "46": 49,
241
+ "47": 50,
242
+ "48": 51,
243
+ "49": 52,
244
+ "50": 53,
245
+ "51": 54,
246
+ "52": 55,
247
+ "53": 56,
248
+ "54": 3,
249
+ "55": 37,
250
+ "56": 46,
251
+ "57": 57
252
+ },
253
+ "idx_name_mapping": {
254
+ "0": "word_freq_make",
255
+ "1": "word_freq_address",
256
+ "2": "word_freq_all",
257
+ "3": "word_freq_3d",
258
+ "4": "word_freq_our",
259
+ "5": "word_freq_over",
260
+ "6": "word_freq_remove",
261
+ "7": "word_freq_internet",
262
+ "8": "word_freq_order",
263
+ "9": "word_freq_mail",
264
+ "10": "word_freq_receive",
265
+ "11": "word_freq_will",
266
+ "12": "word_freq_people",
267
+ "13": "word_freq_report",
268
+ "14": "word_freq_addresses",
269
+ "15": "word_freq_free",
270
+ "16": "word_freq_business",
271
+ "17": "word_freq_email",
272
+ "18": "word_freq_you",
273
+ "19": "word_freq_credit",
274
+ "20": "word_freq_your",
275
+ "21": "word_freq_font",
276
+ "22": "word_freq_000",
277
+ "23": "word_freq_money",
278
+ "24": "word_freq_hp",
279
+ "25": "word_freq_hpl",
280
+ "26": "word_freq_george",
281
+ "27": "word_freq_650",
282
+ "28": "word_freq_lab",
283
+ "29": "word_freq_labs",
284
+ "30": "word_freq_telnet",
285
+ "31": "word_freq_857",
286
+ "32": "word_freq_data",
287
+ "33": "word_freq_415",
288
+ "34": "word_freq_85",
289
+ "35": "word_freq_technology",
290
+ "36": "word_freq_1999",
291
+ "37": "word_freq_parts",
292
+ "38": "word_freq_pm",
293
+ "39": "word_freq_direct",
294
+ "40": "word_freq_cs",
295
+ "41": "word_freq_meeting",
296
+ "42": "word_freq_original",
297
+ "43": "word_freq_project",
298
+ "44": "word_freq_re",
299
+ "45": "word_freq_edu",
300
+ "46": "word_freq_table",
301
+ "47": "word_freq_conference",
302
+ "48": "char_freq_%3B",
303
+ "49": "char_freq_%28",
304
+ "50": "char_freq_%5B",
305
+ "51": "char_freq_%21",
306
+ "52": "char_freq_%24",
307
+ "53": "char_freq_%23",
308
+ "54": "capital_run_length_average",
309
+ "55": "capital_run_length_longest",
310
+ "56": "capital_run_length_total",
311
+ "57": "class"
312
+ },
313
+ "int_columns": [],
314
+ "int_col_idx": [],
315
+ "int_col_idx_wrt_num": [],
316
+ "metadata": {
317
+ "columns": {
318
+ "0": {
319
+ "sdtype": "numerical",
320
+ "computer_representation": "Float"
321
+ },
322
+ "1": {
323
+ "sdtype": "numerical",
324
+ "computer_representation": "Float"
325
+ },
326
+ "2": {
327
+ "sdtype": "numerical",
328
+ "computer_representation": "Float"
329
+ },
330
+ "4": {
331
+ "sdtype": "numerical",
332
+ "computer_representation": "Float"
333
+ },
334
+ "5": {
335
+ "sdtype": "numerical",
336
+ "computer_representation": "Float"
337
+ },
338
+ "6": {
339
+ "sdtype": "numerical",
340
+ "computer_representation": "Float"
341
+ },
342
+ "7": {
343
+ "sdtype": "numerical",
344
+ "computer_representation": "Float"
345
+ },
346
+ "8": {
347
+ "sdtype": "numerical",
348
+ "computer_representation": "Float"
349
+ },
350
+ "9": {
351
+ "sdtype": "numerical",
352
+ "computer_representation": "Float"
353
+ },
354
+ "10": {
355
+ "sdtype": "numerical",
356
+ "computer_representation": "Float"
357
+ },
358
+ "11": {
359
+ "sdtype": "numerical",
360
+ "computer_representation": "Float"
361
+ },
362
+ "12": {
363
+ "sdtype": "numerical",
364
+ "computer_representation": "Float"
365
+ },
366
+ "13": {
367
+ "sdtype": "numerical",
368
+ "computer_representation": "Float"
369
+ },
370
+ "14": {
371
+ "sdtype": "numerical",
372
+ "computer_representation": "Float"
373
+ },
374
+ "15": {
375
+ "sdtype": "numerical",
376
+ "computer_representation": "Float"
377
+ },
378
+ "16": {
379
+ "sdtype": "numerical",
380
+ "computer_representation": "Float"
381
+ },
382
+ "17": {
383
+ "sdtype": "numerical",
384
+ "computer_representation": "Float"
385
+ },
386
+ "18": {
387
+ "sdtype": "numerical",
388
+ "computer_representation": "Float"
389
+ },
390
+ "19": {
391
+ "sdtype": "numerical",
392
+ "computer_representation": "Float"
393
+ },
394
+ "20": {
395
+ "sdtype": "numerical",
396
+ "computer_representation": "Float"
397
+ },
398
+ "21": {
399
+ "sdtype": "numerical",
400
+ "computer_representation": "Float"
401
+ },
402
+ "22": {
403
+ "sdtype": "numerical",
404
+ "computer_representation": "Float"
405
+ },
406
+ "23": {
407
+ "sdtype": "numerical",
408
+ "computer_representation": "Float"
409
+ },
410
+ "24": {
411
+ "sdtype": "numerical",
412
+ "computer_representation": "Float"
413
+ },
414
+ "25": {
415
+ "sdtype": "numerical",
416
+ "computer_representation": "Float"
417
+ },
418
+ "26": {
419
+ "sdtype": "numerical",
420
+ "computer_representation": "Float"
421
+ },
422
+ "27": {
423
+ "sdtype": "numerical",
424
+ "computer_representation": "Float"
425
+ },
426
+ "28": {
427
+ "sdtype": "numerical",
428
+ "computer_representation": "Float"
429
+ },
430
+ "29": {
431
+ "sdtype": "numerical",
432
+ "computer_representation": "Float"
433
+ },
434
+ "30": {
435
+ "sdtype": "numerical",
436
+ "computer_representation": "Float"
437
+ },
438
+ "31": {
439
+ "sdtype": "numerical",
440
+ "computer_representation": "Float"
441
+ },
442
+ "32": {
443
+ "sdtype": "numerical",
444
+ "computer_representation": "Float"
445
+ },
446
+ "33": {
447
+ "sdtype": "numerical",
448
+ "computer_representation": "Float"
449
+ },
450
+ "34": {
451
+ "sdtype": "numerical",
452
+ "computer_representation": "Float"
453
+ },
454
+ "35": {
455
+ "sdtype": "numerical",
456
+ "computer_representation": "Float"
457
+ },
458
+ "36": {
459
+ "sdtype": "numerical",
460
+ "computer_representation": "Float"
461
+ },
462
+ "38": {
463
+ "sdtype": "numerical",
464
+ "computer_representation": "Float"
465
+ },
466
+ "39": {
467
+ "sdtype": "numerical",
468
+ "computer_representation": "Float"
469
+ },
470
+ "40": {
471
+ "sdtype": "numerical",
472
+ "computer_representation": "Float"
473
+ },
474
+ "41": {
475
+ "sdtype": "numerical",
476
+ "computer_representation": "Float"
477
+ },
478
+ "42": {
479
+ "sdtype": "numerical",
480
+ "computer_representation": "Float"
481
+ },
482
+ "43": {
483
+ "sdtype": "numerical",
484
+ "computer_representation": "Float"
485
+ },
486
+ "44": {
487
+ "sdtype": "numerical",
488
+ "computer_representation": "Float"
489
+ },
490
+ "45": {
491
+ "sdtype": "numerical",
492
+ "computer_representation": "Float"
493
+ },
494
+ "47": {
495
+ "sdtype": "numerical",
496
+ "computer_representation": "Float"
497
+ },
498
+ "48": {
499
+ "sdtype": "numerical",
500
+ "computer_representation": "Float"
501
+ },
502
+ "49": {
503
+ "sdtype": "numerical",
504
+ "computer_representation": "Float"
505
+ },
506
+ "50": {
507
+ "sdtype": "numerical",
508
+ "computer_representation": "Float"
509
+ },
510
+ "51": {
511
+ "sdtype": "numerical",
512
+ "computer_representation": "Float"
513
+ },
514
+ "52": {
515
+ "sdtype": "numerical",
516
+ "computer_representation": "Float"
517
+ },
518
+ "53": {
519
+ "sdtype": "numerical",
520
+ "computer_representation": "Float"
521
+ },
522
+ "54": {
523
+ "sdtype": "numerical",
524
+ "computer_representation": "Float"
525
+ },
526
+ "55": {
527
+ "sdtype": "numerical",
528
+ "computer_representation": "Float"
529
+ },
530
+ "56": {
531
+ "sdtype": "numerical",
532
+ "computer_representation": "Float"
533
+ },
534
+ "3": {
535
+ "sdtype": "categorical"
536
+ },
537
+ "37": {
538
+ "sdtype": "categorical"
539
+ },
540
+ "46": {
541
+ "sdtype": "categorical"
542
+ },
543
+ "57": {
544
+ "sdtype": "categorical"
545
+ }
546
+ }
547
+ },
548
+ "n_classes": 2
549
+ }
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/real.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23
3
+ size 885832
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/staged_features.json ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "feature_name": "word_freq_make",
4
+ "data_type": "continuous",
5
+ "is_target": false
6
+ },
7
+ {
8
+ "feature_name": "word_freq_address",
9
+ "data_type": "continuous",
10
+ "is_target": false
11
+ },
12
+ {
13
+ "feature_name": "word_freq_all",
14
+ "data_type": "continuous",
15
+ "is_target": false
16
+ },
17
+ {
18
+ "feature_name": "word_freq_3d",
19
+ "data_type": "binary",
20
+ "is_target": false
21
+ },
22
+ {
23
+ "feature_name": "word_freq_our",
24
+ "data_type": "continuous",
25
+ "is_target": false
26
+ },
27
+ {
28
+ "feature_name": "word_freq_over",
29
+ "data_type": "continuous",
30
+ "is_target": false
31
+ },
32
+ {
33
+ "feature_name": "word_freq_remove",
34
+ "data_type": "continuous",
35
+ "is_target": false
36
+ },
37
+ {
38
+ "feature_name": "word_freq_internet",
39
+ "data_type": "continuous",
40
+ "is_target": false
41
+ },
42
+ {
43
+ "feature_name": "word_freq_order",
44
+ "data_type": "continuous",
45
+ "is_target": false
46
+ },
47
+ {
48
+ "feature_name": "word_freq_mail",
49
+ "data_type": "continuous",
50
+ "is_target": false
51
+ },
52
+ {
53
+ "feature_name": "word_freq_receive",
54
+ "data_type": "continuous",
55
+ "is_target": false
56
+ },
57
+ {
58
+ "feature_name": "word_freq_will",
59
+ "data_type": "continuous",
60
+ "is_target": false
61
+ },
62
+ {
63
+ "feature_name": "word_freq_people",
64
+ "data_type": "continuous",
65
+ "is_target": false
66
+ },
67
+ {
68
+ "feature_name": "word_freq_report",
69
+ "data_type": "continuous",
70
+ "is_target": false
71
+ },
72
+ {
73
+ "feature_name": "word_freq_addresses",
74
+ "data_type": "continuous",
75
+ "is_target": false
76
+ },
77
+ {
78
+ "feature_name": "word_freq_free",
79
+ "data_type": "continuous",
80
+ "is_target": false
81
+ },
82
+ {
83
+ "feature_name": "word_freq_business",
84
+ "data_type": "continuous",
85
+ "is_target": false
86
+ },
87
+ {
88
+ "feature_name": "word_freq_email",
89
+ "data_type": "continuous",
90
+ "is_target": false
91
+ },
92
+ {
93
+ "feature_name": "word_freq_you",
94
+ "data_type": "continuous",
95
+ "is_target": false
96
+ },
97
+ {
98
+ "feature_name": "word_freq_credit",
99
+ "data_type": "continuous",
100
+ "is_target": false
101
+ },
102
+ {
103
+ "feature_name": "word_freq_your",
104
+ "data_type": "continuous",
105
+ "is_target": false
106
+ },
107
+ {
108
+ "feature_name": "word_freq_font",
109
+ "data_type": "continuous",
110
+ "is_target": false
111
+ },
112
+ {
113
+ "feature_name": "word_freq_000",
114
+ "data_type": "continuous",
115
+ "is_target": false
116
+ },
117
+ {
118
+ "feature_name": "word_freq_money",
119
+ "data_type": "continuous",
120
+ "is_target": false
121
+ },
122
+ {
123
+ "feature_name": "word_freq_hp",
124
+ "data_type": "continuous",
125
+ "is_target": false
126
+ },
127
+ {
128
+ "feature_name": "word_freq_hpl",
129
+ "data_type": "continuous",
130
+ "is_target": false
131
+ },
132
+ {
133
+ "feature_name": "word_freq_george",
134
+ "data_type": "continuous",
135
+ "is_target": false
136
+ },
137
+ {
138
+ "feature_name": "word_freq_650",
139
+ "data_type": "continuous",
140
+ "is_target": false
141
+ },
142
+ {
143
+ "feature_name": "word_freq_lab",
144
+ "data_type": "continuous",
145
+ "is_target": false
146
+ },
147
+ {
148
+ "feature_name": "word_freq_labs",
149
+ "data_type": "continuous",
150
+ "is_target": false
151
+ },
152
+ {
153
+ "feature_name": "word_freq_telnet",
154
+ "data_type": "continuous",
155
+ "is_target": false
156
+ },
157
+ {
158
+ "feature_name": "word_freq_857",
159
+ "data_type": "continuous",
160
+ "is_target": false
161
+ },
162
+ {
163
+ "feature_name": "word_freq_data",
164
+ "data_type": "continuous",
165
+ "is_target": false
166
+ },
167
+ {
168
+ "feature_name": "word_freq_415",
169
+ "data_type": "continuous",
170
+ "is_target": false
171
+ },
172
+ {
173
+ "feature_name": "word_freq_85",
174
+ "data_type": "continuous",
175
+ "is_target": false
176
+ },
177
+ {
178
+ "feature_name": "word_freq_technology",
179
+ "data_type": "continuous",
180
+ "is_target": false
181
+ },
182
+ {
183
+ "feature_name": "word_freq_1999",
184
+ "data_type": "continuous",
185
+ "is_target": false
186
+ },
187
+ {
188
+ "feature_name": "word_freq_parts",
189
+ "data_type": "binary",
190
+ "is_target": false
191
+ },
192
+ {
193
+ "feature_name": "word_freq_pm",
194
+ "data_type": "continuous",
195
+ "is_target": false
196
+ },
197
+ {
198
+ "feature_name": "word_freq_direct",
199
+ "data_type": "continuous",
200
+ "is_target": false
201
+ },
202
+ {
203
+ "feature_name": "word_freq_cs",
204
+ "data_type": "continuous",
205
+ "is_target": false
206
+ },
207
+ {
208
+ "feature_name": "word_freq_meeting",
209
+ "data_type": "continuous",
210
+ "is_target": false
211
+ },
212
+ {
213
+ "feature_name": "word_freq_original",
214
+ "data_type": "continuous",
215
+ "is_target": false
216
+ },
217
+ {
218
+ "feature_name": "word_freq_project",
219
+ "data_type": "continuous",
220
+ "is_target": false
221
+ },
222
+ {
223
+ "feature_name": "word_freq_re",
224
+ "data_type": "continuous",
225
+ "is_target": false
226
+ },
227
+ {
228
+ "feature_name": "word_freq_edu",
229
+ "data_type": "continuous",
230
+ "is_target": false
231
+ },
232
+ {
233
+ "feature_name": "word_freq_table",
234
+ "data_type": "binary",
235
+ "is_target": false
236
+ },
237
+ {
238
+ "feature_name": "word_freq_conference",
239
+ "data_type": "continuous",
240
+ "is_target": false
241
+ },
242
+ {
243
+ "feature_name": "char_freq_%3B",
244
+ "data_type": "continuous",
245
+ "is_target": false
246
+ },
247
+ {
248
+ "feature_name": "char_freq_%28",
249
+ "data_type": "continuous",
250
+ "is_target": false
251
+ },
252
+ {
253
+ "feature_name": "char_freq_%5B",
254
+ "data_type": "continuous",
255
+ "is_target": false
256
+ },
257
+ {
258
+ "feature_name": "char_freq_%21",
259
+ "data_type": "continuous",
260
+ "is_target": false
261
+ },
262
+ {
263
+ "feature_name": "char_freq_%24",
264
+ "data_type": "continuous",
265
+ "is_target": false
266
+ },
267
+ {
268
+ "feature_name": "char_freq_%23",
269
+ "data_type": "continuous",
270
+ "is_target": false
271
+ },
272
+ {
273
+ "feature_name": "capital_run_length_average",
274
+ "data_type": "continuous",
275
+ "is_target": false
276
+ },
277
+ {
278
+ "feature_name": "capital_run_length_longest",
279
+ "data_type": "continuous",
280
+ "is_target": false
281
+ },
282
+ {
283
+ "feature_name": "capital_run_length_total",
284
+ "data_type": "continuous",
285
+ "is_target": false
286
+ },
287
+ {
288
+ "feature_name": "class",
289
+ "data_type": "binary",
290
+ "is_target": true
291
+ }
292
+ ]
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/test.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:165b9f8df9afdbccf1a6362155a785860134438138af92d7288cbe88b4965b03
3
+ size 111841
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f723c8c6f475f4dee37b81af1fc803cca3362ca22bea09c90cc39404b034b23
3
+ size 885832
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/val.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff8bfb6a9fa9b786c8e9a34d4619140e43ad25ca275d2459cc179352865f670c
3
+ size 111513
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/y_test.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7417d5a3b4486b0862000308c87349030121feeefeac8f238241092c079c92f9
3
+ size 3816
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/y_train.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dcf8afd19bc7e9ca8fb01ef1185bd48b6b28d45350e39fbf61379977d54b752
3
+ size 29568
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/tabular_bundle/pipeline_n1/y_val.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:787ebbf0b8baec314e7c0ce70d2c3f08a6aaf37ad150a43925ad3537324cf4b6
3
+ size 3808
syntheticFail/n1/tabbyflow/tabbyflow-n1-20260510_202554/train_20260510_202554.log ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9ca992180e9c6766b55d652cbd037ef94996f725634bf6f970c77637c6dd923
3
+ size 1175