diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/_arf_generate.py b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..af250fd064a1c81ec3f4ba8a3dd21ba77321051e --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv") diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/_arf_train.py b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ba95402ff696a85b83e57232405ebd09988cad63 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl") diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv new file mode 100644 index 0000000000000000000000000000000000000000..92d11d02e2729a5d2236986482c133cee53d1736 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb41bf0eaecc5bd5099060e9e3737d315e593f3597a3ce141644d30fd9472169 +size 41457 diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/arf_model.pkl b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..597fde11184e22babdb14ec8c3309b7f720c6a56 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849dba257de251c9427efa37fad4fe089f7ba1d92d998337cae0bc292fd552fb +size 5105326 diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/gen_20260501_224905.log b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/gen_20260501_224905.log new file mode 100644 index 0000000000000000000000000000000000000000..30e1dc736f9f5d469f2937b066c38fa0bac056fa --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/gen_20260501_224905.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998a24aca2924768417c547edcca17a87b04171f99df28db8d709ad0f2ec513e +size 2615 diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/input_snapshot.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..47d687447aae492ceebb90a272d81aa90055e0fd --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/runtime_result.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5a5a615855f4dd5632bad149d2515b7f8164b2d4 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260501_224900", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:49:00", + "ended_at": "2026-05-01T22:49:05", + "duration_sec": 5.405 + }, + "generate": { + "started_at": "2026-05-01T22:49:05", + "ended_at": "2026-05-01T22:49:07", + "duration_sec": 1.903 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_report.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b3ca58757a938bec47d00f56d03266136112173a --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..674e6fb3539947b2d44632c75c5822cd88e07e38 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/test.csv b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/train.csv b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/val.csv b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/arf/arf-c2-20260501_224900/train_20260501_224900.log b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/train_20260501_224900.log new file mode 100644 index 0000000000000000000000000000000000000000..439c7ac1ae7936dddaa8e517d1704e9d231dc065 --- /dev/null +++ b/syntheticSuccess/c2/arf/arf-c2-20260501_224900/train_20260501_224900.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d6f58ca9aacbd0711ba48e5d7952028046497adce39d08a4578fb07ea487bb +size 494 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_generate.py b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..bc85868eb04b1d284cad15328a73bed2db188403 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv") diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_train.py b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b5233d0b40be8a68f36a1b0f24295a4fce51cf81 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl") diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc5d17a270181a71ee29473a8c43adb23eedeabf --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f6707eed5cf85d2d861bbaf9ea58d07579425a0b10b3e9f2778d53283dcccc +size 41603 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/const_cols.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/gen_20260501_224928.log b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/gen_20260501_224928.log new file mode 100644 index 0000000000000000000000000000000000000000..f92a14d19dd6fae54551330bb6b0a1fcaf1afe45 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/gen_20260501_224928.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1872b2d76a6b2ac6e20c0bf32ee325a73b9e50f5923ed58c381823ff249455f +size 3661 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/input_snapshot.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..63d2cc85814ec597e6a6b06ac6261c3e62cbfe0e --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/runtime_result.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..990015d46cae096e5fc35551c6432a87818cc743 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260501_224919", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:49:19", + "ended_at": "2026-05-01T22:49:28", + "duration_sec": 8.787 + }, + "generate": { + "started_at": "2026-05-01T22:49:28", + "ended_at": "2026-05-01T22:49:33", + "duration_sec": 5.228 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_report.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1e9141f4f5c8019f8a0e47d8b276ffd2a50f6394 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bbfdf8e3236c56654a93118dd449a30ce5899ffa --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/train_20260501_224919.log b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/train_20260501_224919.log new file mode 100644 index 0000000000000000000000000000000000000000..3659189dfd45052e2f0a1678a14fafb89d1f0408 --- /dev/null +++ b/syntheticSuccess/c2/bayesnet/bayesnet-c2-20260501_224919/train_20260501_224919.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2419ea58dce6b8666957845438ee953b6addfa166281431702145cc7aa608af +size 3738 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_gen.py b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..d2b42922010bc7ec07265645dfb0e1d6cf86fca4 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv', index=False) +print("saved", len(df)) diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_train.py b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c5db79a6adac10e5443c38df7e27a35dfe629363 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib') diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv new file mode 100644 index 0000000000000000000000000000000000000000..f27ce02de22935a63bf9c44b36c1ec95abf22b11 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05e6305ad9ae6a73ceedca6ac21485ca0252b55a3a2d9c86e9d14b6b1c566fb +size 57598 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..91b82d488e3ca149c88205a6b539417bae30b551 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b1a2d549cebbb41f05e432a66310bee854f4001499e662ced2d5638d6a1a69 +size 144873431 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/gen_20260501_180507.log b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/gen_20260501_180507.log new file mode 100644 index 0000000000000000000000000000000000000000..468dd563bf18965e5a15365cfbb1fbb8ecf3ca12 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/gen_20260501_180507.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d15ba478b2b03e234e7ef665cd4a0179699fde3851b7149a2ec1bc47f81519 +size 294 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/input_snapshot.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..91b82d488e3ca149c88205a6b539417bae30b551 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b1a2d549cebbb41f05e432a66310bee854f4001499e662ced2d5638d6a1a69 +size 144873431 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..40f47ecbbad7297b9fcd90dfedc1405053e4ced0 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/runtime_result.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9f9aca5fb1e17470b7901b0431f423d151468e76 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260501_180312", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-01T18:03:12", + "ended_at": "2026-05-01T18:05:07", + "duration_sec": 115.491 + }, + "generate": { + "started_at": "2026-05-01T18:05:07", + "ended_at": "2026-05-01T18:05:11", + "duration_sec": 3.318 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_report.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ec7aeeae55708b18f1d1c562035d44d71bb20fdd --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_transforms_applied.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4b30987e72958757fbeada7685be33f1f997b068 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/train_20260501_180312.log b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/train_20260501_180312.log new file mode 100644 index 0000000000000000000000000000000000000000..b0837f580d1e116882089fa4c0c6572a8ad0eeab --- /dev/null +++ b/syntheticSuccess/c2/forestdiffusion/forest-c2-20260501_180312/train_20260501_180312.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a0bd6a2992b6ddc23566ab5374d6c1e1c225e6fcd605d9d25c303d7fe9ca8f +size 423 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/gen_20260501_034209.log b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/gen_20260501_034209.log new file mode 100644 index 0000000000000000000000000000000000000000..3bd9020c5fdabf94c9ceb6d60a05d2d4d7e4b7aa --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/gen_20260501_034209.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9cd78510d0e934b4687ac24af837ad5559644c5e82d47a96ff358807af9d4a +size 962 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/input_snapshot.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8c2b372de02a8cce4bc278762beae14c015db566 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775781275641421824", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_model.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..81afe03efcbe94660da233b432f97f3204096b10 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3999ff4576c179ebf54eb32c880d93cf608e9c96640efd084fef976818e06dc2 +size 173400547 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7382244ae7430d1e99bbc19e5ac5aa2c966c3030 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/realtabformer_features.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv new file mode 100644 index 0000000000000000000000000000000000000000..6eea15eb12beffeb5a94bc94de67603bdbc2df57 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62cafca199ad16d8cff51a3ef1babc63070b0b2894f5d6bb68c0e73fdcb7cd3 +size 41525 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/generation_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/model.safetensors b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0d2f680be716257c34c19e28618ac78eb9001ea4 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc090231f2d56434eeb9f0712dc141d18914fd7e0c56298f0cc38b7c730fb14 +size 173379016 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/optimizer.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f35faadc5cca64eb7ce75ed6ddeaa5cf6ed1a35b --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6719367c960e29ec05973cdfa6bdab91e9b3820a1b01d0acff1529e85c859c0 +size 346807051 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/rng_state.pth b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..25544edbc6ce9fd3e6383288989df0938c68514d --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db129c050682435e1bee8ef66cd09a15bb2424a85afbe727801a7a4d1f89624e +size 14645 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scaler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..646f9fbf7a046b2836430bbd02cfdda971f0cb71 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1fdbb2b1c1114fc2b99a720d34948dc2aa42cd71b7fa5e0643e0738375279b +size 1383 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scheduler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f841c7a85828017d68e8cd9beaf038dafdcf733a --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fabe559347cab18597bcee171a8b0137ee130cbd46f3b2052cb8ee7dcc5a843 +size 1465 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/trainer_state.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..32804df048e3123372d62890a1bf1b2ad08a7a14 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/trainer_state.json @@ -0,0 +1,328 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 96.0, + "eval_steps": 100, + "global_step": 4224, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 304688342237184.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/training_args.bin b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/generation_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/model.safetensors b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..85c8994b3db9dfa3d79f8738b96db06de1463e98 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118cf08038de85300bb530c1d48bc0e6e02943a0fedd8d5877ab6cdba6584a73 +size 173379016 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/optimizer.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..01e2660b8f7f76a8b2264394398f2ee572b65f36 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216c3997bc98f0ded94fb174304cd6bb982acf54ae20d2578abe2b624d27c511 +size 346807051 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/rng_state.pth b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..90de22419f703991117d71515b6902beb6013b6e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17811d77e0d2482dc221eed3b0c12825f2a3a3fb4800e52b1d5c72f8b363d28b +size 14645 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scaler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ae4f3d8061f8bda78e98a10b27cfc2a5d6c4edff --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5912ef6396b602e2719780ceb3f27177c4d97da75c6e092e3da83a8a774b5a +size 1383 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scheduler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..880265547570fdad6c8af91b6287c6448c83204e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d269895412297c8f61eabaabe357c2031ec99dd29a8e4723e795823ee3316c +size 1465 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/trainer_state.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5a18a88b4ff6c594748034693f5c0bd9a56255da --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/trainer_state.json @@ -0,0 +1,328 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.0, + "eval_steps": 100, + "global_step": 4268, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 307862179135488.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/training_args.bin b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/generation_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/model.safetensors b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..769dc52f98e9544708e5e52493a0d83ed2af2ce1 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412161a71761eeef7db7ee9e99f70a58569b716b8ad28d823aca5acfc4c6e41a +size 173379016 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/optimizer.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..758a69e7eb8a3f3180dac75496be2d62c33c4b03 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed5a4fb7f70abcfa00211ae88dd21f3a095e84b9631a95a2ddcc86010eafe4b +size 346807051 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/rng_state.pth b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e4c071a2770e5dc0eabf568a648d44dad4d0b31d --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d581829d4b9c43158e0b2d2368de67c84c41bf68dca49f46c5a2348dfd1f7981 +size 14645 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scaler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ffff10570ed4741cc5800c60bb8a2d46d72b9e69 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b77bb946ed44eb6ecccc838f29d11ac7bdbf77de8b5138f44cbff526a9c81a4 +size 1383 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scheduler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b2c899ff67dff5f859a6b9f24f3baa65a9b99588 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f01b89acc672b4183a2494909de945e4ae6dbe476cf4af90c061b7e3c973b9 +size 1465 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/trainer_state.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c7605bf7fabbbc70450a0f9993a801423e500410 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/trainer_state.json @@ -0,0 +1,335 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.73988439306359, + "eval_steps": 100, + "global_step": 4300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 310213849890816.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/training_args.bin b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/generation_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/model.safetensors b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a47f16f9051eda7ee73aba98eb2ac02b01298425 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127260854a925fce1946f1f22daae9fa2ea6292f7b9b839d8fbadf4b2ac7712 +size 173379016 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/optimizer.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7f3b50f3c2c91a233299dc1adc913a4319bf2484 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8ef5d4eec8704deec63e1d814b4ad3b305cd9ec4cdbe633dabfe7a69544b8c +size 346807051 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/rng_state.pth b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..580a073b91020747693fd9f9aa90ce102346c56d --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bffc8ae4ff2d687518986aa40044de1cb7ff133957057c99316aa809f8247e7 +size 14645 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scaler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c5c789a6d5ebd5b1f782838df6924bef6eafda80 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c18d99842aa93911d0cea99be600a9e53603fb367d4c08bfce14c619ae020c +size 1383 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scheduler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..48fba410ee95b5e58a78491251d480b2e44a6c52 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9d6799dd839046f4c93532b47412559043461a5dd97c5b25bf78d02d9ce20b +size 1465 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/trainer_state.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f941334e64ebe70d10ded27b51914b47faff0ae5 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/trainer_state.json @@ -0,0 +1,335 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 4312, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 311036016033792.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/training_args.bin b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/generation_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/model.safetensors b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ac46eb31562d19771fcba9a83dd1cfd16b026201 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596c372699db0c6fbabd77f7d84f9c3989bfeccdbeac93b0e2ff73ac64c525ca +size 173379016 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/optimizer.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e6959a1a6b56319c1e9e359f04f532d71fddd454 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3192a821bc1914bc299643c309b0e3204d40620a927230f528bdbd1300f77be4 +size 346807051 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/rng_state.pth b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..395a76c29f783595f8f4eab0284ff0274576cb8d --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c67e2085d3d5609bf6ee3832047170b47dd41165a5d8c1803a7ff21b592c744 +size 14645 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scaler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ce5fdcf009bb67e9bccde9082567d48cfcede747 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e021cff339e4edd3548f3b697bb29ffdaf3fba7dec6f2eeebadec656e0272f9 +size 1383 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scheduler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d3551307752340d1e0f23f7261459170310b7b5f --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e0aa8f26ad1221547a743c1ed75af3a624f87d1f833596d3c3313cb311aac8 +size 1465 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/trainer_state.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..63ef23f1005a68cd5918fac20f1e64692446cb55 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/trainer_state.json @@ -0,0 +1,335 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 4356, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 314209852932096.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/training_args.bin b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/generation_config.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/model.safetensors b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1399711c21693be65845ec1dc675e8cb245b57d6 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed75428afdb492dbaccd11b4f1465bfcc6ac566781172c59e44a375aba9442e +size 173379016 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/optimizer.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..48252b3647344dcd89f8d3b92dcbd0cc686d24bf --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd570c778841e124aa89f8d5daf89e6e4bcd314281785366f1521ce1584ded43 +size 346807051 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/rng_state.pth b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7d546eda79447a75908743f7ef1299e464ca47ca --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f807fcb0e5f9fca67af31ab81a3beb8dcd48e1fbf5ae9664205e45494b6d69a7 +size 14645 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scaler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..594910c8773c170780851af6df5df43b17e392cd --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa01c0faab1a39c11ceba075e1e73b81a5689cfd1ac0d27ee7fece150d320be6 +size 1383 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scheduler.pt b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fa736eac4107c8922ce9d5420194434f67ddf6b3 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b184d28efe3ccf73505bc2c26d4489920d5847a8671fa58ae465fb1bf157a76 +size 1465 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/trainer_state.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..27de48b5598f48f1a3011d94b06a470b36180ebf --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/trainer_state.json @@ -0,0 +1,342 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 4400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + }, + { + "epoch": 100.0, + "grad_norm": 0.6516434550285339, + "learning_rate": 1.1363636363636364e-08, + "loss": 0.8283032989501953, + "step": 4400 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": true + }, + "attributes": {} + } + }, + "total_flos": 317383689830400.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/training_args.bin b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/runtime_result.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fa535c7281cd70f3d4bc3edbdee04ad9ca9ab504 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260501_033610", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:36:10", + "ended_at": "2026-05-01T03:42:09", + "duration_sec": 358.658 + }, + "generate": { + "started_at": "2026-05-01T03:42:09", + "ended_at": "2026-05-01T03:42:20", + "duration_sec": 10.949 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_report.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3e933198ad8c43539a2545b69e6b56f76df2f682 --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a2a0e091cda360e5f8336060c830cb8ff1da6e3b --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/train_20260501_033610.log b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/train_20260501_033610.log new file mode 100644 index 0000000000000000000000000000000000000000..0f11a183ee02dcf365160c18b7f456f1aff30d4a --- /dev/null +++ b/syntheticSuccess/c2/realtabformer/rtf-c2-20260501_033610/train_20260501_033610.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71485f3c386baff64106d1cf94bd73b78804d3ff79be33b856fce97700dba450 +size 182129 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_gen.py b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..766ebe32a4394cc53ea12a89ad3424187d78632c --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv") diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_train.py b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..75ca1b3f716377e162c52a64be03a64f2aa3dc14 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/gen_20260501_053427.log b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/gen_20260501_053427.log new file mode 100644 index 0000000000000000000000000000000000000000..2b04e56f59be7b12b34f7fc644d24c37604f5c64 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/gen_20260501_053427.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf455cec75b302ce3913449337578522211c421499afab3f3956fd9e5dfb36c +size 3114 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/input_snapshot.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a9b81ba9787b915e756fab34b82d4ddc1f8d0105 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/runtime_result.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d681c1bf60d9d59ab5575347a273cda152b97fd3 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260501_052813", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:28:13", + "ended_at": "2026-05-01T05:34:27", + "duration_sec": 374.559 + }, + "generate": { + "started_at": "2026-05-01T05:34:27", + "ended_at": "2026-05-01T05:34:37", + "duration_sec": 9.962 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_report.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c576d3fa067c5ffde48915bfea86626b2043f54c --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_transforms_applied.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9d554e3d49a66a7b506a9053ad8a2275b84e5284 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv new file mode 100644 index 0000000000000000000000000000000000000000..a6e53d9e5f1a4ff173c5a43d34d0c264cfe06195 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8becca5e0256674bb48e136f634a952a83ad2e28bbfd1c63182948c9dfcf73 +size 19397 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow_train_meta.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6d5e4fd3e80d640d56a2181b884d59fb4819fd22 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 500 +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_test.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_train.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_val.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_test.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_train.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_val.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/info.json b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/real.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/test.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/val.csv b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_test.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_train.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_val.npy b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/train_20260501_052813.log b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/train_20260501_052813.log new file mode 100644 index 0000000000000000000000000000000000000000..aecc93002ecc2ed4ad1e5140a514c1bac53c221f --- /dev/null +++ b/syntheticSuccess/c2/tabbyflow/tabbyflow-c2-20260501_052813/train_20260501_052813.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f057a74a0bffb161d24ac00249eb8e9e1d04cb5519e026f539daf6092430aa +size 284038 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_gen.py b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..6ad02cde0ebb7085c857c9467656a0c3dc2b36e6 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv") diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_train.py b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c639c32804feee4ba0d67da24759d1db2a17f4f6 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/gen_20260501_054253.log b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/gen_20260501_054253.log new file mode 100644 index 0000000000000000000000000000000000000000..aca2c90c10233d71f8aef41d6b51dd4950215416 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/gen_20260501_054253.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de292e34bb26dafd4263e6580a3a73883941a9f22ab42d402500eb32b7de440 +size 4472 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/input_snapshot.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..20da241320b7b58bc53e5eb6d102cb90cc7218e1 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/runtime_result.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..86fdaa982483a14c04db6cd45a4e84a4c04ed817 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260501_053602", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:36:02", + "ended_at": "2026-05-01T05:42:53", + "duration_sec": 411.134 + }, + "generate": { + "started_at": "2026-05-01T05:42:53", + "ended_at": "2026-05-01T05:43:02", + "duration_sec": 9.393 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_report.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf25cfa73bc5165b00898833edb483d4395add1 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_transforms_applied.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6e8444ed55ce353c6b12da55b3670012d2ade6d1 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv new file mode 100644 index 0000000000000000000000000000000000000000..a2493f1665aa8b13ef982441972f9b14b1a95e8e --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914638c490c2fa5d234f37276b5c51d1a6b3cf429ac73bab0741cc357075b03e +size 19397 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff_train_meta.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..b93e041579ad7b1a984971416e1bb8b567d71270 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 500 +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_test.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_train.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_val.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_test.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_train.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_val.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/info.json b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/real.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/test.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/val.csv b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_test.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_train.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_val.npy b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/train_20260501_053602.log b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/train_20260501_053602.log new file mode 100644 index 0000000000000000000000000000000000000000..6de7164078944facc6e0eb3de930d92356d8d9f9 --- /dev/null +++ b/syntheticSuccess/c2/tabdiff/tabdiff-c2-20260501_053602/train_20260501_053602.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c984eb61e2f9cdc4c93c5c141f20a2c4bc968b83806b61b00faa48a7107b0ec7 +size 287391 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_sample.py b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..ecd5da7c2197ba6052bf73dd776c2236f87c2821 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "sample", + "--method", "tabsyn", + "--gpu", "0", + "--save_path", output_csv], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print(f"[TabSyn] Saved -> {output_csv}") diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_train.py b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2c799ff7949ee261da70b3c0f15a1c4cfd25b669 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_test.npy b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_train.npy b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_test.npy b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_train.npy b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/info.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/test.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/train.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_test.npy b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_train.npy b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/gen_20260501_060640.log b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/gen_20260501_060640.log new file mode 100644 index 0000000000000000000000000000000000000000..2d0549f2b8d7c49273cac23d3b44743858a3f869 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/gen_20260501_060640.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a621aaff31f015ef41220895c2510442df1fd27aafca47bce909f7a2fbe92e +size 940 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/input_snapshot.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..31e2c4cd999d62cc3b0ad0902b1d20685d7f553f --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/runtime_result.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b61ea3f3c0e9d8ae2fa7e933fce86116f11606af --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260501_054336", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:43:36", + "ended_at": "2026-05-01T06:06:40", + "duration_sec": 1383.961 + }, + "generate": { + "started_at": "2026-05-01T06:06:40", + "ended_at": "2026-05-01T06:06:46", + "duration_sec": 5.527 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_report.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6473cb524a6aca6c0137b1df8834b97c83691e40 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_transforms_applied.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..64f1d74c2494673a5dd2bff99e278a5c50b69787 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/real.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/test.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv new file mode 100644 index 0000000000000000000000000000000000000000..fedf6f64b28363e72d9e20a69e9444cc8716e0e8 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e978de460d7392592e372d541a1449124a9d1dc0a8431bb52226c1b3be7c3ad4 +size 22171 diff --git a/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/train_20260501_054336.log b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/train_20260501_054336.log new file mode 100644 index 0000000000000000000000000000000000000000..3f47b32c1e7ee1a9ca0414ac30c4a85a14d55146 --- /dev/null +++ b/syntheticSuccess/c2/tabsyn/tabsyn-c2-20260501_054336/train_20260501_054336.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e99c585306f1279128b0848854ae012c2e21c5df40f4520a77ffe1a85bb733a +size 2086454