diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/_arf_generate.py b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e96b4b1cd9495971fc9fe271d54266725c3ad34a --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/_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(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/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 = 'n3' +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/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv") diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/_arf_train.py b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..da3bae6bf5ab0806c16069e5f00dd55deafac2fe --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/_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/n3/arf/arf-n3-20260501_225023/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/n3/arf/arf-n3-20260501_225023/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf_model.pkl") diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv new file mode 100644 index 0000000000000000000000000000000000000000..c13e43168f0bc389492c40106d5226be37884904 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034d26d9e71f204197db1f262436a3474fe972cc90043a2777d5f7960608352c +size 876973 diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/arf_model.pkl b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b0e07c8ccbbf5dd3712bbb1bbcb052d5062467f6 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c20fa2967362ef7efcb0a9251ff27d2a011b28bbc6d70d442806a722bfce04b +size 21167791 diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/gen_20260501_225052.log b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/gen_20260501_225052.log new file mode 100644 index 0000000000000000000000000000000000000000..50ae69d00e0b2f1aad567e7b76a60cef754af119 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/gen_20260501_225052.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144b44334b50030bc8239b616693a40a439cd3c6109ba8a941f7e2e45e0fabba +size 719 diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/input_snapshot.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4c6d80dbfb94bf367f92a7b82a91d4ff848f2e7f --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/runtime_result.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..565af4f654a17e002bd8377d1111832bf9d9705c --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260501_225023", + "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/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:50:23", + "ended_at": "2026-05-01T22:50:52", + "duration_sec": 28.875 + }, + "generate": { + "started_at": "2026-05-01T22:50:52", + "ended_at": "2026-05-01T22:50:54", + "duration_sec": 2.591 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_report.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0378e903f33fcfaa4f0b82a011e2cf31d64f52b6 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/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/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b46735d55419e5f139da6469b04c0161024a8c4a --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/test.csv b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/train.csv b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/val.csv b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/arf/arf-n3-20260501_225023/train_20260501_225023.log b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/train_20260501_225023.log new file mode 100644 index 0000000000000000000000000000000000000000..f68464a938a0665daedb3ba539f3024b0452a832 --- /dev/null +++ b/syntheticSuccess/n3/arf/arf-n3-20260501_225023/train_20260501_225023.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2178ce762ea2f8d576ec23371a0d6569661f9d5ac97736a0c9b02e75c175edf +size 613 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_generate.py b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..76ecd4acf4cb2ce14551a757d0ac42cc16db4d61 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/_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/n3/bayesnet/bayesnet-n3-20260501_225103/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(3918) +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/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv") diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_train.py b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6f4775148165f0c3356a0cc2ea96c6b087285084 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/_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/n3/bayesnet/bayesnet-n3-20260501_225103/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/n3/bayesnet/bayesnet-n3-20260501_225103/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/n3/bayesnet/bayesnet-n3-20260501_225103/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/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl") diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv new file mode 100644 index 0000000000000000000000000000000000000000..5122af8070a39856aef00fd519e4673134151cf4 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaef9af040116c7fea3c8e5e566ea772624f1e1548c99fa7b800a0deeac3f44 +size 884307 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..6ea0fbeea7caaa2028344865d76bd34aad1eae86 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6796efb78000c399e81e0fc93d03b1d91f3c5d4aec0d0f61ad13d70100e0c1f5 +size 18294 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/const_cols.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/gen_20260501_225112.log b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/gen_20260501_225112.log new file mode 100644 index 0000000000000000000000000000000000000000..3c5d91d605428a589e3c953ba0f2c1df2686c0a1 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/gen_20260501_225112.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c998b1d75b6c0e1a4e92d1349b8faebfbc99e3baf489c9bf5c951f847863656 +size 3661 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/input_snapshot.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..008dabc157f7ab7860beed06f79679e718b641a1 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/runtime_result.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fd144094e3ec18e150038f6ddd874281f5fcd6f4 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260501_225103", + "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/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:51:04", + "ended_at": "2026-05-01T22:51:12", + "duration_sec": 7.985 + }, + "generate": { + "started_at": "2026-05-01T22:51:12", + "ended_at": "2026-05-01T22:51:17", + "duration_sec": 5.51 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_report.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9a235f852d28cbcee972af7cd8cdbc3ee6e85c7f --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/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/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6eeff7a2dab3e1965b35b252e5b6ce786a468979 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/train_20260501_225104.log b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/train_20260501_225104.log new file mode 100644 index 0000000000000000000000000000000000000000..b5aff868cf2aec0b81c0fc8bfef5f229545ee88e --- /dev/null +++ b/syntheticSuccess/n3/bayesnet/bayesnet-n3-20260501_225103/train_20260501_225104.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ccdc6bb8d143b5e6ea6deccbac97f29a291610113c088a7479c26916b67c4c +size 3740 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_gen.py b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..3faf692aec8e754cc83be1780f972f41046bdc13 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv', index=False) +print("saved", len(df)) diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_train.py b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1c0813a1369f8a258815c4800dec650556ea556b --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/_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/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib') diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv new file mode 100644 index 0000000000000000000000000000000000000000..ace52e09254eecbde1a45736816e358a97ddde24 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc1c9e6161a7a3513fcbbfae9f79784fe424e8cdcbb3ea644bf6ae70f528826 +size 885780 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..dab33bf8088b3dc6fa4a9faafe7fa22fa997e3db --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e33e576edc1764bb9aa9241fd93cc76909c92d632f5f6ec59032c1077da881 +size 112963525 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/gen_20260501_180740.log b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/gen_20260501_180740.log new file mode 100644 index 0000000000000000000000000000000000000000..b3f05143e2ba4c0228a38881e76584277577370d --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/gen_20260501_180740.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64470da0846551efa04a9c102196df00df47ef0fb56dda8937a30799fdcd3f94 +size 294 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/input_snapshot.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..dab33bf8088b3dc6fa4a9faafe7fa22fa997e3db --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e33e576edc1764bb9aa9241fd93cc76909c92d632f5f6ec59032c1077da881 +size 112963525 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b371bd9108aeac8b88d07a76a08645daf6c691bd --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/runtime_result.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b7b696a05da273fdd4be3b61cea4ada3fa14bedc --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260501_180619", + "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/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-01T18:06:19", + "ended_at": "2026-05-01T18:07:40", + "duration_sec": 81.321 + }, + "generate": { + "started_at": "2026-05-01T18:07:40", + "ended_at": "2026-05-01T18:07:44", + "duration_sec": 3.081 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_report.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f79754373797f23c974d78b983ab877e3ffa71f0 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/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/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_transforms_applied.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..56a8e53573020d2e21f74892b576e24117766c44 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/train_20260501_180619.log b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/train_20260501_180619.log new file mode 100644 index 0000000000000000000000000000000000000000..0464f0d70d3c967b0d38f25f0df44488dc0e7cea --- /dev/null +++ b/syntheticSuccess/n3/forestdiffusion/forest-n3-20260501_180619/train_20260501_180619.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a494d82a997b115693e70c8a009d03fedc7279358d60c5fd9681b744e7523b5d +size 423 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/gen_20260501_011818.log b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/gen_20260501_011818.log new file mode 100644 index 0000000000000000000000000000000000000000..8db735f2e1c769d57ea2a12b6b8bf9bf6a9c4b0c --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/gen_20260501_011818.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6f8f88af1c6bf193e23f3ba989829710440f6a8a2062af747267147cdfb6b1 +size 2560 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/input_snapshot.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1a655626b09a7e219eea69d851f6ac0bb0ad625b --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/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": 304, "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": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "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": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775694963590322176", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_model.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..ec7b576f571e7debed8a25488a3c5004cd81a8ea --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5f458764fbaba95bf6f361bd5eab22917d5af79400fddfc210ff3a89d871f0 +size 174223843 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bad099b3f8f146170b6044f01c741b4c3eeace8d --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/realtabformer_features.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv new file mode 100644 index 0000000000000000000000000000000000000000..b397722543474c378d7dbd32b4d80e87cd3bd911 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db975bcd3a67d3bc1368f83ba5a2fc30a621d0fd1409f50e3f18cb49d58f7fd +size 227616 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/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": 304 +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/generation_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/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/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/model.safetensors b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8f23191b03de1e3f1e9c0bf4896fa9c1e1d2757c --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1779800c06cede566514a7fa6aa4b191783e252b3cfc2cab019a561f5c803188 +size 174202312 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/optimizer.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7e5781ab88b985b9a4f6453f75a9e83d88e008bd --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598aef55698d3def9fb8cbf659d675901d6b6ddbba854261d81608e632c60e31 +size 348453707 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/rng_state.pth b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..259b22cc567fc97d9ce848237e19b225036d522d --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5867d7b6843afa8cd0a7251868428ccca6cecd881840b7d0cd49a3b6887c41dc +size 14645 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scaler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..241c562a134e120f8bc0122a1b0edce5a549c38a --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae029a8e6af9f014c9ef8b713fcd28cef1f184648ddde977ce75efc89ca9a242 +size 1383 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scheduler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d697a7e2de27c36c08852b7da724e73cdc054a31 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b3e8a6711437dad5643a8a0566381af8534c64b54ca610a8096a935ed90d6a +size 1465 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/trainer_state.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..66bb30438aab6136d42c66ebacbaec86b81609f5 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/trainer_state.json @@ -0,0 +1,874 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.56326530612245, + "eval_steps": 100, + "global_step": 12000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "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": 5657363505709056.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/training_args.bin b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/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": 304 +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/generation_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/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/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/model.safetensors b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..84b4913c54617e2038532586a5442b66c04ecc1b --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d15543cc0f3b0a7c90fa1ba851f6616d59eb2730b5c0e403c7b92f3b9377a18 +size 174202312 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/optimizer.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..bbc7e88cd9de3a75dbb20ac98813f6a4907de696 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4dccfe67721c1ad205630a8e7ab13507da1135bbf8c21ee1f65f6895894abd +size 348453707 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/rng_state.pth b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..127e96e51af2fec9a7565d414d1ac3a031fa22b0 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6e7e5c4130a3f581a37d56f81e1697945533c1bb88390eef4e94a604480235 +size 14645 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scaler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d79ae580dd92ab9e12cb0ba51c7f739f386a3d38 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523c650bf4a3521b41471b1b102205838930400e23d4ba2fc88a24ba8f12c605 +size 1383 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scheduler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c9236d825a67ab01504fb541afadd99228c39b36 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4813f3ff545acda2e3042241296844f2b098b5d55a677a5ba026e25c62aeba5 +size 1465 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/trainer_state.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..35286f1c7432eca4523f5caead4375b626ac7a2c --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/trainer_state.json @@ -0,0 +1,874 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 12054, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "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": 5682671524970496.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/training_args.bin b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/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": 304 +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/generation_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/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/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/model.safetensors b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9a3b86a1ccfa26c8ca9fbcac2eea00a31c671a36 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be83ceffcba55a6c09775b1d120e0c5d177b55513c7e461eb06838ef991e12da +size 174202312 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/optimizer.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..984e398896f85223f4212c7ad2f264891a485eb9 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4207ed14e08012826b4ae80ce9fd5acd09e715e47b74ed6fa34e4d6f6465d2f +size 348453707 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/rng_state.pth b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..9c877f2a2413e183ea1889df83a78411ebf98998 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b7c9b6782110008872d02f62884ec0d27fa4da8ab871626dd0a840d0fb0f2a +size 14645 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scaler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c24a3539a362969905291f6ce1c8cf3326b1f855 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d95536e67de0a90cf27c2165c9439e26ed5f631dcac696067935cc73afcacc2 +size 1383 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scheduler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cb8422756760e766361110f352c03bf970969950 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4c2bb3b0c62cbba0ca82a26f4768964c68a941e64ddc1a6656c92fde2bd983 +size 1465 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/trainer_state.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d5ec444420abe3b8539634cdd065b3e824903e90 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/trainer_state.json @@ -0,0 +1,881 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.37551020408164, + "eval_steps": 100, + "global_step": 12100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "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": 5704457141551104.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/training_args.bin b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/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": 304 +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/generation_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/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/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/model.safetensors b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f2a7eed86805ecbaa3e75917737fd4b91e0b5709 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc50e2639fc08e0186174ff0828718fea1b91ee7589b67ce2255bc286ec8b08 +size 174202312 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/optimizer.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..8b4a7dae707a74f932373a33c93f0d4b878de7b7 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5105eeaa041cf8ef9120ad8963b4789eadaa7f008ac57c722df06e4e96078638 +size 348453707 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/rng_state.pth b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..bd5e88f51288cce1434cc4c1fa3c7e8d31aa430f --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317a313e8f0a4bb71e980913a87061af3f18427ccc0b48dff815da1aee87fe03 +size 14645 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scaler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..903ce9c40d9044509c6574df8065746f663d1e98 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bc1bf49d253235dbe7643d62aed45c0dd3c62c11c1cdade2e735c3cf39f4d1 +size 1383 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scheduler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0432e93028ed197c6230de265091734129d4ad32 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92325e3b4ccd91ed7e4b8e14ebddebc86914338c3b1d80b98f9f4fd2ba01a288 +size 1465 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/trainer_state.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f6ef8457f3058f47d24eaea521392e5e08c721c7 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/trainer_state.json @@ -0,0 +1,881 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 12177, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "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": 5740657969102848.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/training_args.bin b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/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": 304 +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/generation_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/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/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/model.safetensors b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b036b5a9f6e2d4721b7dd63d07870559e20cf425 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8daca51dd13e10c348ae304941a4205ebeeb7c93593752229d18e91c4fad69d9 +size 174202312 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/optimizer.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..959eadeca2955f3846097901e627e812358de74a --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956ea1cf37a30800ac1b1052a7eebcb7b89ea05b7a8ee01284b02fc0081ed013 +size 348453707 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/rng_state.pth b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1c6d5b21425981aaab55743c50ced8119ea41ab4 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68153ff959dbeccf32280461a1ec5605d25c85c263c21db84b88fb472bc90597 +size 14645 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scaler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..98fedc0f458fc7aa259b53b54e78d56cf1f6581d --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0c639138d2633695dd9ca30aac2e913d5a6ee1602eb53d54ba4a194b5ae452 +size 1383 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scheduler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b1385c212dba5cd14f968009b02b656b13a5c8c5 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513c2fb16059e1ad186af234110d54e3aa8b004adcc7caf5ee42a8bb798f40ac +size 1465 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/trainer_state.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1e11f5ffa003447462b49871ad0089582e0bb400 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/trainer_state.json @@ -0,0 +1,888 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.18775510204081, + "eval_steps": 100, + "global_step": 12200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + }, + { + "epoch": 99.18775510204081, + "grad_norm": 0.19238370656967163, + "learning_rate": 4.105691056910569e-07, + "loss": 0.1685107421875, + "step": 12200 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "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": 5751550777393152.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/training_args.bin b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/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": 304 +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/generation_config.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/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/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/model.safetensors b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0b826221ad9e71d8afbdd6c06c9ffafafd2ae603 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f02116a3fcc0ca871ce7e4df98a5b8bbf1dcda048a80757739086a89cec912 +size 174202312 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/optimizer.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..98e2d9be23a6012b6780f9c072d163a37d921a3c --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd22bb6abb0eaeaf16eaf761c0a32a227df36fa28e470720d7d3b97a09e7a283 +size 348453707 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/rng_state.pth b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7c2780d2855c200870db7d1121551866da90de77 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd9db7111b5da9687ad52452c9c9a05d7558fcd12f3c6ce781b9bc8aa57d727 +size 14645 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scaler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..01822a70fdf84f65d2035bdfc593b17eeeefacdc --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4353b6bed2fb7c84e43cc1ae53190d54660076751761ee833f716eb83d61f9 +size 1383 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scheduler.pt b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..68ded389e633f7475cfb37bb4138fd8bb5da9eda --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acf0e63d87a08b1c5009af68184a15614cac3fef609c454bfc755dc9881ec74 +size 1465 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/trainer_state.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..774b90b20cdb4c57663b90a6f67a1c810c1574c0 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/trainer_state.json @@ -0,0 +1,895 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 12300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + }, + { + "epoch": 99.18775510204081, + "grad_norm": 0.19238370656967163, + "learning_rate": 4.105691056910569e-07, + "loss": 0.1685107421875, + "step": 12200 + }, + { + "epoch": 100.0, + "grad_norm": 0.33604246377944946, + "learning_rate": 4.065040650406504e-09, + "loss": 0.16821050643920898, + "step": 12300 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "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": 5798644413235200.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/training_args.bin b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/runtime_result.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5ace47a44f24bf8f9085d518a210d797bda6bd5c --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260501_010320", + "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/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:03:20", + "ended_at": "2026-05-01T01:18:18", + "duration_sec": 897.295 + }, + "generate": { + "started_at": "2026-05-01T01:18:18", + "ended_at": "2026-05-01T01:18:56", + "duration_sec": 38.385 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_report.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..49da0444569f745bf1623c285ac38b6714692887 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/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/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..53e05e71c6a7359e36d1a710919866bef18af041 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/train_20260501_010320.log b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/train_20260501_010320.log new file mode 100644 index 0000000000000000000000000000000000000000..47d08f616d63b3731a73d0fd5cf86d85f5b9ef21 --- /dev/null +++ b/syntheticSuccess/n3/realtabformer/rtf-n3-20260501_010320/train_20260501_010320.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524c61eb693e3775beed7a4576dd3e79ea4ac03a163f7af2ee383ee6b691acbe +size 472847 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_gen.py b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..cc773dcad632b3cd990c6e78e582634fc419b797 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3" +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_n3/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +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/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv") diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_train.py b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..11c52de385c5406a71ac62f40888a03828ce3be8 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3" +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/n3/tabbyflow/tabbyflow-n3-20260501_005234/gen_20260501_005942.log b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/gen_20260501_005942.log new file mode 100644 index 0000000000000000000000000000000000000000..d618b5545214c9f0244bbc1a457a80ca94330377 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/gen_20260501_005942.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fd1176aa6aa493b82c7c6071c805ec456bbdc3f4480bcd635ee8a5b88f784d +size 3026 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/input_snapshot.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/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/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..112b2a487aa34cf2e52ed41a236300a2d64daab2 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/runtime_result.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fa20f2996ad976813f80722f45cb5081cb11be8a --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260501_005234", + "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/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:52:34", + "ended_at": "2026-05-01T00:59:42", + "duration_sec": 427.5 + }, + "generate": { + "started_at": "2026-05-01T00:59:42", + "ended_at": "2026-05-01T00:59:51", + "duration_sec": 9.253 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_report.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c808d73c228b298049ef7a2dd2cba36806883fdd --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/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/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_transforms_applied.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b3c5eff8e34d01e21166ca2e7b1f8bc3e1eb6318 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d8798abbbb94bc3cad7397fff890c2e86256e2c --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59e95fed7bfdefefe8410963a8c1461e594aed182e4e25a802f252d2cb0e2c7 +size 340201 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow_train_meta.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..352eb976105907ee1613e7569122a2ca9313f022 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_test.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_train.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_val.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_test.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_train.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_val.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/info.json b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/real.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/test.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/val.csv b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_test.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_train.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_val.npy b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/train_20260501_005234.log b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/train_20260501_005234.log new file mode 100644 index 0000000000000000000000000000000000000000..71796071f819e393b302e2fc2d383fb0f7f3f6c1 --- /dev/null +++ b/syntheticSuccess/n3/tabbyflow/tabbyflow-n3-20260501_005234/train_20260501_005234.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca653f9d17f07836e86f33599f21c86b6963cfc556ba93395b613173b41d5637 +size 290257 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_sample_r0.py b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..3d5fd4e093bb54b433e51d58d71710d7e8411c31 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_train.py b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..16db5d0522d0347df0ebb928d10a5cd3e3da9af9 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..c774736da1e2d6dd06bb2981c8d5d527a7059c43 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..00d8c1b8acc5120a9558843978768b9f459c23e0 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/X_num_train.npy b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/y_train.npy b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/gen_20260501_002035_r0.log b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/gen_20260501_002035_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..c1eddf05f028e915260c79546ca570dec99e52c9 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/gen_20260501_002035_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b5a41620d54d57667379abb7f0f3d91b22bdbc87a672784d1a27a6b1910ab7 +size 84501 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/input_snapshot.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_train.npy b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..eddc9fc7dc215a7316858fca8fee5ae99f15995a --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3a84cecd83e55cdde7dfa9902942d9da3ca797f3c8402558123b98c25c34c2 +size 344912 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_unnorm.npy b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..096a5edbb8961266e9ef68f32a8c7dfe547ac91d --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0f79ea00cee09d144e3b6b4c3c4c78fc3898e91e1619bce14225d2e68fc4bf +size 344912 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/config.toml b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..00d8c1b8acc5120a9558843978768b9f459c23e0 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/info.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/loss.csv b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..9c1f8a5cfe87ec4f49722de310474f40f89166fb --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60561b92981d01bad0dfd398877e1189f7186cfa0253f75b7c4f51a80de97196 +size 1251 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/model.pt b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..83563b06a4db03bc822db334b340e81b0535034f --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dd76d6d4a0979442d1fa749406835b4bcaa43877c99cc7a53fc7541a5024f9 +size 553046 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/model_ema.pt b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..7334fbb11efab2f81be838bad3efc2e1812538d6 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25a1d1825e3e00ee57fbd097c655e47146b1607d2d84cd78d902f77f3664bd2 +size 553890 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/y_train.npy b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66e0f0756c2be612567cd59f4b3a14fcd25446ce --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/runtime_result.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..38dfe5eaea46c079b254afdb4a6676483a5a09b8 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260501_002012", + "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/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:20:12", + "ended_at": "2026-05-01T00:20:35", + "duration_sec": 23.073 + }, + "generate": { + "started_at": "2026-05-01T00:20:35", + "ended_at": "2026-05-01T00:20:46", + "duration_sec": 10.637 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_report.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b419fc3060bf8fbc87fd87c7de467d63ef1333e7 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/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/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_transforms_applied.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a72e8cf5191c7120c3f172ba5d3c5352d63f6c14 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv new file mode 100644 index 0000000000000000000000000000000000000000..b34cd5beb2ca50ac51ae8872c40a18add64ef325 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6215ab7dae82ddeae2fc63f308c3bc59d26da30cd7e61dd046ab97b6619fef9 +size 774771 diff --git a/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/train_20260501_002012.log b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/train_20260501_002012.log new file mode 100644 index 0000000000000000000000000000000000000000..9be1c25892c24ae25207e9ee3383feac085086c7 --- /dev/null +++ b/syntheticSuccess/n3/tabddpm/tabddpm-n3-20260501_002012/train_20260501_002012.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ba05af1754eef93e2c519198aa9c11b3ded64badaf882b13abde890338e8da +size 1067 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_gen.py b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..76f2f6d01190680e15e6db23b7eb4d5923a7b8c4 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3" +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_n3/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# 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/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv") diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_train.py b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..33f62823f0bbcc1bf529c511776922b9648c407f --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3" +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/n3/tabdiff/tabdiff-n3-20260501_175353/gen_20260501_175710.log b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/gen_20260501_175710.log new file mode 100644 index 0000000000000000000000000000000000000000..f245c4a246c56e53c45acea4c78cd9188f904962 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/gen_20260501_175710.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da9ef17a571d51a9b70d51526cf51996b7395611f280fe207f05ff9177a4626 +size 4621 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/input_snapshot.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/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/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8c7db4f3efa23955553ed3ec5c0ae853324014ce --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/runtime_result.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3e2102144b698ad7292595e03c8610cde36b1e61 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260501_175353", + "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/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T17:53:53", + "ended_at": "2026-05-01T17:57:10", + "duration_sec": 196.646 + }, + "generate": { + "started_at": "2026-05-01T17:57:10", + "ended_at": "2026-05-01T17:57:20", + "duration_sec": 10.731 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_report.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..12611d80f30a6cf0e2afc6f3315dddf27614f3b8 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/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/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_transforms_applied.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..22553b34a077101eb9765816de3e21b51af47687 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv new file mode 100644 index 0000000000000000000000000000000000000000..7ca8369bbebb005baf07521f92b64cefaf2d6b3c --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a497e9a2e19e98c2c5dfa1e72b86fbf06a13689026259826fe4968c803f11e3 +size 340954 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff_train_meta.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..776600291d2635685d4b5209ba433eddf0330eb2 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_test.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_train.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_val.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_test.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_train.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_val.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/info.json b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/real.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/test.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/val.csv b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_test.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_train.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_val.npy b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/train_20260501_175353.log b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/train_20260501_175353.log new file mode 100644 index 0000000000000000000000000000000000000000..df10c37193a38e053d07c80622b7227d4213517f --- /dev/null +++ b/syntheticSuccess/n3/tabdiff/tabdiff-n3-20260501_175353/train_20260501_175353.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6437c04a0e9bf2dc8ef1f75a52cdb0a0418c32ce3ad26deb0563e9e04a803e9b +size 292871 diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/_tabpfgen_generate.py b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c8ade1fa83cb3e83789abaa5dd376381b18ae5df --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv") diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/gen_20260501_005212.log b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/gen_20260501_005212.log new file mode 100644 index 0000000000000000000000000000000000000000..349d4af44544d58c87db4e1cf03ceb3b413eacc5 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/gen_20260501_005212.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4428b3af4adbadd1e3897c129553b24bcd222d974b2b4f43ef62d9432317e1 +size 949 diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/input_snapshot.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4d16af30bb8d718cd63e253f3b6b3ef0e8bad2cc --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/runtime_result.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b40d2e985607c070d321c3d4f640c5fa91d9e825 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260501_005212", + "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/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:52:12", + "ended_at": "2026-05-01T00:52:12", + "duration_sec": 0.009 + }, + "generate": { + "started_at": "2026-05-01T00:52:12", + "ended_at": "2026-05-01T00:52:33", + "duration_sec": 21.267 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_report.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91c08fe1df342bb7d3302bc3d0f88fe494353964 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/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/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_transforms_applied.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0c0fc3fb109d265584a282c065ada476cee9c33e --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv new file mode 100644 index 0000000000000000000000000000000000000000..14c8479f09cc24745763f4c19d101dbbdfc461c0 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4bf5785236913316d81cc4153e113790caf45aef95726aa24d80d86a2781dc +size 446015 diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen_meta.json b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..e2268fbaa45e5a02a338e7118394aa6950090894 --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/train_20260501_005212.log b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/train_20260501_005212.log new file mode 100644 index 0000000000000000000000000000000000000000..251655c92a85a09a0e32432e7fa14272b152157d --- /dev/null +++ b/syntheticSuccess/n3/tabpfgen/tabpfgen-n3-20260501_005212/train_20260501_005212.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a67813e3aecb37bb89b938492ceed24a2682e7ece7d6deb751cdc8de26e414 +size 595 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_sample.py b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..749894d8a508cae7402d8a4bb55efc31398e5e78 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047" +dataname = "tabsyn_n3" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.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 3918 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/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_train.py b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ed08fcb958c5edfd8a5b0c44967e0ef6c676d14e --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047" +dataname = "tabsyn_n3" +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/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_test.npy b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_train.npy b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_test.npy b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_train.npy b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/info.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..f9419d317a390941bc8fb0c5c773504a6894b385 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/test.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/train.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_test.npy b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_train.npy b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/gen_20260501_004440.log b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/gen_20260501_004440.log new file mode 100644 index 0000000000000000000000000000000000000000..f26ee256937b9d0497d68e4e408ec7e15aa45a55 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/gen_20260501_004440.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3b413fec3ce21ad49d678653b26af794ef3ace5403a3e2afa873b0173015ca +size 930 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/input_snapshot.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "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": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..89da8150613cdd8928791501d11711daf12d54c6 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/runtime_result.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6de873f2e3c9a234a4fc7934e8d0f70b9e75ca47 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260501_002047", + "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/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:20:47", + "ended_at": "2026-05-01T00:44:40", + "duration_sec": 1433.185 + }, + "generate": { + "started_at": "2026-05-01T00:44:40", + "ended_at": "2026-05-01T00:44:46", + "duration_sec": 5.888 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_report.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c54b449b769d8b0b6776ab017e11b49298c53d48 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/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/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_transforms_applied.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7e895c1e8d3ae02285511e2232a41e5ea658afbb --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/real.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/test.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv new file mode 100644 index 0000000000000000000000000000000000000000..aa50ec468b31dff087f5e5cf82213baa30c81269 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a1a2d692db2299387c54296b344916661abf14b43853be6aa85eeb6fbea991 +size 346256 diff --git a/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/train_20260501_002047.log b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/train_20260501_002047.log new file mode 100644 index 0000000000000000000000000000000000000000..3cb0016df552216453e11ecaa99f4b9591a1d2e1 --- /dev/null +++ b/syntheticSuccess/n3/tabsyn/tabsyn-n3-20260501_002047/train_20260501_002047.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac6f13fb22e8af5c77411e25c11061b88a678f5d0523a07ca3c68a5d5900fe6 +size 2178664