jialinzhang commited on
Commit ·
cf3c1db
1
Parent(s): 5215b17
Add syntheticFail n6
Browse files- syntheticFail/n6/arf/arf-n6-20260429_031104/_arf_train.py +37 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/input_snapshot.json +36 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/public_gate/normalized_schema_snapshot.json +363 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/public_gate/public_gate_report.json +37 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/public_gate/staged_input_manifest.json +368 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/runtime_result.json +12 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/arf/adapter_report.json +7 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/arf/adapter_transforms_applied.json +1 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/arf/model_input_manifest.json +370 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/staged_features.json +87 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/test.csv +3 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/train.csv +3 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/val.csv +3 -0
- syntheticFail/n6/arf/arf-n6-20260429_031104/train_20260429_031104.log +0 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/_fd_X_host.npy +3 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/_fd_meta_host.json +1 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/_fd_train.py +28 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/input_snapshot.json +36 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/normalized_schema_snapshot.json +363 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/public_gate_report.json +37 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/staged_input_manifest.json +368 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/runtime_result.json +12 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/adapter_report.json +7 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/adapter_transforms_applied.json +1 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/model_input_manifest.json +370 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/staged_features.json +87 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/test.csv +3 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/train.csv +3 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/val.csv +3 -0
- syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/train_20260429_081631.log +3 -0
syntheticFail/n6/arf/arf-n6-20260429_031104/_arf_train.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pickle
|
| 2 |
+
import numpy as np
|
| 3 |
+
import pandas as pd
|
| 4 |
+
from arfpy import arf
|
| 5 |
+
|
| 6 |
+
def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame:
|
| 7 |
+
"""缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。"""
|
| 8 |
+
df = df.replace([np.inf, -np.inf], np.nan)
|
| 9 |
+
df = df.dropna(axis=1, how="all")
|
| 10 |
+
for col in df.select_dtypes(include=[np.number]).columns:
|
| 11 |
+
med = df[col].median()
|
| 12 |
+
if pd.isna(med):
|
| 13 |
+
med = 0.0
|
| 14 |
+
df[col] = df[col].fillna(med)
|
| 15 |
+
nu = int(df[col].nunique(dropna=True))
|
| 16 |
+
if nu <= 1:
|
| 17 |
+
continue
|
| 18 |
+
lo, hi = df[col].quantile(0.001), df[col].quantile(0.999)
|
| 19 |
+
if pd.notna(lo) and pd.notna(hi) and lo < hi:
|
| 20 |
+
df[col] = df[col].clip(lo, hi)
|
| 21 |
+
return df
|
| 22 |
+
|
| 23 |
+
df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/train.csv")
|
| 24 |
+
df = _sanitize_for_arf(df)
|
| 25 |
+
print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols")
|
| 26 |
+
|
| 27 |
+
model = arf.arf(x=df)
|
| 28 |
+
if hasattr(model, "fit"):
|
| 29 |
+
model.fit()
|
| 30 |
+
elif hasattr(model, "forde"):
|
| 31 |
+
model.forde()
|
| 32 |
+
else:
|
| 33 |
+
raise RuntimeError("arfpy API: no fit() / forde()")
|
| 34 |
+
|
| 35 |
+
with open("/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/arf_model.pkl", "wb") as f:
|
| 36 |
+
pickle.dump(model, f)
|
| 37 |
+
print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/arf_model.pkl")
|
syntheticFail/n6/arf/arf-n6-20260429_031104/input_snapshot.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"model": "arf",
|
| 4 |
+
"inputs": {
|
| 5 |
+
"train_csv": {
|
| 6 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv",
|
| 7 |
+
"exists": true,
|
| 8 |
+
"size": 323303,
|
| 9 |
+
"sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1"
|
| 10 |
+
},
|
| 11 |
+
"val_csv": {
|
| 12 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv",
|
| 13 |
+
"exists": true,
|
| 14 |
+
"size": 40506,
|
| 15 |
+
"sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d"
|
| 16 |
+
},
|
| 17 |
+
"test_csv": {
|
| 18 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv",
|
| 19 |
+
"exists": true,
|
| 20 |
+
"size": 40719,
|
| 21 |
+
"sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc"
|
| 22 |
+
},
|
| 23 |
+
"profile_json": {
|
| 24 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json",
|
| 25 |
+
"exists": true,
|
| 26 |
+
"size": 6559,
|
| 27 |
+
"sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759"
|
| 28 |
+
},
|
| 29 |
+
"contract_json": {
|
| 30 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json",
|
| 31 |
+
"exists": true,
|
| 32 |
+
"size": 8304,
|
| 33 |
+
"sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5"
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,363 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"target_column": "y",
|
| 4 |
+
"task_type": "classification",
|
| 5 |
+
"columns": [
|
| 6 |
+
{
|
| 7 |
+
"name": "X1",
|
| 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": 313,
|
| 17 |
+
"unique_ratio": 0.048906,
|
| 18 |
+
"example_values": [
|
| 19 |
+
"2",
|
| 20 |
+
"6",
|
| 21 |
+
"-2",
|
| 22 |
+
"-15",
|
| 23 |
+
"3"
|
| 24 |
+
]
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"name": "X2",
|
| 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": 328,
|
| 38 |
+
"unique_ratio": 0.05125,
|
| 39 |
+
"example_values": [
|
| 40 |
+
"-3",
|
| 41 |
+
"1",
|
| 42 |
+
"16",
|
| 43 |
+
"-4",
|
| 44 |
+
"-12"
|
| 45 |
+
]
|
| 46 |
+
}
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"name": "X3",
|
| 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": 316,
|
| 59 |
+
"unique_ratio": 0.049375,
|
| 60 |
+
"example_values": [
|
| 61 |
+
"-7",
|
| 62 |
+
"-6",
|
| 63 |
+
"3",
|
| 64 |
+
"-22",
|
| 65 |
+
"13"
|
| 66 |
+
]
|
| 67 |
+
}
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"name": "X4",
|
| 71 |
+
"role": "feature",
|
| 72 |
+
"semantic_type": "numeric",
|
| 73 |
+
"nullable": false,
|
| 74 |
+
"missing_tokens": [],
|
| 75 |
+
"parse_format": null,
|
| 76 |
+
"impute_strategy": "median",
|
| 77 |
+
"profile_stats": {
|
| 78 |
+
"missing_rate": 0.0,
|
| 79 |
+
"unique_count": 323,
|
| 80 |
+
"unique_ratio": 0.050469,
|
| 81 |
+
"example_values": [
|
| 82 |
+
"-6",
|
| 83 |
+
"-7",
|
| 84 |
+
"5",
|
| 85 |
+
"-5",
|
| 86 |
+
"-37"
|
| 87 |
+
]
|
| 88 |
+
}
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"name": "X5",
|
| 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": 325,
|
| 101 |
+
"unique_ratio": 0.050781,
|
| 102 |
+
"example_values": [
|
| 103 |
+
"-9",
|
| 104 |
+
"2",
|
| 105 |
+
"-12",
|
| 106 |
+
"-8",
|
| 107 |
+
"-63"
|
| 108 |
+
]
|
| 109 |
+
}
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"name": "X6",
|
| 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": 325,
|
| 122 |
+
"unique_ratio": 0.050781,
|
| 123 |
+
"example_values": [
|
| 124 |
+
"-6",
|
| 125 |
+
"-5",
|
| 126 |
+
"11",
|
| 127 |
+
"0",
|
| 128 |
+
"-86"
|
| 129 |
+
]
|
| 130 |
+
}
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"name": "X7",
|
| 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": 332,
|
| 143 |
+
"unique_ratio": 0.051875,
|
| 144 |
+
"example_values": [
|
| 145 |
+
"-1",
|
| 146 |
+
"-2",
|
| 147 |
+
"5",
|
| 148 |
+
"-4",
|
| 149 |
+
"-82"
|
| 150 |
+
]
|
| 151 |
+
}
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"name": "X8",
|
| 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": 330,
|
| 164 |
+
"unique_ratio": 0.051562,
|
| 165 |
+
"example_values": [
|
| 166 |
+
"3",
|
| 167 |
+
"-3",
|
| 168 |
+
"9",
|
| 169 |
+
"-9",
|
| 170 |
+
"-51"
|
| 171 |
+
]
|
| 172 |
+
}
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"name": "X9",
|
| 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": 333,
|
| 185 |
+
"unique_ratio": 0.052031,
|
| 186 |
+
"example_values": [
|
| 187 |
+
"1",
|
| 188 |
+
"19",
|
| 189 |
+
"0",
|
| 190 |
+
"-1",
|
| 191 |
+
"-30"
|
| 192 |
+
]
|
| 193 |
+
}
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"name": "X10",
|
| 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": 334,
|
| 206 |
+
"unique_ratio": 0.052187,
|
| 207 |
+
"example_values": [
|
| 208 |
+
"4",
|
| 209 |
+
"10",
|
| 210 |
+
"9",
|
| 211 |
+
"3",
|
| 212 |
+
"-13"
|
| 213 |
+
]
|
| 214 |
+
}
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"name": "X11",
|
| 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": 328,
|
| 227 |
+
"unique_ratio": 0.05125,
|
| 228 |
+
"example_values": [
|
| 229 |
+
"-4",
|
| 230 |
+
"-3",
|
| 231 |
+
"-1",
|
| 232 |
+
"-7",
|
| 233 |
+
"-20"
|
| 234 |
+
]
|
| 235 |
+
}
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"name": "X12",
|
| 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": 324,
|
| 248 |
+
"unique_ratio": 0.050625,
|
| 249 |
+
"example_values": [
|
| 250 |
+
"-5",
|
| 251 |
+
"-11",
|
| 252 |
+
"0",
|
| 253 |
+
"4",
|
| 254 |
+
"-29"
|
| 255 |
+
]
|
| 256 |
+
}
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"name": "X13",
|
| 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": 332,
|
| 269 |
+
"unique_ratio": 0.051875,
|
| 270 |
+
"example_values": [
|
| 271 |
+
"4",
|
| 272 |
+
"-6",
|
| 273 |
+
"6",
|
| 274 |
+
"9",
|
| 275 |
+
"-38"
|
| 276 |
+
]
|
| 277 |
+
}
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"name": "X14",
|
| 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": 318,
|
| 290 |
+
"unique_ratio": 0.049688,
|
| 291 |
+
"example_values": [
|
| 292 |
+
"1",
|
| 293 |
+
"30",
|
| 294 |
+
"11",
|
| 295 |
+
"-5",
|
| 296 |
+
"-29"
|
| 297 |
+
]
|
| 298 |
+
}
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"name": "X15",
|
| 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": 324,
|
| 311 |
+
"unique_ratio": 0.050625,
|
| 312 |
+
"example_values": [
|
| 313 |
+
"-8",
|
| 314 |
+
"4",
|
| 315 |
+
"-9",
|
| 316 |
+
"-6",
|
| 317 |
+
"-15"
|
| 318 |
+
]
|
| 319 |
+
}
|
| 320 |
+
},
|
| 321 |
+
{
|
| 322 |
+
"name": "X16",
|
| 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": 325,
|
| 332 |
+
"unique_ratio": 0.050781,
|
| 333 |
+
"example_values": [
|
| 334 |
+
"-1",
|
| 335 |
+
"-13",
|
| 336 |
+
"0",
|
| 337 |
+
"1",
|
| 338 |
+
"-23"
|
| 339 |
+
]
|
| 340 |
+
}
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"name": "y",
|
| 344 |
+
"role": "target",
|
| 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": 4,
|
| 353 |
+
"unique_ratio": 0.000625,
|
| 354 |
+
"example_values": [
|
| 355 |
+
"2",
|
| 356 |
+
"1",
|
| 357 |
+
"0",
|
| 358 |
+
"3"
|
| 359 |
+
]
|
| 360 |
+
}
|
| 361 |
+
}
|
| 362 |
+
]
|
| 363 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 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": "y",
|
| 31 |
+
"task_type": "classification",
|
| 32 |
+
"input_splits": {
|
| 33 |
+
"train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv",
|
| 34 |
+
"val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv",
|
| 35 |
+
"test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv"
|
| 36 |
+
}
|
| 37 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,368 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"target_column": "y",
|
| 4 |
+
"task_type": "classification",
|
| 5 |
+
"train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/train.csv",
|
| 6 |
+
"val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/val.csv",
|
| 7 |
+
"test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/test.csv",
|
| 8 |
+
"features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/staged_features.json",
|
| 9 |
+
"public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/public_gate/public_gate_report.json",
|
| 10 |
+
"column_schema": [
|
| 11 |
+
{
|
| 12 |
+
"name": "X1",
|
| 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": 313,
|
| 22 |
+
"unique_ratio": 0.048906,
|
| 23 |
+
"example_values": [
|
| 24 |
+
"2",
|
| 25 |
+
"6",
|
| 26 |
+
"-2",
|
| 27 |
+
"-15",
|
| 28 |
+
"3"
|
| 29 |
+
]
|
| 30 |
+
}
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"name": "X2",
|
| 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": 328,
|
| 43 |
+
"unique_ratio": 0.05125,
|
| 44 |
+
"example_values": [
|
| 45 |
+
"-3",
|
| 46 |
+
"1",
|
| 47 |
+
"16",
|
| 48 |
+
"-4",
|
| 49 |
+
"-12"
|
| 50 |
+
]
|
| 51 |
+
}
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"name": "X3",
|
| 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": 316,
|
| 64 |
+
"unique_ratio": 0.049375,
|
| 65 |
+
"example_values": [
|
| 66 |
+
"-7",
|
| 67 |
+
"-6",
|
| 68 |
+
"3",
|
| 69 |
+
"-22",
|
| 70 |
+
"13"
|
| 71 |
+
]
|
| 72 |
+
}
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"name": "X4",
|
| 76 |
+
"role": "feature",
|
| 77 |
+
"semantic_type": "numeric",
|
| 78 |
+
"nullable": false,
|
| 79 |
+
"missing_tokens": [],
|
| 80 |
+
"parse_format": null,
|
| 81 |
+
"impute_strategy": "median",
|
| 82 |
+
"profile_stats": {
|
| 83 |
+
"missing_rate": 0.0,
|
| 84 |
+
"unique_count": 323,
|
| 85 |
+
"unique_ratio": 0.050469,
|
| 86 |
+
"example_values": [
|
| 87 |
+
"-6",
|
| 88 |
+
"-7",
|
| 89 |
+
"5",
|
| 90 |
+
"-5",
|
| 91 |
+
"-37"
|
| 92 |
+
]
|
| 93 |
+
}
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"name": "X5",
|
| 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": 325,
|
| 106 |
+
"unique_ratio": 0.050781,
|
| 107 |
+
"example_values": [
|
| 108 |
+
"-9",
|
| 109 |
+
"2",
|
| 110 |
+
"-12",
|
| 111 |
+
"-8",
|
| 112 |
+
"-63"
|
| 113 |
+
]
|
| 114 |
+
}
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"name": "X6",
|
| 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": 325,
|
| 127 |
+
"unique_ratio": 0.050781,
|
| 128 |
+
"example_values": [
|
| 129 |
+
"-6",
|
| 130 |
+
"-5",
|
| 131 |
+
"11",
|
| 132 |
+
"0",
|
| 133 |
+
"-86"
|
| 134 |
+
]
|
| 135 |
+
}
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"name": "X7",
|
| 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": 332,
|
| 148 |
+
"unique_ratio": 0.051875,
|
| 149 |
+
"example_values": [
|
| 150 |
+
"-1",
|
| 151 |
+
"-2",
|
| 152 |
+
"5",
|
| 153 |
+
"-4",
|
| 154 |
+
"-82"
|
| 155 |
+
]
|
| 156 |
+
}
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"name": "X8",
|
| 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": 330,
|
| 169 |
+
"unique_ratio": 0.051562,
|
| 170 |
+
"example_values": [
|
| 171 |
+
"3",
|
| 172 |
+
"-3",
|
| 173 |
+
"9",
|
| 174 |
+
"-9",
|
| 175 |
+
"-51"
|
| 176 |
+
]
|
| 177 |
+
}
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"name": "X9",
|
| 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": 333,
|
| 190 |
+
"unique_ratio": 0.052031,
|
| 191 |
+
"example_values": [
|
| 192 |
+
"1",
|
| 193 |
+
"19",
|
| 194 |
+
"0",
|
| 195 |
+
"-1",
|
| 196 |
+
"-30"
|
| 197 |
+
]
|
| 198 |
+
}
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"name": "X10",
|
| 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": 334,
|
| 211 |
+
"unique_ratio": 0.052187,
|
| 212 |
+
"example_values": [
|
| 213 |
+
"4",
|
| 214 |
+
"10",
|
| 215 |
+
"9",
|
| 216 |
+
"3",
|
| 217 |
+
"-13"
|
| 218 |
+
]
|
| 219 |
+
}
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"name": "X11",
|
| 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": 328,
|
| 232 |
+
"unique_ratio": 0.05125,
|
| 233 |
+
"example_values": [
|
| 234 |
+
"-4",
|
| 235 |
+
"-3",
|
| 236 |
+
"-1",
|
| 237 |
+
"-7",
|
| 238 |
+
"-20"
|
| 239 |
+
]
|
| 240 |
+
}
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"name": "X12",
|
| 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": 324,
|
| 253 |
+
"unique_ratio": 0.050625,
|
| 254 |
+
"example_values": [
|
| 255 |
+
"-5",
|
| 256 |
+
"-11",
|
| 257 |
+
"0",
|
| 258 |
+
"4",
|
| 259 |
+
"-29"
|
| 260 |
+
]
|
| 261 |
+
}
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"name": "X13",
|
| 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": 332,
|
| 274 |
+
"unique_ratio": 0.051875,
|
| 275 |
+
"example_values": [
|
| 276 |
+
"4",
|
| 277 |
+
"-6",
|
| 278 |
+
"6",
|
| 279 |
+
"9",
|
| 280 |
+
"-38"
|
| 281 |
+
]
|
| 282 |
+
}
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"name": "X14",
|
| 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": 318,
|
| 295 |
+
"unique_ratio": 0.049688,
|
| 296 |
+
"example_values": [
|
| 297 |
+
"1",
|
| 298 |
+
"30",
|
| 299 |
+
"11",
|
| 300 |
+
"-5",
|
| 301 |
+
"-29"
|
| 302 |
+
]
|
| 303 |
+
}
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"name": "X15",
|
| 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": 324,
|
| 316 |
+
"unique_ratio": 0.050625,
|
| 317 |
+
"example_values": [
|
| 318 |
+
"-8",
|
| 319 |
+
"4",
|
| 320 |
+
"-9",
|
| 321 |
+
"-6",
|
| 322 |
+
"-15"
|
| 323 |
+
]
|
| 324 |
+
}
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"name": "X16",
|
| 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": 325,
|
| 337 |
+
"unique_ratio": 0.050781,
|
| 338 |
+
"example_values": [
|
| 339 |
+
"-1",
|
| 340 |
+
"-13",
|
| 341 |
+
"0",
|
| 342 |
+
"1",
|
| 343 |
+
"-23"
|
| 344 |
+
]
|
| 345 |
+
}
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"name": "y",
|
| 349 |
+
"role": "target",
|
| 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": 4,
|
| 358 |
+
"unique_ratio": 0.000625,
|
| 359 |
+
"example_values": [
|
| 360 |
+
"2",
|
| 361 |
+
"1",
|
| 362 |
+
"0",
|
| 363 |
+
"3"
|
| 364 |
+
]
|
| 365 |
+
}
|
| 366 |
+
}
|
| 367 |
+
]
|
| 368 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/runtime_result.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"model": "arf",
|
| 4 |
+
"run_id": "arf-n6-20260429_031104",
|
| 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": "[Errno 32] Broken pipe",
|
| 11 |
+
"artifacts": {}
|
| 12 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/arf/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/n6/arf/arf-n6-20260429_031104/staged/arf/model_input_manifest.json"
|
| 7 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/arf/adapter_transforms_applied.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
[]
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/arf/model_input_manifest.json
ADDED
|
@@ -0,0 +1,370 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"model": "arf",
|
| 4 |
+
"target_column": "y",
|
| 5 |
+
"task_type": "classification",
|
| 6 |
+
"column_schema": [
|
| 7 |
+
{
|
| 8 |
+
"name": "X1",
|
| 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": 313,
|
| 18 |
+
"unique_ratio": 0.048906,
|
| 19 |
+
"example_values": [
|
| 20 |
+
"2",
|
| 21 |
+
"6",
|
| 22 |
+
"-2",
|
| 23 |
+
"-15",
|
| 24 |
+
"3"
|
| 25 |
+
]
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"name": "X2",
|
| 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": 328,
|
| 39 |
+
"unique_ratio": 0.05125,
|
| 40 |
+
"example_values": [
|
| 41 |
+
"-3",
|
| 42 |
+
"1",
|
| 43 |
+
"16",
|
| 44 |
+
"-4",
|
| 45 |
+
"-12"
|
| 46 |
+
]
|
| 47 |
+
}
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"name": "X3",
|
| 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": 316,
|
| 60 |
+
"unique_ratio": 0.049375,
|
| 61 |
+
"example_values": [
|
| 62 |
+
"-7",
|
| 63 |
+
"-6",
|
| 64 |
+
"3",
|
| 65 |
+
"-22",
|
| 66 |
+
"13"
|
| 67 |
+
]
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"name": "X4",
|
| 72 |
+
"role": "feature",
|
| 73 |
+
"semantic_type": "numeric",
|
| 74 |
+
"nullable": false,
|
| 75 |
+
"missing_tokens": [],
|
| 76 |
+
"parse_format": null,
|
| 77 |
+
"impute_strategy": "median",
|
| 78 |
+
"profile_stats": {
|
| 79 |
+
"missing_rate": 0.0,
|
| 80 |
+
"unique_count": 323,
|
| 81 |
+
"unique_ratio": 0.050469,
|
| 82 |
+
"example_values": [
|
| 83 |
+
"-6",
|
| 84 |
+
"-7",
|
| 85 |
+
"5",
|
| 86 |
+
"-5",
|
| 87 |
+
"-37"
|
| 88 |
+
]
|
| 89 |
+
}
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"name": "X5",
|
| 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": 325,
|
| 102 |
+
"unique_ratio": 0.050781,
|
| 103 |
+
"example_values": [
|
| 104 |
+
"-9",
|
| 105 |
+
"2",
|
| 106 |
+
"-12",
|
| 107 |
+
"-8",
|
| 108 |
+
"-63"
|
| 109 |
+
]
|
| 110 |
+
}
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"name": "X6",
|
| 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": 325,
|
| 123 |
+
"unique_ratio": 0.050781,
|
| 124 |
+
"example_values": [
|
| 125 |
+
"-6",
|
| 126 |
+
"-5",
|
| 127 |
+
"11",
|
| 128 |
+
"0",
|
| 129 |
+
"-86"
|
| 130 |
+
]
|
| 131 |
+
}
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"name": "X7",
|
| 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": 332,
|
| 144 |
+
"unique_ratio": 0.051875,
|
| 145 |
+
"example_values": [
|
| 146 |
+
"-1",
|
| 147 |
+
"-2",
|
| 148 |
+
"5",
|
| 149 |
+
"-4",
|
| 150 |
+
"-82"
|
| 151 |
+
]
|
| 152 |
+
}
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"name": "X8",
|
| 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": 330,
|
| 165 |
+
"unique_ratio": 0.051562,
|
| 166 |
+
"example_values": [
|
| 167 |
+
"3",
|
| 168 |
+
"-3",
|
| 169 |
+
"9",
|
| 170 |
+
"-9",
|
| 171 |
+
"-51"
|
| 172 |
+
]
|
| 173 |
+
}
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"name": "X9",
|
| 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": 333,
|
| 186 |
+
"unique_ratio": 0.052031,
|
| 187 |
+
"example_values": [
|
| 188 |
+
"1",
|
| 189 |
+
"19",
|
| 190 |
+
"0",
|
| 191 |
+
"-1",
|
| 192 |
+
"-30"
|
| 193 |
+
]
|
| 194 |
+
}
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"name": "X10",
|
| 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": 334,
|
| 207 |
+
"unique_ratio": 0.052187,
|
| 208 |
+
"example_values": [
|
| 209 |
+
"4",
|
| 210 |
+
"10",
|
| 211 |
+
"9",
|
| 212 |
+
"3",
|
| 213 |
+
"-13"
|
| 214 |
+
]
|
| 215 |
+
}
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"name": "X11",
|
| 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": 328,
|
| 228 |
+
"unique_ratio": 0.05125,
|
| 229 |
+
"example_values": [
|
| 230 |
+
"-4",
|
| 231 |
+
"-3",
|
| 232 |
+
"-1",
|
| 233 |
+
"-7",
|
| 234 |
+
"-20"
|
| 235 |
+
]
|
| 236 |
+
}
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"name": "X12",
|
| 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": 324,
|
| 249 |
+
"unique_ratio": 0.050625,
|
| 250 |
+
"example_values": [
|
| 251 |
+
"-5",
|
| 252 |
+
"-11",
|
| 253 |
+
"0",
|
| 254 |
+
"4",
|
| 255 |
+
"-29"
|
| 256 |
+
]
|
| 257 |
+
}
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"name": "X13",
|
| 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": 332,
|
| 270 |
+
"unique_ratio": 0.051875,
|
| 271 |
+
"example_values": [
|
| 272 |
+
"4",
|
| 273 |
+
"-6",
|
| 274 |
+
"6",
|
| 275 |
+
"9",
|
| 276 |
+
"-38"
|
| 277 |
+
]
|
| 278 |
+
}
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"name": "X14",
|
| 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": 318,
|
| 291 |
+
"unique_ratio": 0.049688,
|
| 292 |
+
"example_values": [
|
| 293 |
+
"1",
|
| 294 |
+
"30",
|
| 295 |
+
"11",
|
| 296 |
+
"-5",
|
| 297 |
+
"-29"
|
| 298 |
+
]
|
| 299 |
+
}
|
| 300 |
+
},
|
| 301 |
+
{
|
| 302 |
+
"name": "X15",
|
| 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": 324,
|
| 312 |
+
"unique_ratio": 0.050625,
|
| 313 |
+
"example_values": [
|
| 314 |
+
"-8",
|
| 315 |
+
"4",
|
| 316 |
+
"-9",
|
| 317 |
+
"-6",
|
| 318 |
+
"-15"
|
| 319 |
+
]
|
| 320 |
+
}
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"name": "X16",
|
| 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": 325,
|
| 333 |
+
"unique_ratio": 0.050781,
|
| 334 |
+
"example_values": [
|
| 335 |
+
"-1",
|
| 336 |
+
"-13",
|
| 337 |
+
"0",
|
| 338 |
+
"1",
|
| 339 |
+
"-23"
|
| 340 |
+
]
|
| 341 |
+
}
|
| 342 |
+
},
|
| 343 |
+
{
|
| 344 |
+
"name": "y",
|
| 345 |
+
"role": "target",
|
| 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": 4,
|
| 354 |
+
"unique_ratio": 0.000625,
|
| 355 |
+
"example_values": [
|
| 356 |
+
"2",
|
| 357 |
+
"1",
|
| 358 |
+
"0",
|
| 359 |
+
"3"
|
| 360 |
+
]
|
| 361 |
+
}
|
| 362 |
+
}
|
| 363 |
+
],
|
| 364 |
+
"public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/public_gate/staged_input_manifest.json",
|
| 365 |
+
"train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/train.csv",
|
| 366 |
+
"val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/val.csv",
|
| 367 |
+
"test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/test.csv",
|
| 368 |
+
"features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/staged/public/staged_features.json",
|
| 369 |
+
"public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031104/public_gate/public_gate_report.json"
|
| 370 |
+
}
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"feature_name": "X1",
|
| 4 |
+
"data_type": "continuous",
|
| 5 |
+
"is_target": false
|
| 6 |
+
},
|
| 7 |
+
{
|
| 8 |
+
"feature_name": "X2",
|
| 9 |
+
"data_type": "continuous",
|
| 10 |
+
"is_target": false
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"feature_name": "X3",
|
| 14 |
+
"data_type": "continuous",
|
| 15 |
+
"is_target": false
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"feature_name": "X4",
|
| 19 |
+
"data_type": "continuous",
|
| 20 |
+
"is_target": false
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"feature_name": "X5",
|
| 24 |
+
"data_type": "continuous",
|
| 25 |
+
"is_target": false
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"feature_name": "X6",
|
| 29 |
+
"data_type": "continuous",
|
| 30 |
+
"is_target": false
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"feature_name": "X7",
|
| 34 |
+
"data_type": "continuous",
|
| 35 |
+
"is_target": false
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"feature_name": "X8",
|
| 39 |
+
"data_type": "continuous",
|
| 40 |
+
"is_target": false
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"feature_name": "X9",
|
| 44 |
+
"data_type": "continuous",
|
| 45 |
+
"is_target": false
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"feature_name": "X10",
|
| 49 |
+
"data_type": "continuous",
|
| 50 |
+
"is_target": false
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"feature_name": "X11",
|
| 54 |
+
"data_type": "continuous",
|
| 55 |
+
"is_target": false
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"feature_name": "X12",
|
| 59 |
+
"data_type": "continuous",
|
| 60 |
+
"is_target": false
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"feature_name": "X13",
|
| 64 |
+
"data_type": "continuous",
|
| 65 |
+
"is_target": false
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"feature_name": "X14",
|
| 69 |
+
"data_type": "continuous",
|
| 70 |
+
"is_target": false
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"feature_name": "X15",
|
| 74 |
+
"data_type": "continuous",
|
| 75 |
+
"is_target": false
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"feature_name": "X16",
|
| 79 |
+
"data_type": "continuous",
|
| 80 |
+
"is_target": false
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"feature_name": "y",
|
| 84 |
+
"data_type": "continuous",
|
| 85 |
+
"is_target": true
|
| 86 |
+
}
|
| 87 |
+
]
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
|
| 3 |
+
size 39918
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
|
| 3 |
+
size 316902
|
syntheticFail/n6/arf/arf-n6-20260429_031104/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
|
| 3 |
+
size 39705
|
syntheticFail/n6/arf/arf-n6-20260429_031104/train_20260429_031104.log
ADDED
|
File without changes
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/_fd_X_host.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e4ca71ef754aec60001d4541bfbd80348f65da032f4a0588c700c98f612c952
|
| 3 |
+
size 435328
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/_fd_meta_host.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"column_names": ["X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10", "X11", "X12", "X13", "X14", "X15", "X16", "y"], "cat_indexes": []}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/_fd_train.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import shutil, json
|
| 3 |
+
shutil.copy(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/_fd_X_host.npy', '/tmp/fd_X.npy')
|
| 4 |
+
with open(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/_fd_meta_host.json') as f:
|
| 5 |
+
open('/tmp/fd_meta.json','w').write(f.read())
|
| 6 |
+
|
| 7 |
+
import numpy as np, joblib, json, os
|
| 8 |
+
from ForestDiffusion import ForestDiffusionModel
|
| 9 |
+
X = np.load("/tmp/fd_X.npy")
|
| 10 |
+
with open("/tmp/fd_meta.json") as f:
|
| 11 |
+
meta = json.load(f)
|
| 12 |
+
cat_indexes = meta["cat_indexes"]
|
| 13 |
+
print(
|
| 14 |
+
"[ForestDiffusion] train config: "
|
| 15 |
+
f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 "
|
| 16 |
+
f"n_estimators=100 duplicate_K=20 n_jobs=2 "
|
| 17 |
+
f"xgb_verbosity=1",
|
| 18 |
+
flush=True,
|
| 19 |
+
)
|
| 20 |
+
m = ForestDiffusionModel(
|
| 21 |
+
X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2,
|
| 22 |
+
model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes,
|
| 23 |
+
verbosity=1,
|
| 24 |
+
)
|
| 25 |
+
joblib.dump((m, meta), "/tmp/fd_model.joblib")
|
| 26 |
+
print("ForestDiffusion train OK")
|
| 27 |
+
|
| 28 |
+
shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/forestdiffusion_model.joblib')
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/input_snapshot.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"model": "forestdiffusion",
|
| 4 |
+
"inputs": {
|
| 5 |
+
"train_csv": {
|
| 6 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv",
|
| 7 |
+
"exists": true,
|
| 8 |
+
"size": 323303,
|
| 9 |
+
"sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1"
|
| 10 |
+
},
|
| 11 |
+
"val_csv": {
|
| 12 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv",
|
| 13 |
+
"exists": true,
|
| 14 |
+
"size": 40506,
|
| 15 |
+
"sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d"
|
| 16 |
+
},
|
| 17 |
+
"test_csv": {
|
| 18 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv",
|
| 19 |
+
"exists": true,
|
| 20 |
+
"size": 40719,
|
| 21 |
+
"sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc"
|
| 22 |
+
},
|
| 23 |
+
"profile_json": {
|
| 24 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json",
|
| 25 |
+
"exists": true,
|
| 26 |
+
"size": 6559,
|
| 27 |
+
"sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759"
|
| 28 |
+
},
|
| 29 |
+
"contract_json": {
|
| 30 |
+
"path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json",
|
| 31 |
+
"exists": true,
|
| 32 |
+
"size": 8304,
|
| 33 |
+
"sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5"
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,363 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"target_column": "y",
|
| 4 |
+
"task_type": "classification",
|
| 5 |
+
"columns": [
|
| 6 |
+
{
|
| 7 |
+
"name": "X1",
|
| 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": 313,
|
| 17 |
+
"unique_ratio": 0.048906,
|
| 18 |
+
"example_values": [
|
| 19 |
+
"2",
|
| 20 |
+
"6",
|
| 21 |
+
"-2",
|
| 22 |
+
"-15",
|
| 23 |
+
"3"
|
| 24 |
+
]
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"name": "X2",
|
| 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": 328,
|
| 38 |
+
"unique_ratio": 0.05125,
|
| 39 |
+
"example_values": [
|
| 40 |
+
"-3",
|
| 41 |
+
"1",
|
| 42 |
+
"16",
|
| 43 |
+
"-4",
|
| 44 |
+
"-12"
|
| 45 |
+
]
|
| 46 |
+
}
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"name": "X3",
|
| 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": 316,
|
| 59 |
+
"unique_ratio": 0.049375,
|
| 60 |
+
"example_values": [
|
| 61 |
+
"-7",
|
| 62 |
+
"-6",
|
| 63 |
+
"3",
|
| 64 |
+
"-22",
|
| 65 |
+
"13"
|
| 66 |
+
]
|
| 67 |
+
}
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"name": "X4",
|
| 71 |
+
"role": "feature",
|
| 72 |
+
"semantic_type": "numeric",
|
| 73 |
+
"nullable": false,
|
| 74 |
+
"missing_tokens": [],
|
| 75 |
+
"parse_format": null,
|
| 76 |
+
"impute_strategy": "median",
|
| 77 |
+
"profile_stats": {
|
| 78 |
+
"missing_rate": 0.0,
|
| 79 |
+
"unique_count": 323,
|
| 80 |
+
"unique_ratio": 0.050469,
|
| 81 |
+
"example_values": [
|
| 82 |
+
"-6",
|
| 83 |
+
"-7",
|
| 84 |
+
"5",
|
| 85 |
+
"-5",
|
| 86 |
+
"-37"
|
| 87 |
+
]
|
| 88 |
+
}
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"name": "X5",
|
| 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": 325,
|
| 101 |
+
"unique_ratio": 0.050781,
|
| 102 |
+
"example_values": [
|
| 103 |
+
"-9",
|
| 104 |
+
"2",
|
| 105 |
+
"-12",
|
| 106 |
+
"-8",
|
| 107 |
+
"-63"
|
| 108 |
+
]
|
| 109 |
+
}
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"name": "X6",
|
| 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": 325,
|
| 122 |
+
"unique_ratio": 0.050781,
|
| 123 |
+
"example_values": [
|
| 124 |
+
"-6",
|
| 125 |
+
"-5",
|
| 126 |
+
"11",
|
| 127 |
+
"0",
|
| 128 |
+
"-86"
|
| 129 |
+
]
|
| 130 |
+
}
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"name": "X7",
|
| 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": 332,
|
| 143 |
+
"unique_ratio": 0.051875,
|
| 144 |
+
"example_values": [
|
| 145 |
+
"-1",
|
| 146 |
+
"-2",
|
| 147 |
+
"5",
|
| 148 |
+
"-4",
|
| 149 |
+
"-82"
|
| 150 |
+
]
|
| 151 |
+
}
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"name": "X8",
|
| 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": 330,
|
| 164 |
+
"unique_ratio": 0.051562,
|
| 165 |
+
"example_values": [
|
| 166 |
+
"3",
|
| 167 |
+
"-3",
|
| 168 |
+
"9",
|
| 169 |
+
"-9",
|
| 170 |
+
"-51"
|
| 171 |
+
]
|
| 172 |
+
}
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"name": "X9",
|
| 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": 333,
|
| 185 |
+
"unique_ratio": 0.052031,
|
| 186 |
+
"example_values": [
|
| 187 |
+
"1",
|
| 188 |
+
"19",
|
| 189 |
+
"0",
|
| 190 |
+
"-1",
|
| 191 |
+
"-30"
|
| 192 |
+
]
|
| 193 |
+
}
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"name": "X10",
|
| 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": 334,
|
| 206 |
+
"unique_ratio": 0.052187,
|
| 207 |
+
"example_values": [
|
| 208 |
+
"4",
|
| 209 |
+
"10",
|
| 210 |
+
"9",
|
| 211 |
+
"3",
|
| 212 |
+
"-13"
|
| 213 |
+
]
|
| 214 |
+
}
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"name": "X11",
|
| 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": 328,
|
| 227 |
+
"unique_ratio": 0.05125,
|
| 228 |
+
"example_values": [
|
| 229 |
+
"-4",
|
| 230 |
+
"-3",
|
| 231 |
+
"-1",
|
| 232 |
+
"-7",
|
| 233 |
+
"-20"
|
| 234 |
+
]
|
| 235 |
+
}
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"name": "X12",
|
| 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": 324,
|
| 248 |
+
"unique_ratio": 0.050625,
|
| 249 |
+
"example_values": [
|
| 250 |
+
"-5",
|
| 251 |
+
"-11",
|
| 252 |
+
"0",
|
| 253 |
+
"4",
|
| 254 |
+
"-29"
|
| 255 |
+
]
|
| 256 |
+
}
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"name": "X13",
|
| 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": 332,
|
| 269 |
+
"unique_ratio": 0.051875,
|
| 270 |
+
"example_values": [
|
| 271 |
+
"4",
|
| 272 |
+
"-6",
|
| 273 |
+
"6",
|
| 274 |
+
"9",
|
| 275 |
+
"-38"
|
| 276 |
+
]
|
| 277 |
+
}
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"name": "X14",
|
| 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": 318,
|
| 290 |
+
"unique_ratio": 0.049688,
|
| 291 |
+
"example_values": [
|
| 292 |
+
"1",
|
| 293 |
+
"30",
|
| 294 |
+
"11",
|
| 295 |
+
"-5",
|
| 296 |
+
"-29"
|
| 297 |
+
]
|
| 298 |
+
}
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"name": "X15",
|
| 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": 324,
|
| 311 |
+
"unique_ratio": 0.050625,
|
| 312 |
+
"example_values": [
|
| 313 |
+
"-8",
|
| 314 |
+
"4",
|
| 315 |
+
"-9",
|
| 316 |
+
"-6",
|
| 317 |
+
"-15"
|
| 318 |
+
]
|
| 319 |
+
}
|
| 320 |
+
},
|
| 321 |
+
{
|
| 322 |
+
"name": "X16",
|
| 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": 325,
|
| 332 |
+
"unique_ratio": 0.050781,
|
| 333 |
+
"example_values": [
|
| 334 |
+
"-1",
|
| 335 |
+
"-13",
|
| 336 |
+
"0",
|
| 337 |
+
"1",
|
| 338 |
+
"-23"
|
| 339 |
+
]
|
| 340 |
+
}
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"name": "y",
|
| 344 |
+
"role": "target",
|
| 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": 4,
|
| 353 |
+
"unique_ratio": 0.000625,
|
| 354 |
+
"example_values": [
|
| 355 |
+
"2",
|
| 356 |
+
"1",
|
| 357 |
+
"0",
|
| 358 |
+
"3"
|
| 359 |
+
]
|
| 360 |
+
}
|
| 361 |
+
}
|
| 362 |
+
]
|
| 363 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 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": "y",
|
| 31 |
+
"task_type": "classification",
|
| 32 |
+
"input_splits": {
|
| 33 |
+
"train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv",
|
| 34 |
+
"val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv",
|
| 35 |
+
"test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv"
|
| 36 |
+
}
|
| 37 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,368 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"target_column": "y",
|
| 4 |
+
"task_type": "classification",
|
| 5 |
+
"train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/train.csv",
|
| 6 |
+
"val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/val.csv",
|
| 7 |
+
"test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/test.csv",
|
| 8 |
+
"features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/staged_features.json",
|
| 9 |
+
"public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/public_gate_report.json",
|
| 10 |
+
"column_schema": [
|
| 11 |
+
{
|
| 12 |
+
"name": "X1",
|
| 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": 313,
|
| 22 |
+
"unique_ratio": 0.048906,
|
| 23 |
+
"example_values": [
|
| 24 |
+
"2",
|
| 25 |
+
"6",
|
| 26 |
+
"-2",
|
| 27 |
+
"-15",
|
| 28 |
+
"3"
|
| 29 |
+
]
|
| 30 |
+
}
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"name": "X2",
|
| 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": 328,
|
| 43 |
+
"unique_ratio": 0.05125,
|
| 44 |
+
"example_values": [
|
| 45 |
+
"-3",
|
| 46 |
+
"1",
|
| 47 |
+
"16",
|
| 48 |
+
"-4",
|
| 49 |
+
"-12"
|
| 50 |
+
]
|
| 51 |
+
}
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"name": "X3",
|
| 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": 316,
|
| 64 |
+
"unique_ratio": 0.049375,
|
| 65 |
+
"example_values": [
|
| 66 |
+
"-7",
|
| 67 |
+
"-6",
|
| 68 |
+
"3",
|
| 69 |
+
"-22",
|
| 70 |
+
"13"
|
| 71 |
+
]
|
| 72 |
+
}
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"name": "X4",
|
| 76 |
+
"role": "feature",
|
| 77 |
+
"semantic_type": "numeric",
|
| 78 |
+
"nullable": false,
|
| 79 |
+
"missing_tokens": [],
|
| 80 |
+
"parse_format": null,
|
| 81 |
+
"impute_strategy": "median",
|
| 82 |
+
"profile_stats": {
|
| 83 |
+
"missing_rate": 0.0,
|
| 84 |
+
"unique_count": 323,
|
| 85 |
+
"unique_ratio": 0.050469,
|
| 86 |
+
"example_values": [
|
| 87 |
+
"-6",
|
| 88 |
+
"-7",
|
| 89 |
+
"5",
|
| 90 |
+
"-5",
|
| 91 |
+
"-37"
|
| 92 |
+
]
|
| 93 |
+
}
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"name": "X5",
|
| 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": 325,
|
| 106 |
+
"unique_ratio": 0.050781,
|
| 107 |
+
"example_values": [
|
| 108 |
+
"-9",
|
| 109 |
+
"2",
|
| 110 |
+
"-12",
|
| 111 |
+
"-8",
|
| 112 |
+
"-63"
|
| 113 |
+
]
|
| 114 |
+
}
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"name": "X6",
|
| 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": 325,
|
| 127 |
+
"unique_ratio": 0.050781,
|
| 128 |
+
"example_values": [
|
| 129 |
+
"-6",
|
| 130 |
+
"-5",
|
| 131 |
+
"11",
|
| 132 |
+
"0",
|
| 133 |
+
"-86"
|
| 134 |
+
]
|
| 135 |
+
}
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"name": "X7",
|
| 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": 332,
|
| 148 |
+
"unique_ratio": 0.051875,
|
| 149 |
+
"example_values": [
|
| 150 |
+
"-1",
|
| 151 |
+
"-2",
|
| 152 |
+
"5",
|
| 153 |
+
"-4",
|
| 154 |
+
"-82"
|
| 155 |
+
]
|
| 156 |
+
}
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"name": "X8",
|
| 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": 330,
|
| 169 |
+
"unique_ratio": 0.051562,
|
| 170 |
+
"example_values": [
|
| 171 |
+
"3",
|
| 172 |
+
"-3",
|
| 173 |
+
"9",
|
| 174 |
+
"-9",
|
| 175 |
+
"-51"
|
| 176 |
+
]
|
| 177 |
+
}
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"name": "X9",
|
| 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": 333,
|
| 190 |
+
"unique_ratio": 0.052031,
|
| 191 |
+
"example_values": [
|
| 192 |
+
"1",
|
| 193 |
+
"19",
|
| 194 |
+
"0",
|
| 195 |
+
"-1",
|
| 196 |
+
"-30"
|
| 197 |
+
]
|
| 198 |
+
}
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"name": "X10",
|
| 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": 334,
|
| 211 |
+
"unique_ratio": 0.052187,
|
| 212 |
+
"example_values": [
|
| 213 |
+
"4",
|
| 214 |
+
"10",
|
| 215 |
+
"9",
|
| 216 |
+
"3",
|
| 217 |
+
"-13"
|
| 218 |
+
]
|
| 219 |
+
}
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"name": "X11",
|
| 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": 328,
|
| 232 |
+
"unique_ratio": 0.05125,
|
| 233 |
+
"example_values": [
|
| 234 |
+
"-4",
|
| 235 |
+
"-3",
|
| 236 |
+
"-1",
|
| 237 |
+
"-7",
|
| 238 |
+
"-20"
|
| 239 |
+
]
|
| 240 |
+
}
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"name": "X12",
|
| 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": 324,
|
| 253 |
+
"unique_ratio": 0.050625,
|
| 254 |
+
"example_values": [
|
| 255 |
+
"-5",
|
| 256 |
+
"-11",
|
| 257 |
+
"0",
|
| 258 |
+
"4",
|
| 259 |
+
"-29"
|
| 260 |
+
]
|
| 261 |
+
}
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"name": "X13",
|
| 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": 332,
|
| 274 |
+
"unique_ratio": 0.051875,
|
| 275 |
+
"example_values": [
|
| 276 |
+
"4",
|
| 277 |
+
"-6",
|
| 278 |
+
"6",
|
| 279 |
+
"9",
|
| 280 |
+
"-38"
|
| 281 |
+
]
|
| 282 |
+
}
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"name": "X14",
|
| 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": 318,
|
| 295 |
+
"unique_ratio": 0.049688,
|
| 296 |
+
"example_values": [
|
| 297 |
+
"1",
|
| 298 |
+
"30",
|
| 299 |
+
"11",
|
| 300 |
+
"-5",
|
| 301 |
+
"-29"
|
| 302 |
+
]
|
| 303 |
+
}
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"name": "X15",
|
| 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": 324,
|
| 316 |
+
"unique_ratio": 0.050625,
|
| 317 |
+
"example_values": [
|
| 318 |
+
"-8",
|
| 319 |
+
"4",
|
| 320 |
+
"-9",
|
| 321 |
+
"-6",
|
| 322 |
+
"-15"
|
| 323 |
+
]
|
| 324 |
+
}
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"name": "X16",
|
| 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": 325,
|
| 337 |
+
"unique_ratio": 0.050781,
|
| 338 |
+
"example_values": [
|
| 339 |
+
"-1",
|
| 340 |
+
"-13",
|
| 341 |
+
"0",
|
| 342 |
+
"1",
|
| 343 |
+
"-23"
|
| 344 |
+
]
|
| 345 |
+
}
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"name": "y",
|
| 349 |
+
"role": "target",
|
| 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": 4,
|
| 358 |
+
"unique_ratio": 0.000625,
|
| 359 |
+
"example_values": [
|
| 360 |
+
"2",
|
| 361 |
+
"1",
|
| 362 |
+
"0",
|
| 363 |
+
"3"
|
| 364 |
+
]
|
| 365 |
+
}
|
| 366 |
+
}
|
| 367 |
+
]
|
| 368 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/runtime_result.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"model": "forestdiffusion",
|
| 4 |
+
"run_id": "forest-n6-20260429_081631",
|
| 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', '--cidfile', '/tmp/bench_docker_forestdiffusion_1b54v4mw/container.cid', '-e', 'PYTHONUNBUFFERED=1', '-v', '/data/jialinzhang/SynthesizePipeline-server:/work', '-w', '/work', '-v', '/data/jialinzhang/synthetic_benchmark/third_party/ForestDiffusion/Python-Package/base-ForestDiffusion:/workspace/base-ForestDiffusion', 'benchmark:forestdiffusion-zjl', 'python', '/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/_fd_train.py']' returned non-zero exit status 137.",
|
| 11 |
+
"artifacts": {}
|
| 12 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/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/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/model_input_manifest.json"
|
| 7 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/adapter_transforms_applied.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
[]
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/forestdiffusion/model_input_manifest.json
ADDED
|
@@ -0,0 +1,370 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_id": "n6",
|
| 3 |
+
"model": "forestdiffusion",
|
| 4 |
+
"target_column": "y",
|
| 5 |
+
"task_type": "classification",
|
| 6 |
+
"column_schema": [
|
| 7 |
+
{
|
| 8 |
+
"name": "X1",
|
| 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": 313,
|
| 18 |
+
"unique_ratio": 0.048906,
|
| 19 |
+
"example_values": [
|
| 20 |
+
"2",
|
| 21 |
+
"6",
|
| 22 |
+
"-2",
|
| 23 |
+
"-15",
|
| 24 |
+
"3"
|
| 25 |
+
]
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"name": "X2",
|
| 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": 328,
|
| 39 |
+
"unique_ratio": 0.05125,
|
| 40 |
+
"example_values": [
|
| 41 |
+
"-3",
|
| 42 |
+
"1",
|
| 43 |
+
"16",
|
| 44 |
+
"-4",
|
| 45 |
+
"-12"
|
| 46 |
+
]
|
| 47 |
+
}
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"name": "X3",
|
| 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": 316,
|
| 60 |
+
"unique_ratio": 0.049375,
|
| 61 |
+
"example_values": [
|
| 62 |
+
"-7",
|
| 63 |
+
"-6",
|
| 64 |
+
"3",
|
| 65 |
+
"-22",
|
| 66 |
+
"13"
|
| 67 |
+
]
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"name": "X4",
|
| 72 |
+
"role": "feature",
|
| 73 |
+
"semantic_type": "numeric",
|
| 74 |
+
"nullable": false,
|
| 75 |
+
"missing_tokens": [],
|
| 76 |
+
"parse_format": null,
|
| 77 |
+
"impute_strategy": "median",
|
| 78 |
+
"profile_stats": {
|
| 79 |
+
"missing_rate": 0.0,
|
| 80 |
+
"unique_count": 323,
|
| 81 |
+
"unique_ratio": 0.050469,
|
| 82 |
+
"example_values": [
|
| 83 |
+
"-6",
|
| 84 |
+
"-7",
|
| 85 |
+
"5",
|
| 86 |
+
"-5",
|
| 87 |
+
"-37"
|
| 88 |
+
]
|
| 89 |
+
}
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"name": "X5",
|
| 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": 325,
|
| 102 |
+
"unique_ratio": 0.050781,
|
| 103 |
+
"example_values": [
|
| 104 |
+
"-9",
|
| 105 |
+
"2",
|
| 106 |
+
"-12",
|
| 107 |
+
"-8",
|
| 108 |
+
"-63"
|
| 109 |
+
]
|
| 110 |
+
}
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"name": "X6",
|
| 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": 325,
|
| 123 |
+
"unique_ratio": 0.050781,
|
| 124 |
+
"example_values": [
|
| 125 |
+
"-6",
|
| 126 |
+
"-5",
|
| 127 |
+
"11",
|
| 128 |
+
"0",
|
| 129 |
+
"-86"
|
| 130 |
+
]
|
| 131 |
+
}
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"name": "X7",
|
| 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": 332,
|
| 144 |
+
"unique_ratio": 0.051875,
|
| 145 |
+
"example_values": [
|
| 146 |
+
"-1",
|
| 147 |
+
"-2",
|
| 148 |
+
"5",
|
| 149 |
+
"-4",
|
| 150 |
+
"-82"
|
| 151 |
+
]
|
| 152 |
+
}
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"name": "X8",
|
| 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": 330,
|
| 165 |
+
"unique_ratio": 0.051562,
|
| 166 |
+
"example_values": [
|
| 167 |
+
"3",
|
| 168 |
+
"-3",
|
| 169 |
+
"9",
|
| 170 |
+
"-9",
|
| 171 |
+
"-51"
|
| 172 |
+
]
|
| 173 |
+
}
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"name": "X9",
|
| 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": 333,
|
| 186 |
+
"unique_ratio": 0.052031,
|
| 187 |
+
"example_values": [
|
| 188 |
+
"1",
|
| 189 |
+
"19",
|
| 190 |
+
"0",
|
| 191 |
+
"-1",
|
| 192 |
+
"-30"
|
| 193 |
+
]
|
| 194 |
+
}
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"name": "X10",
|
| 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": 334,
|
| 207 |
+
"unique_ratio": 0.052187,
|
| 208 |
+
"example_values": [
|
| 209 |
+
"4",
|
| 210 |
+
"10",
|
| 211 |
+
"9",
|
| 212 |
+
"3",
|
| 213 |
+
"-13"
|
| 214 |
+
]
|
| 215 |
+
}
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"name": "X11",
|
| 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": 328,
|
| 228 |
+
"unique_ratio": 0.05125,
|
| 229 |
+
"example_values": [
|
| 230 |
+
"-4",
|
| 231 |
+
"-3",
|
| 232 |
+
"-1",
|
| 233 |
+
"-7",
|
| 234 |
+
"-20"
|
| 235 |
+
]
|
| 236 |
+
}
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"name": "X12",
|
| 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": 324,
|
| 249 |
+
"unique_ratio": 0.050625,
|
| 250 |
+
"example_values": [
|
| 251 |
+
"-5",
|
| 252 |
+
"-11",
|
| 253 |
+
"0",
|
| 254 |
+
"4",
|
| 255 |
+
"-29"
|
| 256 |
+
]
|
| 257 |
+
}
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"name": "X13",
|
| 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": 332,
|
| 270 |
+
"unique_ratio": 0.051875,
|
| 271 |
+
"example_values": [
|
| 272 |
+
"4",
|
| 273 |
+
"-6",
|
| 274 |
+
"6",
|
| 275 |
+
"9",
|
| 276 |
+
"-38"
|
| 277 |
+
]
|
| 278 |
+
}
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"name": "X14",
|
| 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": 318,
|
| 291 |
+
"unique_ratio": 0.049688,
|
| 292 |
+
"example_values": [
|
| 293 |
+
"1",
|
| 294 |
+
"30",
|
| 295 |
+
"11",
|
| 296 |
+
"-5",
|
| 297 |
+
"-29"
|
| 298 |
+
]
|
| 299 |
+
}
|
| 300 |
+
},
|
| 301 |
+
{
|
| 302 |
+
"name": "X15",
|
| 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": 324,
|
| 312 |
+
"unique_ratio": 0.050625,
|
| 313 |
+
"example_values": [
|
| 314 |
+
"-8",
|
| 315 |
+
"4",
|
| 316 |
+
"-9",
|
| 317 |
+
"-6",
|
| 318 |
+
"-15"
|
| 319 |
+
]
|
| 320 |
+
}
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"name": "X16",
|
| 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": 325,
|
| 333 |
+
"unique_ratio": 0.050781,
|
| 334 |
+
"example_values": [
|
| 335 |
+
"-1",
|
| 336 |
+
"-13",
|
| 337 |
+
"0",
|
| 338 |
+
"1",
|
| 339 |
+
"-23"
|
| 340 |
+
]
|
| 341 |
+
}
|
| 342 |
+
},
|
| 343 |
+
{
|
| 344 |
+
"name": "y",
|
| 345 |
+
"role": "target",
|
| 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": 4,
|
| 354 |
+
"unique_ratio": 0.000625,
|
| 355 |
+
"example_values": [
|
| 356 |
+
"2",
|
| 357 |
+
"1",
|
| 358 |
+
"0",
|
| 359 |
+
"3"
|
| 360 |
+
]
|
| 361 |
+
}
|
| 362 |
+
}
|
| 363 |
+
],
|
| 364 |
+
"public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/staged_input_manifest.json",
|
| 365 |
+
"train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/train.csv",
|
| 366 |
+
"val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/val.csv",
|
| 367 |
+
"test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/test.csv",
|
| 368 |
+
"features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/staged_features.json",
|
| 369 |
+
"public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260429_081631/public_gate/public_gate_report.json"
|
| 370 |
+
}
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"feature_name": "X1",
|
| 4 |
+
"data_type": "continuous",
|
| 5 |
+
"is_target": false
|
| 6 |
+
},
|
| 7 |
+
{
|
| 8 |
+
"feature_name": "X2",
|
| 9 |
+
"data_type": "continuous",
|
| 10 |
+
"is_target": false
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"feature_name": "X3",
|
| 14 |
+
"data_type": "continuous",
|
| 15 |
+
"is_target": false
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"feature_name": "X4",
|
| 19 |
+
"data_type": "continuous",
|
| 20 |
+
"is_target": false
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"feature_name": "X5",
|
| 24 |
+
"data_type": "continuous",
|
| 25 |
+
"is_target": false
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"feature_name": "X6",
|
| 29 |
+
"data_type": "continuous",
|
| 30 |
+
"is_target": false
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"feature_name": "X7",
|
| 34 |
+
"data_type": "continuous",
|
| 35 |
+
"is_target": false
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"feature_name": "X8",
|
| 39 |
+
"data_type": "continuous",
|
| 40 |
+
"is_target": false
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"feature_name": "X9",
|
| 44 |
+
"data_type": "continuous",
|
| 45 |
+
"is_target": false
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"feature_name": "X10",
|
| 49 |
+
"data_type": "continuous",
|
| 50 |
+
"is_target": false
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"feature_name": "X11",
|
| 54 |
+
"data_type": "continuous",
|
| 55 |
+
"is_target": false
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"feature_name": "X12",
|
| 59 |
+
"data_type": "continuous",
|
| 60 |
+
"is_target": false
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"feature_name": "X13",
|
| 64 |
+
"data_type": "continuous",
|
| 65 |
+
"is_target": false
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"feature_name": "X14",
|
| 69 |
+
"data_type": "continuous",
|
| 70 |
+
"is_target": false
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"feature_name": "X15",
|
| 74 |
+
"data_type": "continuous",
|
| 75 |
+
"is_target": false
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"feature_name": "X16",
|
| 79 |
+
"data_type": "continuous",
|
| 80 |
+
"is_target": false
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"feature_name": "y",
|
| 84 |
+
"data_type": "continuous",
|
| 85 |
+
"is_target": true
|
| 86 |
+
}
|
| 87 |
+
]
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5
|
| 3 |
+
size 39918
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b
|
| 3 |
+
size 316902
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f
|
| 3 |
+
size 39705
|
syntheticFail/n6/forestdiffusion/forest-n6-20260429_081631/train_20260429_081631.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6aafd8276c3497ced17cbca1e8de27b905b2517c30cce64d5553009b7e09c09c
|
| 3 |
+
size 400
|