diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/_arf_generate.py b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..a239a451f61f99d710a1f62640fce08ea164f264 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(4088) +with open("/work/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=n_target) +syn = syn.reset_index(drop=True) +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 = model.forge(n=max(need, 1)).reset_index(drop=True) + if len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] +syn.to_csv("/work/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf-m7-4088-20260422_060013.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf-m7-4088-20260422_060013.csv") diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/_arf_train.py b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e897533248bcf376b0e233c24a83ccb016712e31 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/_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-SpecializedModels/m7/arf/arf-m7-20260422_055912/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-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf_model.pkl") diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/arf-m7-4088-20260422_060013.csv b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/arf-m7-4088-20260422_060013.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea36acc7046e851c5bad97be604d18504070ffd2 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/arf-m7-4088-20260422_060013.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bef5cb3ca3d1d6f827e38f841a31518bd6c09c5318d903c10a6861e9fa08a61 +size 546352 diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/arf_model.pkl b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..923d470da177655922a626b8b3ba380bf0e6cfa7 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead2f35ac0c73d397295a8a4a7080b4a4ebf9a4b58fe5b777d13930a91c4dd9a +size 18331589 diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/gen_20260422_060013.log b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/gen_20260422_060013.log new file mode 100644 index 0000000000000000000000000000000000000000..ad7fe02fb963af534f553412d38692be2928c88c --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/gen_20260422_060013.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfbdef036085ce71ada368ffab278301c6d149a4f14a6ae26bc81f51e782c6a +size 2035 diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/input_snapshot.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9b96f8cc51db3866c9fc8aaebf5ddb132876d3cb --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/public_gate_report.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3cc89b749644d7b2d96da09338ecb343f53ebe8e --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/runtime_result.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d8b7a474bf468186ba93908eedace45a847dd5ba --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m7", + "model": "arf", + "run_id": "arf-m7-20260422_055912", + "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-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf-m7-4088-20260422_060013.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/adapter_report.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7ba13813452569fe2a47dc789ac11ae914f5b977 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/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-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/model_input_manifest.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66c0e772c15c35197e6ce5afbdd2f67d5a2d6d0c --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "arf", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/arf/arf-m7-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/staged_features.json b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/test.csv b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/train.csv b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/val.csv b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/arf/arf-m7-20260422_055912/train_20260422_055912.log b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/train_20260422_055912.log new file mode 100644 index 0000000000000000000000000000000000000000..70e56ed4ae922884509614b17f8aeffbb45b203a --- /dev/null +++ b/syntheticSuccess/m7/arf/arf-m7-20260422_055912/train_20260422_055912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58f16eae31122e7db4279d26f5b157b90d1a49b549771e03e8c87e549521b22 +size 232 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/_bayesnet_generate.py b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..30e1bde797f5834a819569d6e4706e7639e5ec1c --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/_bayesnet_generate.py @@ -0,0 +1,75 @@ + +import pickle +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +with open("/work/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/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 {} + +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=4088, show_progress=False) + +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 + +final.to_csv("/work/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet-m7-4088-20260420_035257.csv", index=False) +print(f"[BayesNet] Generated 4088 rows -> /work/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet-m7-4088-20260420_035257.csv") diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/_bayesnet_train.py b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..483076da9826d0c090b2e813e9e27480ff4bb82a --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/_bayesnet_train.py @@ -0,0 +1,93 @@ + +import json +import pickle +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) + +with open("/work/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/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-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/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-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/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) +max_bins = 10 + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + uniques = sorted(s.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] = s.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)") + +dag = TreeSearch(enc).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) +network.fit(enc) + +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-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_model.pkl") diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet-m7-4088-20260420_035257.csv b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet-m7-4088-20260420_035257.csv new file mode 100644 index 0000000000000000000000000000000000000000..df6c17750aaa7fa0c66795f80949bc07c9acf115 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet-m7-4088-20260420_035257.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e5c21f598d833656dad80ad005d7886a7d0535cf6a176db88712036d65114f +size 471242 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_coltypes.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..a76104d60a8e8b3ee4b869e9115643f20baf2cac --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "id", + "type": "continuous" + }, + { + "name": "gender", + "type": "categorical" + }, + { + "name": "age", + "type": "continuous" + }, + { + "name": "hypertension", + "type": "categorical" + }, + { + "name": "heart_disease", + "type": "categorical" + }, + { + "name": "ever_married", + "type": "categorical" + }, + { + "name": "work_type", + "type": "categorical" + }, + { + "name": "Residence_type", + "type": "categorical" + }, + { + "name": "avg_glucose_level", + "type": "continuous" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "smoking_status", + "type": "categorical" + }, + { + "name": "stroke", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_model.pkl b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..085bbfe2d363ea173e8b13515dd35bc6aeca4b2a --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bdcb832b623c4da609bdd6797732e4cc4fe3f72c6f0381b10e975e5d251c0a +size 11519 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/const_cols.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/gen_20260420_035257.log b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/gen_20260420_035257.log new file mode 100644 index 0000000000000000000000000000000000000000..689c25998e4773c7acdce7e685459092a244993e --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/gen_20260420_035257.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0899e478ccf5e9c9b1dc6f8963f6a62360aab8b45b5b4cdd51ab0b7737b4bd8 +size 1134 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/input_snapshot.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..634440684cc809a8e51c4538eea433c0b84dcc6a --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/public_gate_report.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b0e9b9ec63834956c89a7b79da3b5c8d8c660739 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/runtime_result.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..43a050605f638a4bed70672ad96ba84256b0a414 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m7", + "model": "bayesnet", + "run_id": "bayesnet-m7-20260420_035052", + "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-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet-m7-4088-20260420_035257.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/adapter_report.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bdec670271d663c00072c4c5f3fecd68bfbc5c64 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/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-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c470a07f52a2e8b2c0b64ccb75525347a481e944 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "bayesnet", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/bayesnet/bayesnet-m7-20260420_035052/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/staged_features.json b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/test.csv b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/train.csv b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/val.csv b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/train_20260420_035053.log b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/train_20260420_035053.log new file mode 100644 index 0000000000000000000000000000000000000000..b7b662f22f68583586f5b1c2d521c7d6e496a1ad --- /dev/null +++ b/syntheticSuccess/m7/bayesnet/bayesnet-m7-20260420_035052/train_20260420_035053.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ded2907debedaf80869e394afc9cdbdf5d0f959d8cb6aa37b67fe8d901338fb +size 1160 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/_ctgan_generate.py b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..27504ddb86e6984b49226bd60e57561ced507396 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/_ctgan_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN +model = CTGAN.load("/work/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/ctgan_300epochs.pt") +total = 4088 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +sampled = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +sampled.to_csv("/work/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/ctgan-m7-4088-20260422_031701.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/ctgan-m7-4088-20260422_031701.csv") \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan-m7-4088-20260422_031701.csv b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan-m7-4088-20260422_031701.csv new file mode 100644 index 0000000000000000000000000000000000000000..03021c091ee9035841a909cb89251e9b7941662d --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan-m7-4088-20260422_031701.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a571fd61abd1274a28afa0afcb2ee0fb10939f6b880b59ea9de73ac8d6c501e +size 427328 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan_metadata.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..401efafec49762d3e443188f4f45914377273a24 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "id", + "type": "continuous" + }, + { + "name": "gender", + "type": "categorical" + }, + { + "name": "age", + "type": "continuous" + }, + { + "name": "hypertension", + "type": "categorical" + }, + { + "name": "heart_disease", + "type": "categorical" + }, + { + "name": "ever_married", + "type": "categorical" + }, + { + "name": "work_type", + "type": "categorical" + }, + { + "name": "Residence_type", + "type": "categorical" + }, + { + "name": "avg_glucose_level", + "type": "continuous" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "smoking_status", + "type": "categorical" + }, + { + "name": "stroke", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan_train_continuous_imputed.csv b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan_train_continuous_imputed.csv new file mode 100644 index 0000000000000000000000000000000000000000..32d9774716b9e7b55e898959e468787a23bd9ed9 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/ctgan_train_continuous_imputed.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f09f8ffa01150b36a5bb4cbd5592da505fc71b4316387a80989867a26e73579 +size 262711 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/gen_20260422_031701.log b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/gen_20260422_031701.log new file mode 100644 index 0000000000000000000000000000000000000000..bf8f50b7c090b5edf2ead2d6c4317bb9a8327481 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/gen_20260422_031701.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737ffb173c2ad801f41a143503ab9c02a0daa3798cc536585def16ff92a50b75 +size 292 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/input_snapshot.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2f7653617653779fb364af3d0c134c2502135bd8 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/ctgan_300epochs.pt b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..fd36cf3e3beac20f21841b89150a0272974d481d --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bb37f34d315c89708cce912563a5feb49eac543f37dc30b3cddc9cb87aa113 +size 1365155 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/train_20260422_031300.log b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/train_20260422_031300.log new file mode 100644 index 0000000000000000000000000000000000000000..a4f4e99c81327aa24c1761815c80857f3050360e --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/train_20260422_031300.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cef0e2a964c2e13e32fdee30bc71a5e7afb4945f6ff5bdb8ff062a87139aa6a +size 2322 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/public_gate_report.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e67a7828b884f8c4d3cba78114655c0edfedcbc7 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/runtime_result.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7c453cf56130587398e44200f0b78fd43b606899 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m7", + "model": "ctgan", + "run_id": "ctgan-m7-20260422_031259", + "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-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/ctgan-m7-4088-20260422_031701.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/adapter_report.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1347b5b24812eb8e9597da929ebbb4a0fadcf412 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/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-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/adapter_transforms_applied.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/model_input_manifest.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..19f17134196ad766c9dfbfa22fc009f19389721c --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/ctgan/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "ctgan", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/ctgan/ctgan-m7-20260422_031259/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/staged_features.json b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/test.csv b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/train.csv b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/val.csv b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/ctgan/ctgan-m7-20260422_031259/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/gen_20260330_031203.log b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/gen_20260330_031203.log new file mode 100644 index 0000000000000000000000000000000000000000..74cfb5c42d0481a5ec84f63f415928d247c456e4 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/gen_20260330_031203.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5565ca7e8ed097a2bb0769595867cd02acc8ab60c9191fe0fa2ede0f9f0e060 +size 847 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/gen_20260418_121334.log b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/gen_20260418_121334.log new file mode 100644 index 0000000000000000000000000000000000000000..81e7fe25608d39a67bba00270aa4e93c3795c844 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/gen_20260418_121334.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59b2eeaf3604cd8f496dcd737db969b968529d32706fb7bad7ef26e59b42dd2 +size 2362 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/input_snapshot.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96352f89006710306615e3d1eb33a148cbfc3edd --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/models_100epochs/id000017748115194517118976/rtf_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/models_100epochs/id000017748115194517118976/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0a26a71cee1a37eef0fa8bec9d163003e17954b7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/models_100epochs/id000017748115194517118976/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"add_cross_attention": false, "tie_word_embeddings": true, "vocab_size": 195, "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_first_dropout": 0.1, "summary_proj_to_labels": true, "scale_attn_weights": true, "use_cache": false, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "return_dict": true, "output_hidden_states": false, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "architectures": ["GPT2LMHeadModel"], "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "_name_or_path": "", "transformers_version": "5.0.0", "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": ["id", "gender", "age", "hypertension", "heart_disease", "ever_married", "work_type", "Residence_type", "avg_glucose_level", "bmi", "smoking_status", "stroke"], "column_dtypes": {"id": "int64", "gender": "object", "age": "float64", "hypertension": "object", "heart_disease": "object", "ever_married": "object", "work_type": "object", "Residence_type": "object", "avg_glucose_level": "float64", "bmi": "float64", "smoking_status": "object", "stroke": "object"}, "column_has_missing": {"id": false, "gender": false, "age": false, "hypertension": false, "heart_disease": false, "ever_married": false, "work_type": false, "Residence_type": false, "avg_glucose_level": false, "bmi": true, "smoking_status": false, "stroke": false}, "drop_na_cols": ["id", "gender", "age", "hypertension", "heart_disease", "ever_married", "work_type", "Residence_type", "avg_glucose_level", "smoking_status", "stroke"], "processed_columns": ["00___NUMERIC___id_00", "00___NUMERIC___id_01", "00___NUMERIC___id_02", "00___NUMERIC___id_03", "00___NUMERIC___id_04", "01___CATEGORICAL___gender", "02___NUMERIC___age_00", "02___NUMERIC___age_01", "02___NUMERIC___age_02", "02___NUMERIC___age_03", "02___NUMERIC___age_04", "03___CATEGORICAL___hypertension", "04___CATEGORICAL___heart_disease", "05___CATEGORICAL___ever_married", "06___CATEGORICAL___work_type", "07___CATEGORICAL___Residence_type", "08___NUMERIC___avg_glucose_level_00", "08___NUMERIC___avg_glucose_level_01", "08___NUMERIC___avg_glucose_level_02", "08___NUMERIC___avg_glucose_level_03", "08___NUMERIC___avg_glucose_level_04", "08___NUMERIC___avg_glucose_level_05", "09___NUMERIC___bmi_00", "09___NUMERIC___bmi_01", "09___NUMERIC___bmi_02", "09___NUMERIC___bmi_03", "09___NUMERIC___bmi_04", "09___NUMERIC___bmi_05", "10___CATEGORICAL___smoking_status", "11___CATEGORICAL___stroke"], "numeric_columns": ["id", "age", "avg_glucose_level", "bmi"], "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___id_00___0", "12": "00___NUMERIC___id_00___1", "13": "00___NUMERIC___id_00___2", "14": "00___NUMERIC___id_00___3", "15": "00___NUMERIC___id_00___4", "16": "00___NUMERIC___id_00___5", "17": "00___NUMERIC___id_00___6", "18": "00___NUMERIC___id_00___7", "19": "00___NUMERIC___id_01___0", "20": "00___NUMERIC___id_01___1", "21": "00___NUMERIC___id_01___2", "22": "00___NUMERIC___id_01___3", "23": "00___NUMERIC___id_01___4", "24": "00___NUMERIC___id_01___5", "25": "00___NUMERIC___id_01___6", "26": "00___NUMERIC___id_01___7", "27": "00___NUMERIC___id_01___8", "28": "00___NUMERIC___id_01___9", "29": "00___NUMERIC___id_02___0", "30": "00___NUMERIC___id_02___1", "31": "00___NUMERIC___id_02___2", "32": "00___NUMERIC___id_02___3", "33": "00___NUMERIC___id_02___4", "34": "00___NUMERIC___id_02___5", "35": "00___NUMERIC___id_02___6", "36": "00___NUMERIC___id_02___7", "37": "00___NUMERIC___id_02___8", "38": "00___NUMERIC___id_02___9", "39": "00___NUMERIC___id_03___0", "40": "00___NUMERIC___id_03___1", "41": "00___NUMERIC___id_03___2", "42": "00___NUMERIC___id_03___3", "43": "00___NUMERIC___id_03___4", "44": "00___NUMERIC___id_03___5", "45": "00___NUMERIC___id_03___6", "46": "00___NUMERIC___id_03___7", "47": "00___NUMERIC___id_03___8", "48": "00___NUMERIC___id_03___9", "49": "00___NUMERIC___id_04___0", "50": "00___NUMERIC___id_04___1", "51": "00___NUMERIC___id_04___2", "52": "00___NUMERIC___id_04___3", "53": "00___NUMERIC___id_04___4", "54": "00___NUMERIC___id_04___5", "55": "00___NUMERIC___id_04___6", "56": "00___NUMERIC___id_04___7", "57": "00___NUMERIC___id_04___8", "58": "00___NUMERIC___id_04___9", "59": "01___CATEGORICAL___gender___Female", "60": "01___CATEGORICAL___gender___Male", "61": "02___NUMERIC___age_00___0", "62": "02___NUMERIC___age_00___1", "63": "02___NUMERIC___age_00___2", "64": "02___NUMERIC___age_00___3", "65": "02___NUMERIC___age_00___4", "66": "02___NUMERIC___age_00___5", "67": "02___NUMERIC___age_00___6", "68": "02___NUMERIC___age_00___7", "69": "02___NUMERIC___age_00___8", "70": "02___NUMERIC___age_01___0", "71": "02___NUMERIC___age_01___1", "72": "02___NUMERIC___age_01___2", "73": "02___NUMERIC___age_01___3", "74": "02___NUMERIC___age_01___4", "75": "02___NUMERIC___age_01___5", "76": "02___NUMERIC___age_01___6", "77": "02___NUMERIC___age_01___7", "78": "02___NUMERIC___age_01___8", "79": "02___NUMERIC___age_01___9", "80": "02___NUMERIC___age_02___.", "81": "02___NUMERIC___age_03___0", "82": "02___NUMERIC___age_03___1", "83": "02___NUMERIC___age_03___2", "84": "02___NUMERIC___age_03___3", "85": "02___NUMERIC___age_03___4", "86": "02___NUMERIC___age_03___5", "87": "02___NUMERIC___age_03___6", "88": "02___NUMERIC___age_03___7", "89": "02___NUMERIC___age_03___8", "90": "02___NUMERIC___age_04___0", "91": "02___NUMERIC___age_04___2", "92": "02___NUMERIC___age_04___4", "93": "02___NUMERIC___age_04___6", "94": "02___NUMERIC___age_04___8", "95": "03___CATEGORICAL___hypertension___0", "96": "03___CATEGORICAL___hypertension___1", "97": "04___CATEGORICAL___heart_disease___0", "98": "04___CATEGORICAL___heart_disease___1", "99": "05___CATEGORICAL___ever_married___No", "100": "05___CATEGORICAL___ever_married___Yes", "101": "06___CATEGORICAL___work_type___Govt_job", "102": "06___CATEGORICAL___work_type___Never_worked", "103": "06___CATEGORICAL___work_type___Private", "104": "06___CATEGORICAL___work_type___Self-employed", "105": "06___CATEGORICAL___work_type___children", "106": "07___CATEGORICAL___Residence_type___Rural", "107": "07___CATEGORICAL___Residence_type___Urban", "108": "08___NUMERIC___avg_glucose_level_00___0", "109": "08___NUMERIC___avg_glucose_level_00___1", "110": "08___NUMERIC___avg_glucose_level_00___2", "111": "08___NUMERIC___avg_glucose_level_01___0", "112": "08___NUMERIC___avg_glucose_level_01___1", "113": "08___NUMERIC___avg_glucose_level_01___2", "114": "08___NUMERIC___avg_glucose_level_01___3", "115": "08___NUMERIC___avg_glucose_level_01___4", "116": "08___NUMERIC___avg_glucose_level_01___5", "117": "08___NUMERIC___avg_glucose_level_01___6", "118": "08___NUMERIC___avg_glucose_level_01___7", "119": "08___NUMERIC___avg_glucose_level_01___8", "120": "08___NUMERIC___avg_glucose_level_01___9", "121": "08___NUMERIC___avg_glucose_level_02___0", "122": "08___NUMERIC___avg_glucose_level_02___1", "123": "08___NUMERIC___avg_glucose_level_02___2", "124": "08___NUMERIC___avg_glucose_level_02___3", "125": "08___NUMERIC___avg_glucose_level_02___4", "126": "08___NUMERIC___avg_glucose_level_02___5", "127": "08___NUMERIC___avg_glucose_level_02___6", "128": "08___NUMERIC___avg_glucose_level_02___7", "129": "08___NUMERIC___avg_glucose_level_02___8", "130": "08___NUMERIC___avg_glucose_level_02___9", "131": "08___NUMERIC___avg_glucose_level_03___.", "132": "08___NUMERIC___avg_glucose_level_04___0", "133": "08___NUMERIC___avg_glucose_level_04___1", "134": "08___NUMERIC___avg_glucose_level_04___2", "135": "08___NUMERIC___avg_glucose_level_04___3", "136": "08___NUMERIC___avg_glucose_level_04___4", "137": "08___NUMERIC___avg_glucose_level_04___5", "138": "08___NUMERIC___avg_glucose_level_04___6", "139": "08___NUMERIC___avg_glucose_level_04___7", "140": "08___NUMERIC___avg_glucose_level_04___8", "141": "08___NUMERIC___avg_glucose_level_04___9", "142": "08___NUMERIC___avg_glucose_level_05___0", "143": "08___NUMERIC___avg_glucose_level_05___1", "144": "08___NUMERIC___avg_glucose_level_05___2", "145": "08___NUMERIC___avg_glucose_level_05___3", "146": "08___NUMERIC___avg_glucose_level_05___4", "147": "08___NUMERIC___avg_glucose_level_05___5", "148": "08___NUMERIC___avg_glucose_level_05___6", "149": "08___NUMERIC___avg_glucose_level_05___7", "150": "08___NUMERIC___avg_glucose_level_05___8", "151": "08___NUMERIC___avg_glucose_level_05___9", "152": "09___NUMERIC___bmi_00___1", "153": "09___NUMERIC___bmi_00___2", "154": "09___NUMERIC___bmi_00___3", "155": "09___NUMERIC___bmi_00___4", "156": "09___NUMERIC___bmi_00___5", "157": "09___NUMERIC___bmi_00___6", "158": "09___NUMERIC___bmi_00___7", "159": "09___NUMERIC___bmi_00___9", "160": "09___NUMERIC___bmi_00___@", "161": "09___NUMERIC___bmi_01___0", "162": "09___NUMERIC___bmi_01___1", "163": "09___NUMERIC___bmi_01___2", "164": "09___NUMERIC___bmi_01___3", "165": "09___NUMERIC___bmi_01___4", "166": "09___NUMERIC___bmi_01___5", "167": "09___NUMERIC___bmi_01___6", "168": "09___NUMERIC___bmi_01___7", "169": "09___NUMERIC___bmi_01___8", "170": "09___NUMERIC___bmi_01___9", "171": "09___NUMERIC___bmi_01___@", "172": "09___NUMERIC___bmi_02___.", "173": "09___NUMERIC___bmi_02___@", "174": "09___NUMERIC___bmi_03___0", "175": "09___NUMERIC___bmi_03___1", "176": "09___NUMERIC___bmi_03___2", "177": "09___NUMERIC___bmi_03___3", "178": "09___NUMERIC___bmi_03___4", "179": "09___NUMERIC___bmi_03___5", "180": "09___NUMERIC___bmi_03___6", "181": "09___NUMERIC___bmi_03___7", "182": "09___NUMERIC___bmi_03___8", "183": "09___NUMERIC___bmi_03___9", "184": "09___NUMERIC___bmi_03___@", "185": "09___NUMERIC___bmi_04___0", "186": "09___NUMERIC___bmi_04___@", "187": "09___NUMERIC___bmi_05___0", "188": "09___NUMERIC___bmi_05___@", "189": "10___CATEGORICAL___smoking_status___Unknown", "190": "10___CATEGORICAL___smoking_status___formerly smoked", "191": "10___CATEGORICAL___smoking_status___never smoked", "192": "10___CATEGORICAL___smoking_status___smokes", "193": "11___CATEGORICAL___stroke___0", "194": "11___CATEGORICAL___stroke___1"}, "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___id_00___0": 11, "00___NUMERIC___id_00___1": 12, "00___NUMERIC___id_00___2": 13, "00___NUMERIC___id_00___3": 14, "00___NUMERIC___id_00___4": 15, "00___NUMERIC___id_00___5": 16, "00___NUMERIC___id_00___6": 17, "00___NUMERIC___id_00___7": 18, "00___NUMERIC___id_01___0": 19, "00___NUMERIC___id_01___1": 20, "00___NUMERIC___id_01___2": 21, "00___NUMERIC___id_01___3": 22, "00___NUMERIC___id_01___4": 23, "00___NUMERIC___id_01___5": 24, "00___NUMERIC___id_01___6": 25, "00___NUMERIC___id_01___7": 26, "00___NUMERIC___id_01___8": 27, "00___NUMERIC___id_01___9": 28, "00___NUMERIC___id_02___0": 29, "00___NUMERIC___id_02___1": 30, "00___NUMERIC___id_02___2": 31, "00___NUMERIC___id_02___3": 32, "00___NUMERIC___id_02___4": 33, "00___NUMERIC___id_02___5": 34, "00___NUMERIC___id_02___6": 35, "00___NUMERIC___id_02___7": 36, "00___NUMERIC___id_02___8": 37, "00___NUMERIC___id_02___9": 38, "00___NUMERIC___id_03___0": 39, "00___NUMERIC___id_03___1": 40, "00___NUMERIC___id_03___2": 41, "00___NUMERIC___id_03___3": 42, "00___NUMERIC___id_03___4": 43, "00___NUMERIC___id_03___5": 44, "00___NUMERIC___id_03___6": 45, "00___NUMERIC___id_03___7": 46, "00___NUMERIC___id_03___8": 47, "00___NUMERIC___id_03___9": 48, "00___NUMERIC___id_04___0": 49, "00___NUMERIC___id_04___1": 50, "00___NUMERIC___id_04___2": 51, "00___NUMERIC___id_04___3": 52, "00___NUMERIC___id_04___4": 53, "00___NUMERIC___id_04___5": 54, "00___NUMERIC___id_04___6": 55, "00___NUMERIC___id_04___7": 56, "00___NUMERIC___id_04___8": 57, "00___NUMERIC___id_04___9": 58, "01___CATEGORICAL___gender___Female": 59, "01___CATEGORICAL___gender___Male": 60, "02___NUMERIC___age_00___0": 61, "02___NUMERIC___age_00___1": 62, "02___NUMERIC___age_00___2": 63, "02___NUMERIC___age_00___3": 64, "02___NUMERIC___age_00___4": 65, "02___NUMERIC___age_00___5": 66, "02___NUMERIC___age_00___6": 67, "02___NUMERIC___age_00___7": 68, "02___NUMERIC___age_00___8": 69, "02___NUMERIC___age_01___0": 70, "02___NUMERIC___age_01___1": 71, "02___NUMERIC___age_01___2": 72, "02___NUMERIC___age_01___3": 73, "02___NUMERIC___age_01___4": 74, "02___NUMERIC___age_01___5": 75, "02___NUMERIC___age_01___6": 76, "02___NUMERIC___age_01___7": 77, "02___NUMERIC___age_01___8": 78, "02___NUMERIC___age_01___9": 79, "02___NUMERIC___age_02___.": 80, "02___NUMERIC___age_03___0": 81, "02___NUMERIC___age_03___1": 82, "02___NUMERIC___age_03___2": 83, "02___NUMERIC___age_03___3": 84, "02___NUMERIC___age_03___4": 85, "02___NUMERIC___age_03___5": 86, "02___NUMERIC___age_03___6": 87, "02___NUMERIC___age_03___7": 88, "02___NUMERIC___age_03___8": 89, "02___NUMERIC___age_04___0": 90, "02___NUMERIC___age_04___2": 91, "02___NUMERIC___age_04___4": 92, "02___NUMERIC___age_04___6": 93, "02___NUMERIC___age_04___8": 94, "03___CATEGORICAL___hypertension___0": 95, "03___CATEGORICAL___hypertension___1": 96, "04___CATEGORICAL___heart_disease___0": 97, "04___CATEGORICAL___heart_disease___1": 98, "05___CATEGORICAL___ever_married___No": 99, "05___CATEGORICAL___ever_married___Yes": 100, "06___CATEGORICAL___work_type___Govt_job": 101, "06___CATEGORICAL___work_type___Never_worked": 102, "06___CATEGORICAL___work_type___Private": 103, "06___CATEGORICAL___work_type___Self-employed": 104, "06___CATEGORICAL___work_type___children": 105, "07___CATEGORICAL___Residence_type___Rural": 106, "07___CATEGORICAL___Residence_type___Urban": 107, "08___NUMERIC___avg_glucose_level_00___0": 108, "08___NUMERIC___avg_glucose_level_00___1": 109, "08___NUMERIC___avg_glucose_level_00___2": 110, "08___NUMERIC___avg_glucose_level_01___0": 111, "08___NUMERIC___avg_glucose_level_01___1": 112, "08___NUMERIC___avg_glucose_level_01___2": 113, "08___NUMERIC___avg_glucose_level_01___3": 114, "08___NUMERIC___avg_glucose_level_01___4": 115, "08___NUMERIC___avg_glucose_level_01___5": 116, "08___NUMERIC___avg_glucose_level_01___6": 117, "08___NUMERIC___avg_glucose_level_01___7": 118, "08___NUMERIC___avg_glucose_level_01___8": 119, "08___NUMERIC___avg_glucose_level_01___9": 120, "08___NUMERIC___avg_glucose_level_02___0": 121, "08___NUMERIC___avg_glucose_level_02___1": 122, "08___NUMERIC___avg_glucose_level_02___2": 123, "08___NUMERIC___avg_glucose_level_02___3": 124, "08___NUMERIC___avg_glucose_level_02___4": 125, "08___NUMERIC___avg_glucose_level_02___5": 126, "08___NUMERIC___avg_glucose_level_02___6": 127, "08___NUMERIC___avg_glucose_level_02___7": 128, "08___NUMERIC___avg_glucose_level_02___8": 129, "08___NUMERIC___avg_glucose_level_02___9": 130, "08___NUMERIC___avg_glucose_level_03___.": 131, "08___NUMERIC___avg_glucose_level_04___0": 132, "08___NUMERIC___avg_glucose_level_04___1": 133, "08___NUMERIC___avg_glucose_level_04___2": 134, "08___NUMERIC___avg_glucose_level_04___3": 135, "08___NUMERIC___avg_glucose_level_04___4": 136, "08___NUMERIC___avg_glucose_level_04___5": 137, "08___NUMERIC___avg_glucose_level_04___6": 138, "08___NUMERIC___avg_glucose_level_04___7": 139, "08___NUMERIC___avg_glucose_level_04___8": 140, "08___NUMERIC___avg_glucose_level_04___9": 141, "08___NUMERIC___avg_glucose_level_05___0": 142, "08___NUMERIC___avg_glucose_level_05___1": 143, "08___NUMERIC___avg_glucose_level_05___2": 144, "08___NUMERIC___avg_glucose_level_05___3": 145, "08___NUMERIC___avg_glucose_level_05___4": 146, "08___NUMERIC___avg_glucose_level_05___5": 147, "08___NUMERIC___avg_glucose_level_05___6": 148, "08___NUMERIC___avg_glucose_level_05___7": 149, "08___NUMERIC___avg_glucose_level_05___8": 150, "08___NUMERIC___avg_glucose_level_05___9": 151, "09___NUMERIC___bmi_00___1": 152, "09___NUMERIC___bmi_00___2": 153, "09___NUMERIC___bmi_00___3": 154, "09___NUMERIC___bmi_00___4": 155, "09___NUMERIC___bmi_00___5": 156, "09___NUMERIC___bmi_00___6": 157, "09___NUMERIC___bmi_00___7": 158, "09___NUMERIC___bmi_00___9": 159, "09___NUMERIC___bmi_00___@": 160, "09___NUMERIC___bmi_01___0": 161, "09___NUMERIC___bmi_01___1": 162, "09___NUMERIC___bmi_01___2": 163, "09___NUMERIC___bmi_01___3": 164, "09___NUMERIC___bmi_01___4": 165, "09___NUMERIC___bmi_01___5": 166, "09___NUMERIC___bmi_01___6": 167, "09___NUMERIC___bmi_01___7": 168, "09___NUMERIC___bmi_01___8": 169, "09___NUMERIC___bmi_01___9": 170, "09___NUMERIC___bmi_01___@": 171, "09___NUMERIC___bmi_02___.": 172, "09___NUMERIC___bmi_02___@": 173, "09___NUMERIC___bmi_03___0": 174, "09___NUMERIC___bmi_03___1": 175, "09___NUMERIC___bmi_03___2": 176, "09___NUMERIC___bmi_03___3": 177, "09___NUMERIC___bmi_03___4": 178, "09___NUMERIC___bmi_03___5": 179, "09___NUMERIC___bmi_03___6": 180, "09___NUMERIC___bmi_03___7": 181, "09___NUMERIC___bmi_03___8": 182, "09___NUMERIC___bmi_03___9": 183, "09___NUMERIC___bmi_03___@": 184, "09___NUMERIC___bmi_04___0": 185, "09___NUMERIC___bmi_04___@": 186, "09___NUMERIC___bmi_05___0": 187, "09___NUMERIC___bmi_05___@": 188, "10___CATEGORICAL___smoking_status___Unknown": 189, "10___CATEGORICAL___smoking_status___formerly smoked": 190, "10___CATEGORICAL___smoking_status___never smoked": 191, "10___CATEGORICAL___smoking_status___smokes": 192, "11___CATEGORICAL___stroke___0": 193, "11___CATEGORICAL___stroke___1": 194}, "column_token_ids": {"00___NUMERIC___id_00": [11, 12, 13, 14, 15, 16, 17, 18], "00___NUMERIC___id_01": [19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "00___NUMERIC___id_02": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "00___NUMERIC___id_03": [39, 40, 41, 42, 43, 44, 45, 46, 47, 48], "00___NUMERIC___id_04": [49, 50, 51, 52, 53, 54, 55, 56, 57, 58], "01___CATEGORICAL___gender": [59, 60], "02___NUMERIC___age_00": [61, 62, 63, 64, 65, 66, 67, 68, 69], "02___NUMERIC___age_01": [70, 71, 72, 73, 74, 75, 76, 77, 78, 79], "02___NUMERIC___age_02": [80], "02___NUMERIC___age_03": [81, 82, 83, 84, 85, 86, 87, 88, 89], "02___NUMERIC___age_04": [90, 91, 92, 93, 94], "03___CATEGORICAL___hypertension": [95, 96], "04___CATEGORICAL___heart_disease": [97, 98], "05___CATEGORICAL___ever_married": [99, 100], "06___CATEGORICAL___work_type": [101, 102, 103, 104, 105], "07___CATEGORICAL___Residence_type": [106, 107], "08___NUMERIC___avg_glucose_level_00": [108, 109, 110], "08___NUMERIC___avg_glucose_level_01": [111, 112, 113, 114, 115, 116, 117, 118, 119, 120], "08___NUMERIC___avg_glucose_level_02": [121, 122, 123, 124, 125, 126, 127, 128, 129, 130], "08___NUMERIC___avg_glucose_level_03": [131], "08___NUMERIC___avg_glucose_level_04": [132, 133, 134, 135, 136, 137, 138, 139, 140, 141], "08___NUMERIC___avg_glucose_level_05": [142, 143, 144, 145, 146, 147, 148, 149, 150, 151], "09___NUMERIC___bmi_00": [152, 153, 154, 155, 156, 157, 158, 159, 160], "09___NUMERIC___bmi_01": [161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171], "09___NUMERIC___bmi_02": [172, 173], "09___NUMERIC___bmi_03": [174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "09___NUMERIC___bmi_04": [185, 186], "09___NUMERIC___bmi_05": [187, 188], "10___CATEGORICAL___smoking_status": [189, 190, 191, 192], "11___CATEGORICAL___stroke": [193, 194]}}, "tabular_max_length": 32, "relational_max_length": null, "tabular_col_size": 4088, "relational_col_size": null, "col_transform_data": {"id": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 5, "numeric_nparts": 1}, "age": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "avg_glucose_level": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 6, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16, 17, 18], "1": [19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "2": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "3": [39, 40, 41, 42, 43, 44, 45, 46, 47, 48], "4": [49, 50, 51, 52, 53, 54, 55, 56, 57, 58], "5": [59, 60], "6": [61, 62, 63, 64, 65, 66, 67, 68, 69], "7": [70, 71, 72, 73, 74, 75, 76, 77, 78, 79], "8": [80], "9": [81, 82, 83, 84, 85, 86, 87, 88, 89], "10": [90, 91, 92, 93, 94], "11": [95, 96], "12": [97, 98], "13": [99, 100], "14": [101, 102, 103, 104, 105], "15": [106, 107], "16": [108, 109, 110], "17": [111, 112, 113, 114, 115, 116, 117, 118, 119, 120], "18": [121, 122, 123, 124, 125, 126, 127, 128, 129, 130], "19": [131], "20": [132, 133, 134, 135, 136, 137, 138, 139, 140, 141], "21": [142, 143, 144, 145, 146, 147, 148, 149, 150, 151], "22": [152, 153, 154, 155, 156, 157, 158, 159, 160], "23": [161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171], "24": [172, 173], "25": [174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "26": [185, 186], "27": [187, 188], "28": [189, 190, 191, 192], "29": [193, 194]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017748115194517118976", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/models_100epochs/id000017748115194517118976/rtf_model.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/models_100epochs/id000017748115194517118976/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..43f32517ddacc2eb6dfc129ca052b06dfb40930f --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/models_100epochs/id000017748115194517118976/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86216b013346fa103eb78af1991bbd73a20271f0d7db7097f562b63ebf161fad +size 173888995 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/public_gate_report.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4d0781dea55ffc6a181e46c17aaeddd008589f11 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/realtabformer_features.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-1000-20260330_031203.csv b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-1000-20260330_031203.csv new file mode 100644 index 0000000000000000000000000000000000000000..4a894c8e97d0e6d14baebb15891c578efaa68e82 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-1000-20260330_031203.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06411bc9e157a4737da5e59a6719921530d3c3be0920dff26f5a7dc507654d68 +size 64227 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-4088-20260418_121334.csv b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-4088-20260418_121334.csv new file mode 100644 index 0000000000000000000000000000000000000000..489b51a464ed067aa6fd36aaaf2e01bf7d01677a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-4088-20260418_121334.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebcd60c605a45b222b1446a467106ae09f8896c4c8d5242eec894d5395090657 +size 262307 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..42745bb83020717e31ed504b835e2f60232556f7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/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.0.0", + "use_cache": false, + "vocab_size": 195 +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/generation_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/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.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/model.safetensors b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fcfd2707de82b4f71b6b876133689c7e777a0407 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e54175e7e3a97f4c29d0eae262335463d887afde896a91f60be640005913ca6 +size 173867464 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/optimizer.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..3626b449c1b0d71fbc1b76328d5af798e171603d --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0bd32c93b721a2f29438d45624496cf803f8a5d25aa5f73dcca79ee1f9f6a87 +size 347784011 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/rng_state.pth b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..21e68cce83f814efc0ad50eaefbd999d276c9f41 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12d69a9e8f5c17b90fa080222fc2df7241d83342cf5fa216fe125b38302f7b6 +size 14645 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/scaler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7f16d9a3e10c1db01f71838a1dde274daa04bb6c --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afab06362013b3bfefc398892b37558faee4b9d96b8d691ba85ad83ec51f3de +size 1383 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/scheduler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d3a5f394ed232894d253bf6e24a2a3451c50f896 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba7cb4ee31a8729b05f19a5e9f6bc0d9a86922d9cbf8b9a9db784e603fb6ce2 +size 1465 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/trainer_state.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a6ee5cc55230bb6c6e7517427fb7e95c8e192bed --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/trainer_state.json @@ -0,0 +1,909 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.65753424657534, + "eval_steps": 100, + "global_step": 12500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.7827788649706457, + "grad_norm": 1.0486202239990234, + "learning_rate": 4.961328125e-05, + "loss": 1.688448944091797, + "step": 100 + }, + { + "epoch": 1.563600782778865, + "grad_norm": 1.0504835844039917, + "learning_rate": 4.9222656250000004e-05, + "loss": 1.154488754272461, + "step": 200 + }, + { + "epoch": 2.344422700587084, + "grad_norm": 0.8747095465660095, + "learning_rate": 4.883203125000001e-05, + "loss": 1.1290001678466797, + "step": 300 + }, + { + "epoch": 3.1252446183953033, + "grad_norm": 0.8863896131515503, + "learning_rate": 4.844140625e-05, + "loss": 1.1141100311279297, + "step": 400 + }, + { + "epoch": 3.908023483365949, + "grad_norm": 0.8084456920623779, + "learning_rate": 4.8050781250000005e-05, + "loss": 1.1058421325683594, + "step": 500 + }, + { + "epoch": 4.688845401174168, + "grad_norm": 0.9470767974853516, + "learning_rate": 4.766015625000001e-05, + "loss": 1.102329635620117, + "step": 600 + }, + { + "epoch": 5.4696673189823874, + "grad_norm": 0.7827223539352417, + "learning_rate": 4.726953125e-05, + "loss": 1.094461898803711, + "step": 700 + }, + { + "epoch": 6.250489236790607, + "grad_norm": 0.8777554631233215, + "learning_rate": 4.6878906250000005e-05, + "loss": 1.0920853424072265, + "step": 800 + }, + { + "epoch": 7.031311154598826, + "grad_norm": 0.7711532115936279, + "learning_rate": 4.648828125000001e-05, + "loss": 1.0892620086669922, + "step": 900 + }, + { + "epoch": 7.814090019569472, + "grad_norm": 0.831622302532196, + "learning_rate": 4.609765625e-05, + "loss": 1.084198989868164, + "step": 1000 + }, + { + "epoch": 8.594911937377692, + "grad_norm": 0.834387481212616, + "learning_rate": 4.5707031250000005e-05, + "loss": 1.079208755493164, + "step": 1100 + }, + { + "epoch": 9.37573385518591, + "grad_norm": 1.0027215480804443, + "learning_rate": 4.531640625e-05, + "loss": 1.0801444244384766, + "step": 1200 + }, + { + "epoch": 10.156555772994128, + "grad_norm": 0.8628724217414856, + "learning_rate": 4.492578125e-05, + "loss": 1.0787698364257812, + "step": 1300 + }, + { + "epoch": 10.939334637964775, + "grad_norm": 0.8727676868438721, + "learning_rate": 4.4535156250000006e-05, + "loss": 1.0735088348388673, + "step": 1400 + }, + { + "epoch": 11.720156555772995, + "grad_norm": 0.9155942797660828, + "learning_rate": 4.414453125e-05, + "loss": 1.0684223937988282, + "step": 1500 + }, + { + "epoch": 12.500978473581213, + "grad_norm": 0.9530174136161804, + "learning_rate": 4.3753906250000003e-05, + "loss": 1.0664083862304687, + "step": 1600 + }, + { + "epoch": 13.281800391389432, + "grad_norm": 0.8837007880210876, + "learning_rate": 4.3363281250000006e-05, + "loss": 1.0640476989746093, + "step": 1700 + }, + { + "epoch": 14.062622309197652, + "grad_norm": 0.8225986957550049, + "learning_rate": 4.297265625e-05, + "loss": 1.062498550415039, + "step": 1800 + }, + { + "epoch": 14.845401174168298, + "grad_norm": 0.8787109851837158, + "learning_rate": 4.2582031250000004e-05, + "loss": 1.05648681640625, + "step": 1900 + }, + { + "epoch": 15.626223091976517, + "grad_norm": 0.9281523823738098, + "learning_rate": 4.2191406250000006e-05, + "loss": 1.0511688232421874, + "step": 2000 + }, + { + "epoch": 16.407045009784735, + "grad_norm": 0.9042040109634399, + "learning_rate": 4.180078125e-05, + "loss": 1.046303939819336, + "step": 2100 + }, + { + "epoch": 17.187866927592957, + "grad_norm": 1.019979476928711, + "learning_rate": 4.1410156250000004e-05, + "loss": 1.044459991455078, + "step": 2200 + }, + { + "epoch": 17.9706457925636, + "grad_norm": 0.9296092987060547, + "learning_rate": 4.1019531250000006e-05, + "loss": 1.0391932678222657, + "step": 2300 + }, + { + "epoch": 18.75146771037182, + "grad_norm": 0.9988288879394531, + "learning_rate": 4.062890625e-05, + "loss": 1.0261920166015626, + "step": 2400 + }, + { + "epoch": 19.532289628180038, + "grad_norm": 1.1281828880310059, + "learning_rate": 4.0238281250000004e-05, + "loss": 1.0217276000976563, + "step": 2500 + }, + { + "epoch": 20.313111545988257, + "grad_norm": 1.114624261856079, + "learning_rate": 3.984765625000001e-05, + "loss": 1.0104251098632813, + "step": 2600 + }, + { + "epoch": 21.09393346379648, + "grad_norm": 1.0959868431091309, + "learning_rate": 3.945703125e-05, + "loss": 1.0031028747558595, + "step": 2700 + }, + { + "epoch": 21.876712328767123, + "grad_norm": 1.2692209482192993, + "learning_rate": 3.9066406250000005e-05, + "loss": 0.9877436828613281, + "step": 2800 + }, + { + "epoch": 22.65753424657534, + "grad_norm": 1.3036280870437622, + "learning_rate": 3.867578125000001e-05, + "loss": 0.9706366729736328, + "step": 2900 + }, + { + "epoch": 23.438356164383563, + "grad_norm": 1.3872909545898438, + "learning_rate": 3.828515625e-05, + "loss": 0.9575959777832032, + "step": 3000 + }, + { + "epoch": 24.21917808219178, + "grad_norm": 1.5136151313781738, + "learning_rate": 3.7894531250000005e-05, + "loss": 0.941896743774414, + "step": 3100 + }, + { + "epoch": 25.0, + "grad_norm": 1.7240556478500366, + "learning_rate": 3.750390625e-05, + "loss": 0.930921401977539, + "step": 3200 + }, + { + "epoch": 25.782778864970645, + "grad_norm": 1.660912275314331, + "learning_rate": 3.711328125e-05, + "loss": 0.9009783172607422, + "step": 3300 + }, + { + "epoch": 26.563600782778863, + "grad_norm": 1.776151180267334, + "learning_rate": 3.6722656250000005e-05, + "loss": 0.88541748046875, + "step": 3400 + }, + { + "epoch": 27.344422700587085, + "grad_norm": 1.8112819194793701, + "learning_rate": 3.633203125e-05, + "loss": 0.8712809753417968, + "step": 3500 + }, + { + "epoch": 28.125244618395303, + "grad_norm": 1.7442703247070312, + "learning_rate": 3.594140625e-05, + "loss": 0.8555945587158204, + "step": 3600 + }, + { + "epoch": 28.908023483365948, + "grad_norm": 1.874680519104004, + "learning_rate": 3.5550781250000006e-05, + "loss": 0.8342882537841797, + "step": 3700 + }, + { + "epoch": 29.68884540117417, + "grad_norm": 2.0190470218658447, + "learning_rate": 3.516015625e-05, + "loss": 0.8082669067382813, + "step": 3800 + }, + { + "epoch": 30.46966731898239, + "grad_norm": 1.99907648563385, + "learning_rate": 3.4769531250000004e-05, + "loss": 0.79350830078125, + "step": 3900 + }, + { + "epoch": 31.250489236790607, + "grad_norm": 2.004641532897949, + "learning_rate": 3.4378906250000006e-05, + "loss": 0.7786461639404297, + "step": 4000 + }, + { + "epoch": 32.031311154598825, + "grad_norm": 1.8514291048049927, + "learning_rate": 3.398828125e-05, + "loss": 0.7644376373291015, + "step": 4100 + }, + { + "epoch": 32.81409001956947, + "grad_norm": 2.158493757247925, + "learning_rate": 3.3597656250000004e-05, + "loss": 0.7397248840332031, + "step": 4200 + }, + { + "epoch": 33.59491193737769, + "grad_norm": 2.127976417541504, + "learning_rate": 3.3207031250000006e-05, + "loss": 0.7238473510742187, + "step": 4300 + }, + { + "epoch": 34.37573385518591, + "grad_norm": 2.023771047592163, + "learning_rate": 3.281640625e-05, + "loss": 0.7110092163085937, + "step": 4400 + }, + { + "epoch": 35.15655577299413, + "grad_norm": 2.06078839302063, + "learning_rate": 3.2425781250000004e-05, + "loss": 0.6957923126220703, + "step": 4500 + }, + { + "epoch": 35.93933463796478, + "grad_norm": 2.244459867477417, + "learning_rate": 3.2035156250000007e-05, + "loss": 0.6851163482666016, + "step": 4600 + }, + { + "epoch": 36.720156555772995, + "grad_norm": 2.3121111392974854, + "learning_rate": 3.164453125e-05, + "loss": 0.66149658203125, + "step": 4700 + }, + { + "epoch": 37.50097847358121, + "grad_norm": 2.188596248626709, + "learning_rate": 3.1253906250000005e-05, + "loss": 0.6491559600830078, + "step": 4800 + }, + { + "epoch": 38.28180039138943, + "grad_norm": 2.005614995956421, + "learning_rate": 3.086328125e-05, + "loss": 0.6418089294433593, + "step": 4900 + }, + { + "epoch": 39.06262230919765, + "grad_norm": 2.1131582260131836, + "learning_rate": 3.0472656250000003e-05, + "loss": 0.6310436630249023, + "step": 5000 + }, + { + "epoch": 39.845401174168295, + "grad_norm": 2.31669020652771, + "learning_rate": 3.0082031250000005e-05, + "loss": 0.6103257751464843, + "step": 5100 + }, + { + "epoch": 40.62622309197651, + "grad_norm": 2.197002410888672, + "learning_rate": 2.9691406250000004e-05, + "loss": 0.5992939376831055, + "step": 5200 + }, + { + "epoch": 41.40704500978474, + "grad_norm": 2.1487903594970703, + "learning_rate": 2.9300781250000003e-05, + "loss": 0.5904928207397461, + "step": 5300 + }, + { + "epoch": 42.18786692759296, + "grad_norm": 2.05066180229187, + "learning_rate": 2.8910156250000002e-05, + "loss": 0.581017837524414, + "step": 5400 + }, + { + "epoch": 42.9706457925636, + "grad_norm": 2.3271167278289795, + "learning_rate": 2.8519531250000004e-05, + "loss": 0.5724580001831054, + "step": 5500 + }, + { + "epoch": 43.75146771037182, + "grad_norm": 2.2572574615478516, + "learning_rate": 2.8128906250000003e-05, + "loss": 0.5551020050048828, + "step": 5600 + }, + { + "epoch": 44.53228962818004, + "grad_norm": 2.226602792739868, + "learning_rate": 2.7738281250000002e-05, + "loss": 0.5493736267089844, + "step": 5700 + }, + { + "epoch": 45.31311154598826, + "grad_norm": 1.947657585144043, + "learning_rate": 2.7347656250000004e-05, + "loss": 0.5417766189575195, + "step": 5800 + }, + { + "epoch": 46.093933463796475, + "grad_norm": 1.995186686515808, + "learning_rate": 2.6957031250000003e-05, + "loss": 0.5349613189697265, + "step": 5900 + }, + { + "epoch": 46.87671232876713, + "grad_norm": 2.2597129344940186, + "learning_rate": 2.6566406250000002e-05, + "loss": 0.5226405715942383, + "step": 6000 + }, + { + "epoch": 47.657534246575345, + "grad_norm": 2.170502185821533, + "learning_rate": 2.6175781250000005e-05, + "loss": 0.5130897903442383, + "step": 6100 + }, + { + "epoch": 48.43835616438356, + "grad_norm": 2.244462490081787, + "learning_rate": 2.5785156250000004e-05, + "loss": 0.5051753234863281, + "step": 6200 + }, + { + "epoch": 49.21917808219178, + "grad_norm": 2.286914110183716, + "learning_rate": 2.5394531250000003e-05, + "loss": 0.4990710830688477, + "step": 6300 + }, + { + "epoch": 50.0, + "grad_norm": 2.4982612133026123, + "learning_rate": 2.5003906250000002e-05, + "loss": 0.4966748809814453, + "step": 6400 + }, + { + "epoch": 50.782778864970645, + "grad_norm": 2.351532459259033, + "learning_rate": 2.461328125e-05, + "loss": 0.4810691070556641, + "step": 6500 + }, + { + "epoch": 51.56360078277886, + "grad_norm": 2.165419340133667, + "learning_rate": 2.422265625e-05, + "loss": 0.47620841979980466, + "step": 6600 + }, + { + "epoch": 52.34442270058708, + "grad_norm": 2.0557236671447754, + "learning_rate": 2.3832031250000002e-05, + "loss": 0.4726076889038086, + "step": 6700 + }, + { + "epoch": 53.1252446183953, + "grad_norm": 1.9564766883850098, + "learning_rate": 2.344140625e-05, + "loss": 0.4708554458618164, + "step": 6800 + }, + { + "epoch": 53.90802348336595, + "grad_norm": 2.3277177810668945, + "learning_rate": 2.305078125e-05, + "loss": 0.46398677825927737, + "step": 6900 + }, + { + "epoch": 54.68884540117417, + "grad_norm": 2.3035829067230225, + "learning_rate": 2.266015625e-05, + "loss": 0.45168586730957033, + "step": 7000 + }, + { + "epoch": 55.46966731898239, + "grad_norm": 2.039451837539673, + "learning_rate": 2.226953125e-05, + "loss": 0.44671268463134767, + "step": 7100 + }, + { + "epoch": 56.25048923679061, + "grad_norm": 2.2257299423217773, + "learning_rate": 2.187890625e-05, + "loss": 0.4452375793457031, + "step": 7200 + }, + { + "epoch": 57.031311154598825, + "grad_norm": 1.9460525512695312, + "learning_rate": 2.148828125e-05, + "loss": 0.441870231628418, + "step": 7300 + }, + { + "epoch": 57.81409001956947, + "grad_norm": 2.2172210216522217, + "learning_rate": 2.109765625e-05, + "loss": 0.4326821899414062, + "step": 7400 + }, + { + "epoch": 58.59491193737769, + "grad_norm": 2.375434398651123, + "learning_rate": 2.070703125e-05, + "loss": 0.4289337158203125, + "step": 7500 + }, + { + "epoch": 59.37573385518591, + "grad_norm": 1.973957896232605, + "learning_rate": 2.031640625e-05, + "loss": 0.42538455963134764, + "step": 7600 + }, + { + "epoch": 60.15655577299413, + "grad_norm": 2.0541257858276367, + "learning_rate": 1.992578125e-05, + "loss": 0.42150623321533204, + "step": 7700 + }, + { + "epoch": 60.93933463796478, + "grad_norm": 2.2626030445098877, + "learning_rate": 1.953515625e-05, + "loss": 0.4170351791381836, + "step": 7800 + }, + { + "epoch": 61.720156555772995, + "grad_norm": 2.0126707553863525, + "learning_rate": 1.914453125e-05, + "loss": 0.41034427642822263, + "step": 7900 + }, + { + "epoch": 62.50097847358121, + "grad_norm": 2.3015599250793457, + "learning_rate": 1.875390625e-05, + "loss": 0.4078645706176758, + "step": 8000 + }, + { + "epoch": 63.28180039138943, + "grad_norm": 1.946954607963562, + "learning_rate": 1.836328125e-05, + "loss": 0.40318927764892576, + "step": 8100 + }, + { + "epoch": 64.06262230919765, + "grad_norm": 2.108351945877075, + "learning_rate": 1.797265625e-05, + "loss": 0.402923583984375, + "step": 8200 + }, + { + "epoch": 64.8454011741683, + "grad_norm": 2.0268521308898926, + "learning_rate": 1.758203125e-05, + "loss": 0.39771438598632813, + "step": 8300 + }, + { + "epoch": 65.62622309197651, + "grad_norm": 2.0682578086853027, + "learning_rate": 1.719140625e-05, + "loss": 0.39169620513916015, + "step": 8400 + }, + { + "epoch": 66.40704500978474, + "grad_norm": 2.0089261531829834, + "learning_rate": 1.680078125e-05, + "loss": 0.39035537719726565, + "step": 8500 + }, + { + "epoch": 67.18786692759295, + "grad_norm": 1.6829136610031128, + "learning_rate": 1.641015625e-05, + "loss": 0.38773414611816404, + "step": 8600 + }, + { + "epoch": 67.9706457925636, + "grad_norm": 2.221820831298828, + "learning_rate": 1.601953125e-05, + "loss": 0.3859918212890625, + "step": 8700 + }, + { + "epoch": 68.75146771037183, + "grad_norm": 1.769336223602295, + "learning_rate": 1.562890625e-05, + "loss": 0.380072021484375, + "step": 8800 + }, + { + "epoch": 69.53228962818004, + "grad_norm": 2.064134120941162, + "learning_rate": 1.523828125e-05, + "loss": 0.3790831756591797, + "step": 8900 + }, + { + "epoch": 70.31311154598826, + "grad_norm": 1.9138619899749756, + "learning_rate": 1.484765625e-05, + "loss": 0.37655155181884764, + "step": 9000 + }, + { + "epoch": 71.09393346379647, + "grad_norm": 1.683709740638733, + "learning_rate": 1.445703125e-05, + "loss": 0.37561256408691407, + "step": 9100 + }, + { + "epoch": 71.87671232876713, + "grad_norm": 1.792253851890564, + "learning_rate": 1.406640625e-05, + "loss": 0.3719992828369141, + "step": 9200 + }, + { + "epoch": 72.65753424657534, + "grad_norm": 1.7605615854263306, + "learning_rate": 1.3675781249999999e-05, + "loss": 0.3683036804199219, + "step": 9300 + }, + { + "epoch": 73.43835616438356, + "grad_norm": 1.9714428186416626, + "learning_rate": 1.328515625e-05, + "loss": 0.36568996429443357, + "step": 9400 + }, + { + "epoch": 74.21917808219177, + "grad_norm": 1.7406636476516724, + "learning_rate": 1.289453125e-05, + "loss": 0.3651968765258789, + "step": 9500 + }, + { + "epoch": 75.0, + "grad_norm": 2.053438186645508, + "learning_rate": 1.250390625e-05, + "loss": 0.36441463470458985, + "step": 9600 + }, + { + "epoch": 75.78277886497065, + "grad_norm": 1.8560653924942017, + "learning_rate": 1.2113281250000002e-05, + "loss": 0.35981990814208986, + "step": 9700 + }, + { + "epoch": 76.56360078277886, + "grad_norm": 1.8084759712219238, + "learning_rate": 1.172265625e-05, + "loss": 0.35714241027832033, + "step": 9800 + }, + { + "epoch": 77.34442270058709, + "grad_norm": 2.0932719707489014, + "learning_rate": 1.1332031250000001e-05, + "loss": 0.35758853912353517, + "step": 9900 + }, + { + "epoch": 78.1252446183953, + "grad_norm": 2.1276156902313232, + "learning_rate": 1.094140625e-05, + "loss": 0.3567123794555664, + "step": 10000 + }, + { + "epoch": 78.90802348336595, + "grad_norm": 1.6367905139923096, + "learning_rate": 1.0550781250000001e-05, + "loss": 0.3533828353881836, + "step": 10100 + }, + { + "epoch": 79.68884540117416, + "grad_norm": 1.8565430641174316, + "learning_rate": 1.0160156250000002e-05, + "loss": 0.35054325103759765, + "step": 10200 + }, + { + "epoch": 80.46966731898239, + "grad_norm": 1.762800931930542, + "learning_rate": 9.76953125e-06, + "loss": 0.34926509857177734, + "step": 10300 + }, + { + "epoch": 81.2504892367906, + "grad_norm": 1.4440858364105225, + "learning_rate": 9.378906250000001e-06, + "loss": 0.3485040283203125, + "step": 10400 + }, + { + "epoch": 82.03131115459882, + "grad_norm": 1.5824888944625854, + "learning_rate": 8.98828125e-06, + "loss": 0.3475947952270508, + "step": 10500 + }, + { + "epoch": 82.81409001956948, + "grad_norm": 1.6844125986099243, + "learning_rate": 8.597656250000001e-06, + "loss": 0.34544418334960936, + "step": 10600 + }, + { + "epoch": 83.59491193737769, + "grad_norm": 1.8069628477096558, + "learning_rate": 8.207031250000002e-06, + "loss": 0.34289070129394533, + "step": 10700 + }, + { + "epoch": 84.37573385518591, + "grad_norm": 1.3971033096313477, + "learning_rate": 7.81640625e-06, + "loss": 0.34258338928222654, + "step": 10800 + }, + { + "epoch": 85.15655577299412, + "grad_norm": 1.8665785789489746, + "learning_rate": 7.425781250000001e-06, + "loss": 0.341295166015625, + "step": 10900 + }, + { + "epoch": 85.93933463796478, + "grad_norm": 1.7835795879364014, + "learning_rate": 7.035156250000001e-06, + "loss": 0.3404966354370117, + "step": 11000 + }, + { + "epoch": 86.72015655577299, + "grad_norm": 1.6213293075561523, + "learning_rate": 6.644531250000001e-06, + "loss": 0.33715126037597654, + "step": 11100 + }, + { + "epoch": 87.50097847358121, + "grad_norm": 1.774746060371399, + "learning_rate": 6.253906250000001e-06, + "loss": 0.3374959945678711, + "step": 11200 + }, + { + "epoch": 88.28180039138944, + "grad_norm": 1.674729347229004, + "learning_rate": 5.86328125e-06, + "loss": 0.33550899505615234, + "step": 11300 + }, + { + "epoch": 89.06262230919765, + "grad_norm": 1.6939401626586914, + "learning_rate": 5.4726562500000005e-06, + "loss": 0.33601253509521484, + "step": 11400 + }, + { + "epoch": 89.8454011741683, + "grad_norm": 1.7840259075164795, + "learning_rate": 5.08203125e-06, + "loss": 0.3333161926269531, + "step": 11500 + }, + { + "epoch": 90.62622309197651, + "grad_norm": 1.4085773229599, + "learning_rate": 4.69140625e-06, + "loss": 0.33314674377441406, + "step": 11600 + }, + { + "epoch": 91.40704500978474, + "grad_norm": 1.4582897424697876, + "learning_rate": 4.30078125e-06, + "loss": 0.3319340133666992, + "step": 11700 + }, + { + "epoch": 92.18786692759295, + "grad_norm": 1.5548802614212036, + "learning_rate": 3.91015625e-06, + "loss": 0.33092777252197264, + "step": 11800 + }, + { + "epoch": 92.9706457925636, + "grad_norm": 1.6761683225631714, + "learning_rate": 3.51953125e-06, + "loss": 0.33047531127929686, + "step": 11900 + }, + { + "epoch": 93.75146771037183, + "grad_norm": 1.5440400838851929, + "learning_rate": 3.1289062500000002e-06, + "loss": 0.3297533416748047, + "step": 12000 + }, + { + "epoch": 94.53228962818004, + "grad_norm": 1.2982420921325684, + "learning_rate": 2.73828125e-06, + "loss": 0.3282759094238281, + "step": 12100 + }, + { + "epoch": 95.31311154598826, + "grad_norm": 1.843058466911316, + "learning_rate": 2.34765625e-06, + "loss": 0.3285936737060547, + "step": 12200 + }, + { + "epoch": 96.09393346379647, + "grad_norm": 1.498162865638733, + "learning_rate": 1.95703125e-06, + "loss": 0.32765304565429687, + "step": 12300 + }, + { + "epoch": 96.87671232876713, + "grad_norm": 1.4527279138565063, + "learning_rate": 1.56640625e-06, + "loss": 0.32622470855712893, + "step": 12400 + }, + { + "epoch": 97.65753424657534, + "grad_norm": 1.784439206123352, + "learning_rate": 1.1796875e-06, + "loss": 0.3263894271850586, + "step": 12500 + } + ], + "logging_steps": 100, + "max_steps": 12800, + "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": 3259872936198144.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/training_args.bin b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/config.json new file mode 100644 index 0000000000000000000000000000000000000000..42745bb83020717e31ed504b835e2f60232556f7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/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.0.0", + "use_cache": false, + "vocab_size": 195 +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/generation_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/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.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/model.safetensors b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9dcf848fa554059d2a9e0d55c42a96274c6a27ce --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49a443a27b127cb21abc48074bf97105971f998c465916ceddee3b293306cbd +size 173867464 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/optimizer.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..c4c1fe03e294f436ce282761111a122fcd4da9d5 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7fac6ed6affe7461793d59bccaad7eec46963afbd514414a4ac625ad206118 +size 347784011 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/rng_state.pth b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..21cd7e20fe964ff413fbbfb6a56926a4d1cba9d5 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9db1feed4b79d295bea98ef1c6d0460d3d5629aeef288457320524c4d6e8d4 +size 14645 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/scaler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e63f1080947f05d21b414f6505c522632f1fb3b4 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17fdb1c81f165f970be40a992f411120b1d7e42395a5e023781c287e350a1d8 +size 1383 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/scheduler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..56329eb6fc9e8d15870a5c1e548da9a4b89bbbf5 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ce3f949933e5a5e804b3dddd15b47f37ed9e615ee7d9c3f0586a2f62f04a47 +size 1465 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/trainer_state.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..2536d3ad238a80826a5bc77c6638dc81b49a957e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/trainer_state.json @@ -0,0 +1,909 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 12544, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.7827788649706457, + "grad_norm": 1.0486202239990234, + "learning_rate": 4.961328125e-05, + "loss": 1.688448944091797, + "step": 100 + }, + { + "epoch": 1.563600782778865, + "grad_norm": 1.0504835844039917, + "learning_rate": 4.9222656250000004e-05, + "loss": 1.154488754272461, + "step": 200 + }, + { + "epoch": 2.344422700587084, + "grad_norm": 0.8747095465660095, + "learning_rate": 4.883203125000001e-05, + "loss": 1.1290001678466797, + "step": 300 + }, + { + "epoch": 3.1252446183953033, + "grad_norm": 0.8863896131515503, + "learning_rate": 4.844140625e-05, + "loss": 1.1141100311279297, + "step": 400 + }, + { + "epoch": 3.908023483365949, + "grad_norm": 0.8084456920623779, + "learning_rate": 4.8050781250000005e-05, + "loss": 1.1058421325683594, + "step": 500 + }, + { + "epoch": 4.688845401174168, + "grad_norm": 0.9470767974853516, + "learning_rate": 4.766015625000001e-05, + "loss": 1.102329635620117, + "step": 600 + }, + { + "epoch": 5.4696673189823874, + "grad_norm": 0.7827223539352417, + "learning_rate": 4.726953125e-05, + "loss": 1.094461898803711, + "step": 700 + }, + { + "epoch": 6.250489236790607, + "grad_norm": 0.8777554631233215, + "learning_rate": 4.6878906250000005e-05, + "loss": 1.0920853424072265, + "step": 800 + }, + { + "epoch": 7.031311154598826, + "grad_norm": 0.7711532115936279, + "learning_rate": 4.648828125000001e-05, + "loss": 1.0892620086669922, + "step": 900 + }, + { + "epoch": 7.814090019569472, + "grad_norm": 0.831622302532196, + "learning_rate": 4.609765625e-05, + "loss": 1.084198989868164, + "step": 1000 + }, + { + "epoch": 8.594911937377692, + "grad_norm": 0.834387481212616, + "learning_rate": 4.5707031250000005e-05, + "loss": 1.079208755493164, + "step": 1100 + }, + { + "epoch": 9.37573385518591, + "grad_norm": 1.0027215480804443, + "learning_rate": 4.531640625e-05, + "loss": 1.0801444244384766, + "step": 1200 + }, + { + "epoch": 10.156555772994128, + "grad_norm": 0.8628724217414856, + "learning_rate": 4.492578125e-05, + "loss": 1.0787698364257812, + "step": 1300 + }, + { + "epoch": 10.939334637964775, + "grad_norm": 0.8727676868438721, + "learning_rate": 4.4535156250000006e-05, + "loss": 1.0735088348388673, + "step": 1400 + }, + { + "epoch": 11.720156555772995, + "grad_norm": 0.9155942797660828, + "learning_rate": 4.414453125e-05, + "loss": 1.0684223937988282, + "step": 1500 + }, + { + "epoch": 12.500978473581213, + "grad_norm": 0.9530174136161804, + "learning_rate": 4.3753906250000003e-05, + "loss": 1.0664083862304687, + "step": 1600 + }, + { + "epoch": 13.281800391389432, + "grad_norm": 0.8837007880210876, + "learning_rate": 4.3363281250000006e-05, + "loss": 1.0640476989746093, + "step": 1700 + }, + { + "epoch": 14.062622309197652, + "grad_norm": 0.8225986957550049, + "learning_rate": 4.297265625e-05, + "loss": 1.062498550415039, + "step": 1800 + }, + { + "epoch": 14.845401174168298, + "grad_norm": 0.8787109851837158, + "learning_rate": 4.2582031250000004e-05, + "loss": 1.05648681640625, + "step": 1900 + }, + { + "epoch": 15.626223091976517, + "grad_norm": 0.9281523823738098, + "learning_rate": 4.2191406250000006e-05, + "loss": 1.0511688232421874, + "step": 2000 + }, + { + "epoch": 16.407045009784735, + "grad_norm": 0.9042040109634399, + "learning_rate": 4.180078125e-05, + "loss": 1.046303939819336, + "step": 2100 + }, + { + "epoch": 17.187866927592957, + "grad_norm": 1.019979476928711, + "learning_rate": 4.1410156250000004e-05, + "loss": 1.044459991455078, + "step": 2200 + }, + { + "epoch": 17.9706457925636, + "grad_norm": 0.9296092987060547, + "learning_rate": 4.1019531250000006e-05, + "loss": 1.0391932678222657, + "step": 2300 + }, + { + "epoch": 18.75146771037182, + "grad_norm": 0.9988288879394531, + "learning_rate": 4.062890625e-05, + "loss": 1.0261920166015626, + "step": 2400 + }, + { + "epoch": 19.532289628180038, + "grad_norm": 1.1281828880310059, + "learning_rate": 4.0238281250000004e-05, + "loss": 1.0217276000976563, + "step": 2500 + }, + { + "epoch": 20.313111545988257, + "grad_norm": 1.114624261856079, + "learning_rate": 3.984765625000001e-05, + "loss": 1.0104251098632813, + "step": 2600 + }, + { + "epoch": 21.09393346379648, + "grad_norm": 1.0959868431091309, + "learning_rate": 3.945703125e-05, + "loss": 1.0031028747558595, + "step": 2700 + }, + { + "epoch": 21.876712328767123, + "grad_norm": 1.2692209482192993, + "learning_rate": 3.9066406250000005e-05, + "loss": 0.9877436828613281, + "step": 2800 + }, + { + "epoch": 22.65753424657534, + "grad_norm": 1.3036280870437622, + "learning_rate": 3.867578125000001e-05, + "loss": 0.9706366729736328, + "step": 2900 + }, + { + "epoch": 23.438356164383563, + "grad_norm": 1.3872909545898438, + "learning_rate": 3.828515625e-05, + "loss": 0.9575959777832032, + "step": 3000 + }, + { + "epoch": 24.21917808219178, + "grad_norm": 1.5136151313781738, + "learning_rate": 3.7894531250000005e-05, + "loss": 0.941896743774414, + "step": 3100 + }, + { + "epoch": 25.0, + "grad_norm": 1.7240556478500366, + "learning_rate": 3.750390625e-05, + "loss": 0.930921401977539, + "step": 3200 + }, + { + "epoch": 25.782778864970645, + "grad_norm": 1.660912275314331, + "learning_rate": 3.711328125e-05, + "loss": 0.9009783172607422, + "step": 3300 + }, + { + "epoch": 26.563600782778863, + "grad_norm": 1.776151180267334, + "learning_rate": 3.6722656250000005e-05, + "loss": 0.88541748046875, + "step": 3400 + }, + { + "epoch": 27.344422700587085, + "grad_norm": 1.8112819194793701, + "learning_rate": 3.633203125e-05, + "loss": 0.8712809753417968, + "step": 3500 + }, + { + "epoch": 28.125244618395303, + "grad_norm": 1.7442703247070312, + "learning_rate": 3.594140625e-05, + "loss": 0.8555945587158204, + "step": 3600 + }, + { + "epoch": 28.908023483365948, + "grad_norm": 1.874680519104004, + "learning_rate": 3.5550781250000006e-05, + "loss": 0.8342882537841797, + "step": 3700 + }, + { + "epoch": 29.68884540117417, + "grad_norm": 2.0190470218658447, + "learning_rate": 3.516015625e-05, + "loss": 0.8082669067382813, + "step": 3800 + }, + { + "epoch": 30.46966731898239, + "grad_norm": 1.99907648563385, + "learning_rate": 3.4769531250000004e-05, + "loss": 0.79350830078125, + "step": 3900 + }, + { + "epoch": 31.250489236790607, + "grad_norm": 2.004641532897949, + "learning_rate": 3.4378906250000006e-05, + "loss": 0.7786461639404297, + "step": 4000 + }, + { + "epoch": 32.031311154598825, + "grad_norm": 1.8514291048049927, + "learning_rate": 3.398828125e-05, + "loss": 0.7644376373291015, + "step": 4100 + }, + { + "epoch": 32.81409001956947, + "grad_norm": 2.158493757247925, + "learning_rate": 3.3597656250000004e-05, + "loss": 0.7397248840332031, + "step": 4200 + }, + { + "epoch": 33.59491193737769, + "grad_norm": 2.127976417541504, + "learning_rate": 3.3207031250000006e-05, + "loss": 0.7238473510742187, + "step": 4300 + }, + { + "epoch": 34.37573385518591, + "grad_norm": 2.023771047592163, + "learning_rate": 3.281640625e-05, + "loss": 0.7110092163085937, + "step": 4400 + }, + { + "epoch": 35.15655577299413, + "grad_norm": 2.06078839302063, + "learning_rate": 3.2425781250000004e-05, + "loss": 0.6957923126220703, + "step": 4500 + }, + { + "epoch": 35.93933463796478, + "grad_norm": 2.244459867477417, + "learning_rate": 3.2035156250000007e-05, + "loss": 0.6851163482666016, + "step": 4600 + }, + { + "epoch": 36.720156555772995, + "grad_norm": 2.3121111392974854, + "learning_rate": 3.164453125e-05, + "loss": 0.66149658203125, + "step": 4700 + }, + { + "epoch": 37.50097847358121, + "grad_norm": 2.188596248626709, + "learning_rate": 3.1253906250000005e-05, + "loss": 0.6491559600830078, + "step": 4800 + }, + { + "epoch": 38.28180039138943, + "grad_norm": 2.005614995956421, + "learning_rate": 3.086328125e-05, + "loss": 0.6418089294433593, + "step": 4900 + }, + { + "epoch": 39.06262230919765, + "grad_norm": 2.1131582260131836, + "learning_rate": 3.0472656250000003e-05, + "loss": 0.6310436630249023, + "step": 5000 + }, + { + "epoch": 39.845401174168295, + "grad_norm": 2.31669020652771, + "learning_rate": 3.0082031250000005e-05, + "loss": 0.6103257751464843, + "step": 5100 + }, + { + "epoch": 40.62622309197651, + "grad_norm": 2.197002410888672, + "learning_rate": 2.9691406250000004e-05, + "loss": 0.5992939376831055, + "step": 5200 + }, + { + "epoch": 41.40704500978474, + "grad_norm": 2.1487903594970703, + "learning_rate": 2.9300781250000003e-05, + "loss": 0.5904928207397461, + "step": 5300 + }, + { + "epoch": 42.18786692759296, + "grad_norm": 2.05066180229187, + "learning_rate": 2.8910156250000002e-05, + "loss": 0.581017837524414, + "step": 5400 + }, + { + "epoch": 42.9706457925636, + "grad_norm": 2.3271167278289795, + "learning_rate": 2.8519531250000004e-05, + "loss": 0.5724580001831054, + "step": 5500 + }, + { + "epoch": 43.75146771037182, + "grad_norm": 2.2572574615478516, + "learning_rate": 2.8128906250000003e-05, + "loss": 0.5551020050048828, + "step": 5600 + }, + { + "epoch": 44.53228962818004, + "grad_norm": 2.226602792739868, + "learning_rate": 2.7738281250000002e-05, + "loss": 0.5493736267089844, + "step": 5700 + }, + { + "epoch": 45.31311154598826, + "grad_norm": 1.947657585144043, + "learning_rate": 2.7347656250000004e-05, + "loss": 0.5417766189575195, + "step": 5800 + }, + { + "epoch": 46.093933463796475, + "grad_norm": 1.995186686515808, + "learning_rate": 2.6957031250000003e-05, + "loss": 0.5349613189697265, + "step": 5900 + }, + { + "epoch": 46.87671232876713, + "grad_norm": 2.2597129344940186, + "learning_rate": 2.6566406250000002e-05, + "loss": 0.5226405715942383, + "step": 6000 + }, + { + "epoch": 47.657534246575345, + "grad_norm": 2.170502185821533, + "learning_rate": 2.6175781250000005e-05, + "loss": 0.5130897903442383, + "step": 6100 + }, + { + "epoch": 48.43835616438356, + "grad_norm": 2.244462490081787, + "learning_rate": 2.5785156250000004e-05, + "loss": 0.5051753234863281, + "step": 6200 + }, + { + "epoch": 49.21917808219178, + "grad_norm": 2.286914110183716, + "learning_rate": 2.5394531250000003e-05, + "loss": 0.4990710830688477, + "step": 6300 + }, + { + "epoch": 50.0, + "grad_norm": 2.4982612133026123, + "learning_rate": 2.5003906250000002e-05, + "loss": 0.4966748809814453, + "step": 6400 + }, + { + "epoch": 50.782778864970645, + "grad_norm": 2.351532459259033, + "learning_rate": 2.461328125e-05, + "loss": 0.4810691070556641, + "step": 6500 + }, + { + "epoch": 51.56360078277886, + "grad_norm": 2.165419340133667, + "learning_rate": 2.422265625e-05, + "loss": 0.47620841979980466, + "step": 6600 + }, + { + "epoch": 52.34442270058708, + "grad_norm": 2.0557236671447754, + "learning_rate": 2.3832031250000002e-05, + "loss": 0.4726076889038086, + "step": 6700 + }, + { + "epoch": 53.1252446183953, + "grad_norm": 1.9564766883850098, + "learning_rate": 2.344140625e-05, + "loss": 0.4708554458618164, + "step": 6800 + }, + { + "epoch": 53.90802348336595, + "grad_norm": 2.3277177810668945, + "learning_rate": 2.305078125e-05, + "loss": 0.46398677825927737, + "step": 6900 + }, + { + "epoch": 54.68884540117417, + "grad_norm": 2.3035829067230225, + "learning_rate": 2.266015625e-05, + "loss": 0.45168586730957033, + "step": 7000 + }, + { + "epoch": 55.46966731898239, + "grad_norm": 2.039451837539673, + "learning_rate": 2.226953125e-05, + "loss": 0.44671268463134767, + "step": 7100 + }, + { + "epoch": 56.25048923679061, + "grad_norm": 2.2257299423217773, + "learning_rate": 2.187890625e-05, + "loss": 0.4452375793457031, + "step": 7200 + }, + { + "epoch": 57.031311154598825, + "grad_norm": 1.9460525512695312, + "learning_rate": 2.148828125e-05, + "loss": 0.441870231628418, + "step": 7300 + }, + { + "epoch": 57.81409001956947, + "grad_norm": 2.2172210216522217, + "learning_rate": 2.109765625e-05, + "loss": 0.4326821899414062, + "step": 7400 + }, + { + "epoch": 58.59491193737769, + "grad_norm": 2.375434398651123, + "learning_rate": 2.070703125e-05, + "loss": 0.4289337158203125, + "step": 7500 + }, + { + "epoch": 59.37573385518591, + "grad_norm": 1.973957896232605, + "learning_rate": 2.031640625e-05, + "loss": 0.42538455963134764, + "step": 7600 + }, + { + "epoch": 60.15655577299413, + "grad_norm": 2.0541257858276367, + "learning_rate": 1.992578125e-05, + "loss": 0.42150623321533204, + "step": 7700 + }, + { + "epoch": 60.93933463796478, + "grad_norm": 2.2626030445098877, + "learning_rate": 1.953515625e-05, + "loss": 0.4170351791381836, + "step": 7800 + }, + { + "epoch": 61.720156555772995, + "grad_norm": 2.0126707553863525, + "learning_rate": 1.914453125e-05, + "loss": 0.41034427642822263, + "step": 7900 + }, + { + "epoch": 62.50097847358121, + "grad_norm": 2.3015599250793457, + "learning_rate": 1.875390625e-05, + "loss": 0.4078645706176758, + "step": 8000 + }, + { + "epoch": 63.28180039138943, + "grad_norm": 1.946954607963562, + "learning_rate": 1.836328125e-05, + "loss": 0.40318927764892576, + "step": 8100 + }, + { + "epoch": 64.06262230919765, + "grad_norm": 2.108351945877075, + "learning_rate": 1.797265625e-05, + "loss": 0.402923583984375, + "step": 8200 + }, + { + "epoch": 64.8454011741683, + "grad_norm": 2.0268521308898926, + "learning_rate": 1.758203125e-05, + "loss": 0.39771438598632813, + "step": 8300 + }, + { + "epoch": 65.62622309197651, + "grad_norm": 2.0682578086853027, + "learning_rate": 1.719140625e-05, + "loss": 0.39169620513916015, + "step": 8400 + }, + { + "epoch": 66.40704500978474, + "grad_norm": 2.0089261531829834, + "learning_rate": 1.680078125e-05, + "loss": 0.39035537719726565, + "step": 8500 + }, + { + "epoch": 67.18786692759295, + "grad_norm": 1.6829136610031128, + "learning_rate": 1.641015625e-05, + "loss": 0.38773414611816404, + "step": 8600 + }, + { + "epoch": 67.9706457925636, + "grad_norm": 2.221820831298828, + "learning_rate": 1.601953125e-05, + "loss": 0.3859918212890625, + "step": 8700 + }, + { + "epoch": 68.75146771037183, + "grad_norm": 1.769336223602295, + "learning_rate": 1.562890625e-05, + "loss": 0.380072021484375, + "step": 8800 + }, + { + "epoch": 69.53228962818004, + "grad_norm": 2.064134120941162, + "learning_rate": 1.523828125e-05, + "loss": 0.3790831756591797, + "step": 8900 + }, + { + "epoch": 70.31311154598826, + "grad_norm": 1.9138619899749756, + "learning_rate": 1.484765625e-05, + "loss": 0.37655155181884764, + "step": 9000 + }, + { + "epoch": 71.09393346379647, + "grad_norm": 1.683709740638733, + "learning_rate": 1.445703125e-05, + "loss": 0.37561256408691407, + "step": 9100 + }, + { + "epoch": 71.87671232876713, + "grad_norm": 1.792253851890564, + "learning_rate": 1.406640625e-05, + "loss": 0.3719992828369141, + "step": 9200 + }, + { + "epoch": 72.65753424657534, + "grad_norm": 1.7605615854263306, + "learning_rate": 1.3675781249999999e-05, + "loss": 0.3683036804199219, + "step": 9300 + }, + { + "epoch": 73.43835616438356, + "grad_norm": 1.9714428186416626, + "learning_rate": 1.328515625e-05, + "loss": 0.36568996429443357, + "step": 9400 + }, + { + "epoch": 74.21917808219177, + "grad_norm": 1.7406636476516724, + "learning_rate": 1.289453125e-05, + "loss": 0.3651968765258789, + "step": 9500 + }, + { + "epoch": 75.0, + "grad_norm": 2.053438186645508, + "learning_rate": 1.250390625e-05, + "loss": 0.36441463470458985, + "step": 9600 + }, + { + "epoch": 75.78277886497065, + "grad_norm": 1.8560653924942017, + "learning_rate": 1.2113281250000002e-05, + "loss": 0.35981990814208986, + "step": 9700 + }, + { + "epoch": 76.56360078277886, + "grad_norm": 1.8084759712219238, + "learning_rate": 1.172265625e-05, + "loss": 0.35714241027832033, + "step": 9800 + }, + { + "epoch": 77.34442270058709, + "grad_norm": 2.0932719707489014, + "learning_rate": 1.1332031250000001e-05, + "loss": 0.35758853912353517, + "step": 9900 + }, + { + "epoch": 78.1252446183953, + "grad_norm": 2.1276156902313232, + "learning_rate": 1.094140625e-05, + "loss": 0.3567123794555664, + "step": 10000 + }, + { + "epoch": 78.90802348336595, + "grad_norm": 1.6367905139923096, + "learning_rate": 1.0550781250000001e-05, + "loss": 0.3533828353881836, + "step": 10100 + }, + { + "epoch": 79.68884540117416, + "grad_norm": 1.8565430641174316, + "learning_rate": 1.0160156250000002e-05, + "loss": 0.35054325103759765, + "step": 10200 + }, + { + "epoch": 80.46966731898239, + "grad_norm": 1.762800931930542, + "learning_rate": 9.76953125e-06, + "loss": 0.34926509857177734, + "step": 10300 + }, + { + "epoch": 81.2504892367906, + "grad_norm": 1.4440858364105225, + "learning_rate": 9.378906250000001e-06, + "loss": 0.3485040283203125, + "step": 10400 + }, + { + "epoch": 82.03131115459882, + "grad_norm": 1.5824888944625854, + "learning_rate": 8.98828125e-06, + "loss": 0.3475947952270508, + "step": 10500 + }, + { + "epoch": 82.81409001956948, + "grad_norm": 1.6844125986099243, + "learning_rate": 8.597656250000001e-06, + "loss": 0.34544418334960936, + "step": 10600 + }, + { + "epoch": 83.59491193737769, + "grad_norm": 1.8069628477096558, + "learning_rate": 8.207031250000002e-06, + "loss": 0.34289070129394533, + "step": 10700 + }, + { + "epoch": 84.37573385518591, + "grad_norm": 1.3971033096313477, + "learning_rate": 7.81640625e-06, + "loss": 0.34258338928222654, + "step": 10800 + }, + { + "epoch": 85.15655577299412, + "grad_norm": 1.8665785789489746, + "learning_rate": 7.425781250000001e-06, + "loss": 0.341295166015625, + "step": 10900 + }, + { + "epoch": 85.93933463796478, + "grad_norm": 1.7835795879364014, + "learning_rate": 7.035156250000001e-06, + "loss": 0.3404966354370117, + "step": 11000 + }, + { + "epoch": 86.72015655577299, + "grad_norm": 1.6213293075561523, + "learning_rate": 6.644531250000001e-06, + "loss": 0.33715126037597654, + "step": 11100 + }, + { + "epoch": 87.50097847358121, + "grad_norm": 1.774746060371399, + "learning_rate": 6.253906250000001e-06, + "loss": 0.3374959945678711, + "step": 11200 + }, + { + "epoch": 88.28180039138944, + "grad_norm": 1.674729347229004, + "learning_rate": 5.86328125e-06, + "loss": 0.33550899505615234, + "step": 11300 + }, + { + "epoch": 89.06262230919765, + "grad_norm": 1.6939401626586914, + "learning_rate": 5.4726562500000005e-06, + "loss": 0.33601253509521484, + "step": 11400 + }, + { + "epoch": 89.8454011741683, + "grad_norm": 1.7840259075164795, + "learning_rate": 5.08203125e-06, + "loss": 0.3333161926269531, + "step": 11500 + }, + { + "epoch": 90.62622309197651, + "grad_norm": 1.4085773229599, + "learning_rate": 4.69140625e-06, + "loss": 0.33314674377441406, + "step": 11600 + }, + { + "epoch": 91.40704500978474, + "grad_norm": 1.4582897424697876, + "learning_rate": 4.30078125e-06, + "loss": 0.3319340133666992, + "step": 11700 + }, + { + "epoch": 92.18786692759295, + "grad_norm": 1.5548802614212036, + "learning_rate": 3.91015625e-06, + "loss": 0.33092777252197264, + "step": 11800 + }, + { + "epoch": 92.9706457925636, + "grad_norm": 1.6761683225631714, + "learning_rate": 3.51953125e-06, + "loss": 0.33047531127929686, + "step": 11900 + }, + { + "epoch": 93.75146771037183, + "grad_norm": 1.5440400838851929, + "learning_rate": 3.1289062500000002e-06, + "loss": 0.3297533416748047, + "step": 12000 + }, + { + "epoch": 94.53228962818004, + "grad_norm": 1.2982420921325684, + "learning_rate": 2.73828125e-06, + "loss": 0.3282759094238281, + "step": 12100 + }, + { + "epoch": 95.31311154598826, + "grad_norm": 1.843058466911316, + "learning_rate": 2.34765625e-06, + "loss": 0.3285936737060547, + "step": 12200 + }, + { + "epoch": 96.09393346379647, + "grad_norm": 1.498162865638733, + "learning_rate": 1.95703125e-06, + "loss": 0.32765304565429687, + "step": 12300 + }, + { + "epoch": 96.87671232876713, + "grad_norm": 1.4527279138565063, + "learning_rate": 1.56640625e-06, + "loss": 0.32622470855712893, + "step": 12400 + }, + { + "epoch": 97.65753424657534, + "grad_norm": 1.784439206123352, + "learning_rate": 1.1796875e-06, + "loss": 0.3263894271850586, + "step": 12500 + } + ], + "logging_steps": 100, + "max_steps": 12800, + "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": 3271304669036544.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/training_args.bin b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12544/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..42745bb83020717e31ed504b835e2f60232556f7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/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.0.0", + "use_cache": false, + "vocab_size": 195 +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/generation_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/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.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/model.safetensors b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..15f1713fc90f71d55ded049a5a7ae2ab52f8054c --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6cf6dc2dc16910a3d4ec4da106ff171641589e32cda102d89d7126b9aa27452 +size 173867464 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/optimizer.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2002be1b2a3f203ffd5320b80f1f026a5113c8f2 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7aaa690c3869aa973e049f54b34795345254987a0306027abd292c73a62943 +size 347784011 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/rng_state.pth b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b029cfd413e36a3f94f36862a2982274fd44569a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63bfa1d99a59acd56a9f94dab77b83e20407b46287b8cd776d135152d0a26327 +size 14645 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/scaler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..78ab66060e69ab468b700978770f5064b54cdd7d --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25211a8750499ef3bd40e30dca80f05800209074dc11e43b8ea3c7e3c54074b +size 1383 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/scheduler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..99ac977868393d80dd52c71993084d8306e04836 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf63036b2f508ee8661a3843bef70f29ddad956c90f10a7228813818fe78691 +size 1465 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/trainer_state.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b660032a7fb40bdd3c9c7f31d54f77c8d3cdd747 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/trainer_state.json @@ -0,0 +1,916 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.43835616438356, + "eval_steps": 100, + "global_step": 12600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.7827788649706457, + "grad_norm": 1.0486202239990234, + "learning_rate": 4.961328125e-05, + "loss": 1.688448944091797, + "step": 100 + }, + { + "epoch": 1.563600782778865, + "grad_norm": 1.0504835844039917, + "learning_rate": 4.9222656250000004e-05, + "loss": 1.154488754272461, + "step": 200 + }, + { + "epoch": 2.344422700587084, + "grad_norm": 0.8747095465660095, + "learning_rate": 4.883203125000001e-05, + "loss": 1.1290001678466797, + "step": 300 + }, + { + "epoch": 3.1252446183953033, + "grad_norm": 0.8863896131515503, + "learning_rate": 4.844140625e-05, + "loss": 1.1141100311279297, + "step": 400 + }, + { + "epoch": 3.908023483365949, + "grad_norm": 0.8084456920623779, + "learning_rate": 4.8050781250000005e-05, + "loss": 1.1058421325683594, + "step": 500 + }, + { + "epoch": 4.688845401174168, + "grad_norm": 0.9470767974853516, + "learning_rate": 4.766015625000001e-05, + "loss": 1.102329635620117, + "step": 600 + }, + { + "epoch": 5.4696673189823874, + "grad_norm": 0.7827223539352417, + "learning_rate": 4.726953125e-05, + "loss": 1.094461898803711, + "step": 700 + }, + { + "epoch": 6.250489236790607, + "grad_norm": 0.8777554631233215, + "learning_rate": 4.6878906250000005e-05, + "loss": 1.0920853424072265, + "step": 800 + }, + { + "epoch": 7.031311154598826, + "grad_norm": 0.7711532115936279, + "learning_rate": 4.648828125000001e-05, + "loss": 1.0892620086669922, + "step": 900 + }, + { + "epoch": 7.814090019569472, + "grad_norm": 0.831622302532196, + "learning_rate": 4.609765625e-05, + "loss": 1.084198989868164, + "step": 1000 + }, + { + "epoch": 8.594911937377692, + "grad_norm": 0.834387481212616, + "learning_rate": 4.5707031250000005e-05, + "loss": 1.079208755493164, + "step": 1100 + }, + { + "epoch": 9.37573385518591, + "grad_norm": 1.0027215480804443, + "learning_rate": 4.531640625e-05, + "loss": 1.0801444244384766, + "step": 1200 + }, + { + "epoch": 10.156555772994128, + "grad_norm": 0.8628724217414856, + "learning_rate": 4.492578125e-05, + "loss": 1.0787698364257812, + "step": 1300 + }, + { + "epoch": 10.939334637964775, + "grad_norm": 0.8727676868438721, + "learning_rate": 4.4535156250000006e-05, + "loss": 1.0735088348388673, + "step": 1400 + }, + { + "epoch": 11.720156555772995, + "grad_norm": 0.9155942797660828, + "learning_rate": 4.414453125e-05, + "loss": 1.0684223937988282, + "step": 1500 + }, + { + "epoch": 12.500978473581213, + "grad_norm": 0.9530174136161804, + "learning_rate": 4.3753906250000003e-05, + "loss": 1.0664083862304687, + "step": 1600 + }, + { + "epoch": 13.281800391389432, + "grad_norm": 0.8837007880210876, + "learning_rate": 4.3363281250000006e-05, + "loss": 1.0640476989746093, + "step": 1700 + }, + { + "epoch": 14.062622309197652, + "grad_norm": 0.8225986957550049, + "learning_rate": 4.297265625e-05, + "loss": 1.062498550415039, + "step": 1800 + }, + { + "epoch": 14.845401174168298, + "grad_norm": 0.8787109851837158, + "learning_rate": 4.2582031250000004e-05, + "loss": 1.05648681640625, + "step": 1900 + }, + { + "epoch": 15.626223091976517, + "grad_norm": 0.9281523823738098, + "learning_rate": 4.2191406250000006e-05, + "loss": 1.0511688232421874, + "step": 2000 + }, + { + "epoch": 16.407045009784735, + "grad_norm": 0.9042040109634399, + "learning_rate": 4.180078125e-05, + "loss": 1.046303939819336, + "step": 2100 + }, + { + "epoch": 17.187866927592957, + "grad_norm": 1.019979476928711, + "learning_rate": 4.1410156250000004e-05, + "loss": 1.044459991455078, + "step": 2200 + }, + { + "epoch": 17.9706457925636, + "grad_norm": 0.9296092987060547, + "learning_rate": 4.1019531250000006e-05, + "loss": 1.0391932678222657, + "step": 2300 + }, + { + "epoch": 18.75146771037182, + "grad_norm": 0.9988288879394531, + "learning_rate": 4.062890625e-05, + "loss": 1.0261920166015626, + "step": 2400 + }, + { + "epoch": 19.532289628180038, + "grad_norm": 1.1281828880310059, + "learning_rate": 4.0238281250000004e-05, + "loss": 1.0217276000976563, + "step": 2500 + }, + { + "epoch": 20.313111545988257, + "grad_norm": 1.114624261856079, + "learning_rate": 3.984765625000001e-05, + "loss": 1.0104251098632813, + "step": 2600 + }, + { + "epoch": 21.09393346379648, + "grad_norm": 1.0959868431091309, + "learning_rate": 3.945703125e-05, + "loss": 1.0031028747558595, + "step": 2700 + }, + { + "epoch": 21.876712328767123, + "grad_norm": 1.2692209482192993, + "learning_rate": 3.9066406250000005e-05, + "loss": 0.9877436828613281, + "step": 2800 + }, + { + "epoch": 22.65753424657534, + "grad_norm": 1.3036280870437622, + "learning_rate": 3.867578125000001e-05, + "loss": 0.9706366729736328, + "step": 2900 + }, + { + "epoch": 23.438356164383563, + "grad_norm": 1.3872909545898438, + "learning_rate": 3.828515625e-05, + "loss": 0.9575959777832032, + "step": 3000 + }, + { + "epoch": 24.21917808219178, + "grad_norm": 1.5136151313781738, + "learning_rate": 3.7894531250000005e-05, + "loss": 0.941896743774414, + "step": 3100 + }, + { + "epoch": 25.0, + "grad_norm": 1.7240556478500366, + "learning_rate": 3.750390625e-05, + "loss": 0.930921401977539, + "step": 3200 + }, + { + "epoch": 25.782778864970645, + "grad_norm": 1.660912275314331, + "learning_rate": 3.711328125e-05, + "loss": 0.9009783172607422, + "step": 3300 + }, + { + "epoch": 26.563600782778863, + "grad_norm": 1.776151180267334, + "learning_rate": 3.6722656250000005e-05, + "loss": 0.88541748046875, + "step": 3400 + }, + { + "epoch": 27.344422700587085, + "grad_norm": 1.8112819194793701, + "learning_rate": 3.633203125e-05, + "loss": 0.8712809753417968, + "step": 3500 + }, + { + "epoch": 28.125244618395303, + "grad_norm": 1.7442703247070312, + "learning_rate": 3.594140625e-05, + "loss": 0.8555945587158204, + "step": 3600 + }, + { + "epoch": 28.908023483365948, + "grad_norm": 1.874680519104004, + "learning_rate": 3.5550781250000006e-05, + "loss": 0.8342882537841797, + "step": 3700 + }, + { + "epoch": 29.68884540117417, + "grad_norm": 2.0190470218658447, + "learning_rate": 3.516015625e-05, + "loss": 0.8082669067382813, + "step": 3800 + }, + { + "epoch": 30.46966731898239, + "grad_norm": 1.99907648563385, + "learning_rate": 3.4769531250000004e-05, + "loss": 0.79350830078125, + "step": 3900 + }, + { + "epoch": 31.250489236790607, + "grad_norm": 2.004641532897949, + "learning_rate": 3.4378906250000006e-05, + "loss": 0.7786461639404297, + "step": 4000 + }, + { + "epoch": 32.031311154598825, + "grad_norm": 1.8514291048049927, + "learning_rate": 3.398828125e-05, + "loss": 0.7644376373291015, + "step": 4100 + }, + { + "epoch": 32.81409001956947, + "grad_norm": 2.158493757247925, + "learning_rate": 3.3597656250000004e-05, + "loss": 0.7397248840332031, + "step": 4200 + }, + { + "epoch": 33.59491193737769, + "grad_norm": 2.127976417541504, + "learning_rate": 3.3207031250000006e-05, + "loss": 0.7238473510742187, + "step": 4300 + }, + { + "epoch": 34.37573385518591, + "grad_norm": 2.023771047592163, + "learning_rate": 3.281640625e-05, + "loss": 0.7110092163085937, + "step": 4400 + }, + { + "epoch": 35.15655577299413, + "grad_norm": 2.06078839302063, + "learning_rate": 3.2425781250000004e-05, + "loss": 0.6957923126220703, + "step": 4500 + }, + { + "epoch": 35.93933463796478, + "grad_norm": 2.244459867477417, + "learning_rate": 3.2035156250000007e-05, + "loss": 0.6851163482666016, + "step": 4600 + }, + { + "epoch": 36.720156555772995, + "grad_norm": 2.3121111392974854, + "learning_rate": 3.164453125e-05, + "loss": 0.66149658203125, + "step": 4700 + }, + { + "epoch": 37.50097847358121, + "grad_norm": 2.188596248626709, + "learning_rate": 3.1253906250000005e-05, + "loss": 0.6491559600830078, + "step": 4800 + }, + { + "epoch": 38.28180039138943, + "grad_norm": 2.005614995956421, + "learning_rate": 3.086328125e-05, + "loss": 0.6418089294433593, + "step": 4900 + }, + { + "epoch": 39.06262230919765, + "grad_norm": 2.1131582260131836, + "learning_rate": 3.0472656250000003e-05, + "loss": 0.6310436630249023, + "step": 5000 + }, + { + "epoch": 39.845401174168295, + "grad_norm": 2.31669020652771, + "learning_rate": 3.0082031250000005e-05, + "loss": 0.6103257751464843, + "step": 5100 + }, + { + "epoch": 40.62622309197651, + "grad_norm": 2.197002410888672, + "learning_rate": 2.9691406250000004e-05, + "loss": 0.5992939376831055, + "step": 5200 + }, + { + "epoch": 41.40704500978474, + "grad_norm": 2.1487903594970703, + "learning_rate": 2.9300781250000003e-05, + "loss": 0.5904928207397461, + "step": 5300 + }, + { + "epoch": 42.18786692759296, + "grad_norm": 2.05066180229187, + "learning_rate": 2.8910156250000002e-05, + "loss": 0.581017837524414, + "step": 5400 + }, + { + "epoch": 42.9706457925636, + "grad_norm": 2.3271167278289795, + "learning_rate": 2.8519531250000004e-05, + "loss": 0.5724580001831054, + "step": 5500 + }, + { + "epoch": 43.75146771037182, + "grad_norm": 2.2572574615478516, + "learning_rate": 2.8128906250000003e-05, + "loss": 0.5551020050048828, + "step": 5600 + }, + { + "epoch": 44.53228962818004, + "grad_norm": 2.226602792739868, + "learning_rate": 2.7738281250000002e-05, + "loss": 0.5493736267089844, + "step": 5700 + }, + { + "epoch": 45.31311154598826, + "grad_norm": 1.947657585144043, + "learning_rate": 2.7347656250000004e-05, + "loss": 0.5417766189575195, + "step": 5800 + }, + { + "epoch": 46.093933463796475, + "grad_norm": 1.995186686515808, + "learning_rate": 2.6957031250000003e-05, + "loss": 0.5349613189697265, + "step": 5900 + }, + { + "epoch": 46.87671232876713, + "grad_norm": 2.2597129344940186, + "learning_rate": 2.6566406250000002e-05, + "loss": 0.5226405715942383, + "step": 6000 + }, + { + "epoch": 47.657534246575345, + "grad_norm": 2.170502185821533, + "learning_rate": 2.6175781250000005e-05, + "loss": 0.5130897903442383, + "step": 6100 + }, + { + "epoch": 48.43835616438356, + "grad_norm": 2.244462490081787, + "learning_rate": 2.5785156250000004e-05, + "loss": 0.5051753234863281, + "step": 6200 + }, + { + "epoch": 49.21917808219178, + "grad_norm": 2.286914110183716, + "learning_rate": 2.5394531250000003e-05, + "loss": 0.4990710830688477, + "step": 6300 + }, + { + "epoch": 50.0, + "grad_norm": 2.4982612133026123, + "learning_rate": 2.5003906250000002e-05, + "loss": 0.4966748809814453, + "step": 6400 + }, + { + "epoch": 50.782778864970645, + "grad_norm": 2.351532459259033, + "learning_rate": 2.461328125e-05, + "loss": 0.4810691070556641, + "step": 6500 + }, + { + "epoch": 51.56360078277886, + "grad_norm": 2.165419340133667, + "learning_rate": 2.422265625e-05, + "loss": 0.47620841979980466, + "step": 6600 + }, + { + "epoch": 52.34442270058708, + "grad_norm": 2.0557236671447754, + "learning_rate": 2.3832031250000002e-05, + "loss": 0.4726076889038086, + "step": 6700 + }, + { + "epoch": 53.1252446183953, + "grad_norm": 1.9564766883850098, + "learning_rate": 2.344140625e-05, + "loss": 0.4708554458618164, + "step": 6800 + }, + { + "epoch": 53.90802348336595, + "grad_norm": 2.3277177810668945, + "learning_rate": 2.305078125e-05, + "loss": 0.46398677825927737, + "step": 6900 + }, + { + "epoch": 54.68884540117417, + "grad_norm": 2.3035829067230225, + "learning_rate": 2.266015625e-05, + "loss": 0.45168586730957033, + "step": 7000 + }, + { + "epoch": 55.46966731898239, + "grad_norm": 2.039451837539673, + "learning_rate": 2.226953125e-05, + "loss": 0.44671268463134767, + "step": 7100 + }, + { + "epoch": 56.25048923679061, + "grad_norm": 2.2257299423217773, + "learning_rate": 2.187890625e-05, + "loss": 0.4452375793457031, + "step": 7200 + }, + { + "epoch": 57.031311154598825, + "grad_norm": 1.9460525512695312, + "learning_rate": 2.148828125e-05, + "loss": 0.441870231628418, + "step": 7300 + }, + { + "epoch": 57.81409001956947, + "grad_norm": 2.2172210216522217, + "learning_rate": 2.109765625e-05, + "loss": 0.4326821899414062, + "step": 7400 + }, + { + "epoch": 58.59491193737769, + "grad_norm": 2.375434398651123, + "learning_rate": 2.070703125e-05, + "loss": 0.4289337158203125, + "step": 7500 + }, + { + "epoch": 59.37573385518591, + "grad_norm": 1.973957896232605, + "learning_rate": 2.031640625e-05, + "loss": 0.42538455963134764, + "step": 7600 + }, + { + "epoch": 60.15655577299413, + "grad_norm": 2.0541257858276367, + "learning_rate": 1.992578125e-05, + "loss": 0.42150623321533204, + "step": 7700 + }, + { + "epoch": 60.93933463796478, + "grad_norm": 2.2626030445098877, + "learning_rate": 1.953515625e-05, + "loss": 0.4170351791381836, + "step": 7800 + }, + { + "epoch": 61.720156555772995, + "grad_norm": 2.0126707553863525, + "learning_rate": 1.914453125e-05, + "loss": 0.41034427642822263, + "step": 7900 + }, + { + "epoch": 62.50097847358121, + "grad_norm": 2.3015599250793457, + "learning_rate": 1.875390625e-05, + "loss": 0.4078645706176758, + "step": 8000 + }, + { + "epoch": 63.28180039138943, + "grad_norm": 1.946954607963562, + "learning_rate": 1.836328125e-05, + "loss": 0.40318927764892576, + "step": 8100 + }, + { + "epoch": 64.06262230919765, + "grad_norm": 2.108351945877075, + "learning_rate": 1.797265625e-05, + "loss": 0.402923583984375, + "step": 8200 + }, + { + "epoch": 64.8454011741683, + "grad_norm": 2.0268521308898926, + "learning_rate": 1.758203125e-05, + "loss": 0.39771438598632813, + "step": 8300 + }, + { + "epoch": 65.62622309197651, + "grad_norm": 2.0682578086853027, + "learning_rate": 1.719140625e-05, + "loss": 0.39169620513916015, + "step": 8400 + }, + { + "epoch": 66.40704500978474, + "grad_norm": 2.0089261531829834, + "learning_rate": 1.680078125e-05, + "loss": 0.39035537719726565, + "step": 8500 + }, + { + "epoch": 67.18786692759295, + "grad_norm": 1.6829136610031128, + "learning_rate": 1.641015625e-05, + "loss": 0.38773414611816404, + "step": 8600 + }, + { + "epoch": 67.9706457925636, + "grad_norm": 2.221820831298828, + "learning_rate": 1.601953125e-05, + "loss": 0.3859918212890625, + "step": 8700 + }, + { + "epoch": 68.75146771037183, + "grad_norm": 1.769336223602295, + "learning_rate": 1.562890625e-05, + "loss": 0.380072021484375, + "step": 8800 + }, + { + "epoch": 69.53228962818004, + "grad_norm": 2.064134120941162, + "learning_rate": 1.523828125e-05, + "loss": 0.3790831756591797, + "step": 8900 + }, + { + "epoch": 70.31311154598826, + "grad_norm": 1.9138619899749756, + "learning_rate": 1.484765625e-05, + "loss": 0.37655155181884764, + "step": 9000 + }, + { + "epoch": 71.09393346379647, + "grad_norm": 1.683709740638733, + "learning_rate": 1.445703125e-05, + "loss": 0.37561256408691407, + "step": 9100 + }, + { + "epoch": 71.87671232876713, + "grad_norm": 1.792253851890564, + "learning_rate": 1.406640625e-05, + "loss": 0.3719992828369141, + "step": 9200 + }, + { + "epoch": 72.65753424657534, + "grad_norm": 1.7605615854263306, + "learning_rate": 1.3675781249999999e-05, + "loss": 0.3683036804199219, + "step": 9300 + }, + { + "epoch": 73.43835616438356, + "grad_norm": 1.9714428186416626, + "learning_rate": 1.328515625e-05, + "loss": 0.36568996429443357, + "step": 9400 + }, + { + "epoch": 74.21917808219177, + "grad_norm": 1.7406636476516724, + "learning_rate": 1.289453125e-05, + "loss": 0.3651968765258789, + "step": 9500 + }, + { + "epoch": 75.0, + "grad_norm": 2.053438186645508, + "learning_rate": 1.250390625e-05, + "loss": 0.36441463470458985, + "step": 9600 + }, + { + "epoch": 75.78277886497065, + "grad_norm": 1.8560653924942017, + "learning_rate": 1.2113281250000002e-05, + "loss": 0.35981990814208986, + "step": 9700 + }, + { + "epoch": 76.56360078277886, + "grad_norm": 1.8084759712219238, + "learning_rate": 1.172265625e-05, + "loss": 0.35714241027832033, + "step": 9800 + }, + { + "epoch": 77.34442270058709, + "grad_norm": 2.0932719707489014, + "learning_rate": 1.1332031250000001e-05, + "loss": 0.35758853912353517, + "step": 9900 + }, + { + "epoch": 78.1252446183953, + "grad_norm": 2.1276156902313232, + "learning_rate": 1.094140625e-05, + "loss": 0.3567123794555664, + "step": 10000 + }, + { + "epoch": 78.90802348336595, + "grad_norm": 1.6367905139923096, + "learning_rate": 1.0550781250000001e-05, + "loss": 0.3533828353881836, + "step": 10100 + }, + { + "epoch": 79.68884540117416, + "grad_norm": 1.8565430641174316, + "learning_rate": 1.0160156250000002e-05, + "loss": 0.35054325103759765, + "step": 10200 + }, + { + "epoch": 80.46966731898239, + "grad_norm": 1.762800931930542, + "learning_rate": 9.76953125e-06, + "loss": 0.34926509857177734, + "step": 10300 + }, + { + "epoch": 81.2504892367906, + "grad_norm": 1.4440858364105225, + "learning_rate": 9.378906250000001e-06, + "loss": 0.3485040283203125, + "step": 10400 + }, + { + "epoch": 82.03131115459882, + "grad_norm": 1.5824888944625854, + "learning_rate": 8.98828125e-06, + "loss": 0.3475947952270508, + "step": 10500 + }, + { + "epoch": 82.81409001956948, + "grad_norm": 1.6844125986099243, + "learning_rate": 8.597656250000001e-06, + "loss": 0.34544418334960936, + "step": 10600 + }, + { + "epoch": 83.59491193737769, + "grad_norm": 1.8069628477096558, + "learning_rate": 8.207031250000002e-06, + "loss": 0.34289070129394533, + "step": 10700 + }, + { + "epoch": 84.37573385518591, + "grad_norm": 1.3971033096313477, + "learning_rate": 7.81640625e-06, + "loss": 0.34258338928222654, + "step": 10800 + }, + { + "epoch": 85.15655577299412, + "grad_norm": 1.8665785789489746, + "learning_rate": 7.425781250000001e-06, + "loss": 0.341295166015625, + "step": 10900 + }, + { + "epoch": 85.93933463796478, + "grad_norm": 1.7835795879364014, + "learning_rate": 7.035156250000001e-06, + "loss": 0.3404966354370117, + "step": 11000 + }, + { + "epoch": 86.72015655577299, + "grad_norm": 1.6213293075561523, + "learning_rate": 6.644531250000001e-06, + "loss": 0.33715126037597654, + "step": 11100 + }, + { + "epoch": 87.50097847358121, + "grad_norm": 1.774746060371399, + "learning_rate": 6.253906250000001e-06, + "loss": 0.3374959945678711, + "step": 11200 + }, + { + "epoch": 88.28180039138944, + "grad_norm": 1.674729347229004, + "learning_rate": 5.86328125e-06, + "loss": 0.33550899505615234, + "step": 11300 + }, + { + "epoch": 89.06262230919765, + "grad_norm": 1.6939401626586914, + "learning_rate": 5.4726562500000005e-06, + "loss": 0.33601253509521484, + "step": 11400 + }, + { + "epoch": 89.8454011741683, + "grad_norm": 1.7840259075164795, + "learning_rate": 5.08203125e-06, + "loss": 0.3333161926269531, + "step": 11500 + }, + { + "epoch": 90.62622309197651, + "grad_norm": 1.4085773229599, + "learning_rate": 4.69140625e-06, + "loss": 0.33314674377441406, + "step": 11600 + }, + { + "epoch": 91.40704500978474, + "grad_norm": 1.4582897424697876, + "learning_rate": 4.30078125e-06, + "loss": 0.3319340133666992, + "step": 11700 + }, + { + "epoch": 92.18786692759295, + "grad_norm": 1.5548802614212036, + "learning_rate": 3.91015625e-06, + "loss": 0.33092777252197264, + "step": 11800 + }, + { + "epoch": 92.9706457925636, + "grad_norm": 1.6761683225631714, + "learning_rate": 3.51953125e-06, + "loss": 0.33047531127929686, + "step": 11900 + }, + { + "epoch": 93.75146771037183, + "grad_norm": 1.5440400838851929, + "learning_rate": 3.1289062500000002e-06, + "loss": 0.3297533416748047, + "step": 12000 + }, + { + "epoch": 94.53228962818004, + "grad_norm": 1.2982420921325684, + "learning_rate": 2.73828125e-06, + "loss": 0.3282759094238281, + "step": 12100 + }, + { + "epoch": 95.31311154598826, + "grad_norm": 1.843058466911316, + "learning_rate": 2.34765625e-06, + "loss": 0.3285936737060547, + "step": 12200 + }, + { + "epoch": 96.09393346379647, + "grad_norm": 1.498162865638733, + "learning_rate": 1.95703125e-06, + "loss": 0.32765304565429687, + "step": 12300 + }, + { + "epoch": 96.87671232876713, + "grad_norm": 1.4527279138565063, + "learning_rate": 1.56640625e-06, + "loss": 0.32622470855712893, + "step": 12400 + }, + { + "epoch": 97.65753424657534, + "grad_norm": 1.784439206123352, + "learning_rate": 1.1796875e-06, + "loss": 0.3263894271850586, + "step": 12500 + }, + { + "epoch": 98.43835616438356, + "grad_norm": 1.4308785200119019, + "learning_rate": 7.890625e-07, + "loss": 0.32631328582763675, + "step": 12600 + } + ], + "logging_steps": 100, + "max_steps": 12800, + "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": 3285937287069696.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/training_args.bin b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/config.json new file mode 100644 index 0000000000000000000000000000000000000000..42745bb83020717e31ed504b835e2f60232556f7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/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.0.0", + "use_cache": false, + "vocab_size": 195 +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/generation_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/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.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/model.safetensors b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4d82d8256d5691514afc95db844dcbf9eed5fe4c --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aefef6fb0517c4ea67e796b1dc3e166abf111af4bd05b361051915db7c741650 +size 173867464 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/optimizer.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..fb8dc0ef9130437a78ac0c1c6ac45a8958105634 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a808a581c7bc6b5b35daf0d9d6b208c10b734cbd1db6d3384b35c0b34ef7d1 +size 347784011 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/rng_state.pth b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..042ff7dc912f881cb4537d2bfb0f96b9204d06f9 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de651cba34efff3a1e02d1d13d3dcfc68eeabf88562e8b3b6f95bcf63f0acbe5 +size 14645 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/scaler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1c712a42b6227f869849ef00cf0ad2a81da0b1fb --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8ae66a94a31b08337e8eb0fe39237a015ca1e2e7ea7eac428d529aa71ab64f +size 1383 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/scheduler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..112cd3f305c76516f61f1d4e0754f7e36cc7a5f1 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a87058d71684eb8e1eedf53cea5af3ca422cc54d2251c50c2c3fe19a49f744 +size 1465 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/trainer_state.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..fed53f2994c9931be50573332be217acb42a2806 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/trainer_state.json @@ -0,0 +1,916 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 12672, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.7827788649706457, + "grad_norm": 1.0486202239990234, + "learning_rate": 4.961328125e-05, + "loss": 1.688448944091797, + "step": 100 + }, + { + "epoch": 1.563600782778865, + "grad_norm": 1.0504835844039917, + "learning_rate": 4.9222656250000004e-05, + "loss": 1.154488754272461, + "step": 200 + }, + { + "epoch": 2.344422700587084, + "grad_norm": 0.8747095465660095, + "learning_rate": 4.883203125000001e-05, + "loss": 1.1290001678466797, + "step": 300 + }, + { + "epoch": 3.1252446183953033, + "grad_norm": 0.8863896131515503, + "learning_rate": 4.844140625e-05, + "loss": 1.1141100311279297, + "step": 400 + }, + { + "epoch": 3.908023483365949, + "grad_norm": 0.8084456920623779, + "learning_rate": 4.8050781250000005e-05, + "loss": 1.1058421325683594, + "step": 500 + }, + { + "epoch": 4.688845401174168, + "grad_norm": 0.9470767974853516, + "learning_rate": 4.766015625000001e-05, + "loss": 1.102329635620117, + "step": 600 + }, + { + "epoch": 5.4696673189823874, + "grad_norm": 0.7827223539352417, + "learning_rate": 4.726953125e-05, + "loss": 1.094461898803711, + "step": 700 + }, + { + "epoch": 6.250489236790607, + "grad_norm": 0.8777554631233215, + "learning_rate": 4.6878906250000005e-05, + "loss": 1.0920853424072265, + "step": 800 + }, + { + "epoch": 7.031311154598826, + "grad_norm": 0.7711532115936279, + "learning_rate": 4.648828125000001e-05, + "loss": 1.0892620086669922, + "step": 900 + }, + { + "epoch": 7.814090019569472, + "grad_norm": 0.831622302532196, + "learning_rate": 4.609765625e-05, + "loss": 1.084198989868164, + "step": 1000 + }, + { + "epoch": 8.594911937377692, + "grad_norm": 0.834387481212616, + "learning_rate": 4.5707031250000005e-05, + "loss": 1.079208755493164, + "step": 1100 + }, + { + "epoch": 9.37573385518591, + "grad_norm": 1.0027215480804443, + "learning_rate": 4.531640625e-05, + "loss": 1.0801444244384766, + "step": 1200 + }, + { + "epoch": 10.156555772994128, + "grad_norm": 0.8628724217414856, + "learning_rate": 4.492578125e-05, + "loss": 1.0787698364257812, + "step": 1300 + }, + { + "epoch": 10.939334637964775, + "grad_norm": 0.8727676868438721, + "learning_rate": 4.4535156250000006e-05, + "loss": 1.0735088348388673, + "step": 1400 + }, + { + "epoch": 11.720156555772995, + "grad_norm": 0.9155942797660828, + "learning_rate": 4.414453125e-05, + "loss": 1.0684223937988282, + "step": 1500 + }, + { + "epoch": 12.500978473581213, + "grad_norm": 0.9530174136161804, + "learning_rate": 4.3753906250000003e-05, + "loss": 1.0664083862304687, + "step": 1600 + }, + { + "epoch": 13.281800391389432, + "grad_norm": 0.8837007880210876, + "learning_rate": 4.3363281250000006e-05, + "loss": 1.0640476989746093, + "step": 1700 + }, + { + "epoch": 14.062622309197652, + "grad_norm": 0.8225986957550049, + "learning_rate": 4.297265625e-05, + "loss": 1.062498550415039, + "step": 1800 + }, + { + "epoch": 14.845401174168298, + "grad_norm": 0.8787109851837158, + "learning_rate": 4.2582031250000004e-05, + "loss": 1.05648681640625, + "step": 1900 + }, + { + "epoch": 15.626223091976517, + "grad_norm": 0.9281523823738098, + "learning_rate": 4.2191406250000006e-05, + "loss": 1.0511688232421874, + "step": 2000 + }, + { + "epoch": 16.407045009784735, + "grad_norm": 0.9042040109634399, + "learning_rate": 4.180078125e-05, + "loss": 1.046303939819336, + "step": 2100 + }, + { + "epoch": 17.187866927592957, + "grad_norm": 1.019979476928711, + "learning_rate": 4.1410156250000004e-05, + "loss": 1.044459991455078, + "step": 2200 + }, + { + "epoch": 17.9706457925636, + "grad_norm": 0.9296092987060547, + "learning_rate": 4.1019531250000006e-05, + "loss": 1.0391932678222657, + "step": 2300 + }, + { + "epoch": 18.75146771037182, + "grad_norm": 0.9988288879394531, + "learning_rate": 4.062890625e-05, + "loss": 1.0261920166015626, + "step": 2400 + }, + { + "epoch": 19.532289628180038, + "grad_norm": 1.1281828880310059, + "learning_rate": 4.0238281250000004e-05, + "loss": 1.0217276000976563, + "step": 2500 + }, + { + "epoch": 20.313111545988257, + "grad_norm": 1.114624261856079, + "learning_rate": 3.984765625000001e-05, + "loss": 1.0104251098632813, + "step": 2600 + }, + { + "epoch": 21.09393346379648, + "grad_norm": 1.0959868431091309, + "learning_rate": 3.945703125e-05, + "loss": 1.0031028747558595, + "step": 2700 + }, + { + "epoch": 21.876712328767123, + "grad_norm": 1.2692209482192993, + "learning_rate": 3.9066406250000005e-05, + "loss": 0.9877436828613281, + "step": 2800 + }, + { + "epoch": 22.65753424657534, + "grad_norm": 1.3036280870437622, + "learning_rate": 3.867578125000001e-05, + "loss": 0.9706366729736328, + "step": 2900 + }, + { + "epoch": 23.438356164383563, + "grad_norm": 1.3872909545898438, + "learning_rate": 3.828515625e-05, + "loss": 0.9575959777832032, + "step": 3000 + }, + { + "epoch": 24.21917808219178, + "grad_norm": 1.5136151313781738, + "learning_rate": 3.7894531250000005e-05, + "loss": 0.941896743774414, + "step": 3100 + }, + { + "epoch": 25.0, + "grad_norm": 1.7240556478500366, + "learning_rate": 3.750390625e-05, + "loss": 0.930921401977539, + "step": 3200 + }, + { + "epoch": 25.782778864970645, + "grad_norm": 1.660912275314331, + "learning_rate": 3.711328125e-05, + "loss": 0.9009783172607422, + "step": 3300 + }, + { + "epoch": 26.563600782778863, + "grad_norm": 1.776151180267334, + "learning_rate": 3.6722656250000005e-05, + "loss": 0.88541748046875, + "step": 3400 + }, + { + "epoch": 27.344422700587085, + "grad_norm": 1.8112819194793701, + "learning_rate": 3.633203125e-05, + "loss": 0.8712809753417968, + "step": 3500 + }, + { + "epoch": 28.125244618395303, + "grad_norm": 1.7442703247070312, + "learning_rate": 3.594140625e-05, + "loss": 0.8555945587158204, + "step": 3600 + }, + { + "epoch": 28.908023483365948, + "grad_norm": 1.874680519104004, + "learning_rate": 3.5550781250000006e-05, + "loss": 0.8342882537841797, + "step": 3700 + }, + { + "epoch": 29.68884540117417, + "grad_norm": 2.0190470218658447, + "learning_rate": 3.516015625e-05, + "loss": 0.8082669067382813, + "step": 3800 + }, + { + "epoch": 30.46966731898239, + "grad_norm": 1.99907648563385, + "learning_rate": 3.4769531250000004e-05, + "loss": 0.79350830078125, + "step": 3900 + }, + { + "epoch": 31.250489236790607, + "grad_norm": 2.004641532897949, + "learning_rate": 3.4378906250000006e-05, + "loss": 0.7786461639404297, + "step": 4000 + }, + { + "epoch": 32.031311154598825, + "grad_norm": 1.8514291048049927, + "learning_rate": 3.398828125e-05, + "loss": 0.7644376373291015, + "step": 4100 + }, + { + "epoch": 32.81409001956947, + "grad_norm": 2.158493757247925, + "learning_rate": 3.3597656250000004e-05, + "loss": 0.7397248840332031, + "step": 4200 + }, + { + "epoch": 33.59491193737769, + "grad_norm": 2.127976417541504, + "learning_rate": 3.3207031250000006e-05, + "loss": 0.7238473510742187, + "step": 4300 + }, + { + "epoch": 34.37573385518591, + "grad_norm": 2.023771047592163, + "learning_rate": 3.281640625e-05, + "loss": 0.7110092163085937, + "step": 4400 + }, + { + "epoch": 35.15655577299413, + "grad_norm": 2.06078839302063, + "learning_rate": 3.2425781250000004e-05, + "loss": 0.6957923126220703, + "step": 4500 + }, + { + "epoch": 35.93933463796478, + "grad_norm": 2.244459867477417, + "learning_rate": 3.2035156250000007e-05, + "loss": 0.6851163482666016, + "step": 4600 + }, + { + "epoch": 36.720156555772995, + "grad_norm": 2.3121111392974854, + "learning_rate": 3.164453125e-05, + "loss": 0.66149658203125, + "step": 4700 + }, + { + "epoch": 37.50097847358121, + "grad_norm": 2.188596248626709, + "learning_rate": 3.1253906250000005e-05, + "loss": 0.6491559600830078, + "step": 4800 + }, + { + "epoch": 38.28180039138943, + "grad_norm": 2.005614995956421, + "learning_rate": 3.086328125e-05, + "loss": 0.6418089294433593, + "step": 4900 + }, + { + "epoch": 39.06262230919765, + "grad_norm": 2.1131582260131836, + "learning_rate": 3.0472656250000003e-05, + "loss": 0.6310436630249023, + "step": 5000 + }, + { + "epoch": 39.845401174168295, + "grad_norm": 2.31669020652771, + "learning_rate": 3.0082031250000005e-05, + "loss": 0.6103257751464843, + "step": 5100 + }, + { + "epoch": 40.62622309197651, + "grad_norm": 2.197002410888672, + "learning_rate": 2.9691406250000004e-05, + "loss": 0.5992939376831055, + "step": 5200 + }, + { + "epoch": 41.40704500978474, + "grad_norm": 2.1487903594970703, + "learning_rate": 2.9300781250000003e-05, + "loss": 0.5904928207397461, + "step": 5300 + }, + { + "epoch": 42.18786692759296, + "grad_norm": 2.05066180229187, + "learning_rate": 2.8910156250000002e-05, + "loss": 0.581017837524414, + "step": 5400 + }, + { + "epoch": 42.9706457925636, + "grad_norm": 2.3271167278289795, + "learning_rate": 2.8519531250000004e-05, + "loss": 0.5724580001831054, + "step": 5500 + }, + { + "epoch": 43.75146771037182, + "grad_norm": 2.2572574615478516, + "learning_rate": 2.8128906250000003e-05, + "loss": 0.5551020050048828, + "step": 5600 + }, + { + "epoch": 44.53228962818004, + "grad_norm": 2.226602792739868, + "learning_rate": 2.7738281250000002e-05, + "loss": 0.5493736267089844, + "step": 5700 + }, + { + "epoch": 45.31311154598826, + "grad_norm": 1.947657585144043, + "learning_rate": 2.7347656250000004e-05, + "loss": 0.5417766189575195, + "step": 5800 + }, + { + "epoch": 46.093933463796475, + "grad_norm": 1.995186686515808, + "learning_rate": 2.6957031250000003e-05, + "loss": 0.5349613189697265, + "step": 5900 + }, + { + "epoch": 46.87671232876713, + "grad_norm": 2.2597129344940186, + "learning_rate": 2.6566406250000002e-05, + "loss": 0.5226405715942383, + "step": 6000 + }, + { + "epoch": 47.657534246575345, + "grad_norm": 2.170502185821533, + "learning_rate": 2.6175781250000005e-05, + "loss": 0.5130897903442383, + "step": 6100 + }, + { + "epoch": 48.43835616438356, + "grad_norm": 2.244462490081787, + "learning_rate": 2.5785156250000004e-05, + "loss": 0.5051753234863281, + "step": 6200 + }, + { + "epoch": 49.21917808219178, + "grad_norm": 2.286914110183716, + "learning_rate": 2.5394531250000003e-05, + "loss": 0.4990710830688477, + "step": 6300 + }, + { + "epoch": 50.0, + "grad_norm": 2.4982612133026123, + "learning_rate": 2.5003906250000002e-05, + "loss": 0.4966748809814453, + "step": 6400 + }, + { + "epoch": 50.782778864970645, + "grad_norm": 2.351532459259033, + "learning_rate": 2.461328125e-05, + "loss": 0.4810691070556641, + "step": 6500 + }, + { + "epoch": 51.56360078277886, + "grad_norm": 2.165419340133667, + "learning_rate": 2.422265625e-05, + "loss": 0.47620841979980466, + "step": 6600 + }, + { + "epoch": 52.34442270058708, + "grad_norm": 2.0557236671447754, + "learning_rate": 2.3832031250000002e-05, + "loss": 0.4726076889038086, + "step": 6700 + }, + { + "epoch": 53.1252446183953, + "grad_norm": 1.9564766883850098, + "learning_rate": 2.344140625e-05, + "loss": 0.4708554458618164, + "step": 6800 + }, + { + "epoch": 53.90802348336595, + "grad_norm": 2.3277177810668945, + "learning_rate": 2.305078125e-05, + "loss": 0.46398677825927737, + "step": 6900 + }, + { + "epoch": 54.68884540117417, + "grad_norm": 2.3035829067230225, + "learning_rate": 2.266015625e-05, + "loss": 0.45168586730957033, + "step": 7000 + }, + { + "epoch": 55.46966731898239, + "grad_norm": 2.039451837539673, + "learning_rate": 2.226953125e-05, + "loss": 0.44671268463134767, + "step": 7100 + }, + { + "epoch": 56.25048923679061, + "grad_norm": 2.2257299423217773, + "learning_rate": 2.187890625e-05, + "loss": 0.4452375793457031, + "step": 7200 + }, + { + "epoch": 57.031311154598825, + "grad_norm": 1.9460525512695312, + "learning_rate": 2.148828125e-05, + "loss": 0.441870231628418, + "step": 7300 + }, + { + "epoch": 57.81409001956947, + "grad_norm": 2.2172210216522217, + "learning_rate": 2.109765625e-05, + "loss": 0.4326821899414062, + "step": 7400 + }, + { + "epoch": 58.59491193737769, + "grad_norm": 2.375434398651123, + "learning_rate": 2.070703125e-05, + "loss": 0.4289337158203125, + "step": 7500 + }, + { + "epoch": 59.37573385518591, + "grad_norm": 1.973957896232605, + "learning_rate": 2.031640625e-05, + "loss": 0.42538455963134764, + "step": 7600 + }, + { + "epoch": 60.15655577299413, + "grad_norm": 2.0541257858276367, + "learning_rate": 1.992578125e-05, + "loss": 0.42150623321533204, + "step": 7700 + }, + { + "epoch": 60.93933463796478, + "grad_norm": 2.2626030445098877, + "learning_rate": 1.953515625e-05, + "loss": 0.4170351791381836, + "step": 7800 + }, + { + "epoch": 61.720156555772995, + "grad_norm": 2.0126707553863525, + "learning_rate": 1.914453125e-05, + "loss": 0.41034427642822263, + "step": 7900 + }, + { + "epoch": 62.50097847358121, + "grad_norm": 2.3015599250793457, + "learning_rate": 1.875390625e-05, + "loss": 0.4078645706176758, + "step": 8000 + }, + { + "epoch": 63.28180039138943, + "grad_norm": 1.946954607963562, + "learning_rate": 1.836328125e-05, + "loss": 0.40318927764892576, + "step": 8100 + }, + { + "epoch": 64.06262230919765, + "grad_norm": 2.108351945877075, + "learning_rate": 1.797265625e-05, + "loss": 0.402923583984375, + "step": 8200 + }, + { + "epoch": 64.8454011741683, + "grad_norm": 2.0268521308898926, + "learning_rate": 1.758203125e-05, + "loss": 0.39771438598632813, + "step": 8300 + }, + { + "epoch": 65.62622309197651, + "grad_norm": 2.0682578086853027, + "learning_rate": 1.719140625e-05, + "loss": 0.39169620513916015, + "step": 8400 + }, + { + "epoch": 66.40704500978474, + "grad_norm": 2.0089261531829834, + "learning_rate": 1.680078125e-05, + "loss": 0.39035537719726565, + "step": 8500 + }, + { + "epoch": 67.18786692759295, + "grad_norm": 1.6829136610031128, + "learning_rate": 1.641015625e-05, + "loss": 0.38773414611816404, + "step": 8600 + }, + { + "epoch": 67.9706457925636, + "grad_norm": 2.221820831298828, + "learning_rate": 1.601953125e-05, + "loss": 0.3859918212890625, + "step": 8700 + }, + { + "epoch": 68.75146771037183, + "grad_norm": 1.769336223602295, + "learning_rate": 1.562890625e-05, + "loss": 0.380072021484375, + "step": 8800 + }, + { + "epoch": 69.53228962818004, + "grad_norm": 2.064134120941162, + "learning_rate": 1.523828125e-05, + "loss": 0.3790831756591797, + "step": 8900 + }, + { + "epoch": 70.31311154598826, + "grad_norm": 1.9138619899749756, + "learning_rate": 1.484765625e-05, + "loss": 0.37655155181884764, + "step": 9000 + }, + { + "epoch": 71.09393346379647, + "grad_norm": 1.683709740638733, + "learning_rate": 1.445703125e-05, + "loss": 0.37561256408691407, + "step": 9100 + }, + { + "epoch": 71.87671232876713, + "grad_norm": 1.792253851890564, + "learning_rate": 1.406640625e-05, + "loss": 0.3719992828369141, + "step": 9200 + }, + { + "epoch": 72.65753424657534, + "grad_norm": 1.7605615854263306, + "learning_rate": 1.3675781249999999e-05, + "loss": 0.3683036804199219, + "step": 9300 + }, + { + "epoch": 73.43835616438356, + "grad_norm": 1.9714428186416626, + "learning_rate": 1.328515625e-05, + "loss": 0.36568996429443357, + "step": 9400 + }, + { + "epoch": 74.21917808219177, + "grad_norm": 1.7406636476516724, + "learning_rate": 1.289453125e-05, + "loss": 0.3651968765258789, + "step": 9500 + }, + { + "epoch": 75.0, + "grad_norm": 2.053438186645508, + "learning_rate": 1.250390625e-05, + "loss": 0.36441463470458985, + "step": 9600 + }, + { + "epoch": 75.78277886497065, + "grad_norm": 1.8560653924942017, + "learning_rate": 1.2113281250000002e-05, + "loss": 0.35981990814208986, + "step": 9700 + }, + { + "epoch": 76.56360078277886, + "grad_norm": 1.8084759712219238, + "learning_rate": 1.172265625e-05, + "loss": 0.35714241027832033, + "step": 9800 + }, + { + "epoch": 77.34442270058709, + "grad_norm": 2.0932719707489014, + "learning_rate": 1.1332031250000001e-05, + "loss": 0.35758853912353517, + "step": 9900 + }, + { + "epoch": 78.1252446183953, + "grad_norm": 2.1276156902313232, + "learning_rate": 1.094140625e-05, + "loss": 0.3567123794555664, + "step": 10000 + }, + { + "epoch": 78.90802348336595, + "grad_norm": 1.6367905139923096, + "learning_rate": 1.0550781250000001e-05, + "loss": 0.3533828353881836, + "step": 10100 + }, + { + "epoch": 79.68884540117416, + "grad_norm": 1.8565430641174316, + "learning_rate": 1.0160156250000002e-05, + "loss": 0.35054325103759765, + "step": 10200 + }, + { + "epoch": 80.46966731898239, + "grad_norm": 1.762800931930542, + "learning_rate": 9.76953125e-06, + "loss": 0.34926509857177734, + "step": 10300 + }, + { + "epoch": 81.2504892367906, + "grad_norm": 1.4440858364105225, + "learning_rate": 9.378906250000001e-06, + "loss": 0.3485040283203125, + "step": 10400 + }, + { + "epoch": 82.03131115459882, + "grad_norm": 1.5824888944625854, + "learning_rate": 8.98828125e-06, + "loss": 0.3475947952270508, + "step": 10500 + }, + { + "epoch": 82.81409001956948, + "grad_norm": 1.6844125986099243, + "learning_rate": 8.597656250000001e-06, + "loss": 0.34544418334960936, + "step": 10600 + }, + { + "epoch": 83.59491193737769, + "grad_norm": 1.8069628477096558, + "learning_rate": 8.207031250000002e-06, + "loss": 0.34289070129394533, + "step": 10700 + }, + { + "epoch": 84.37573385518591, + "grad_norm": 1.3971033096313477, + "learning_rate": 7.81640625e-06, + "loss": 0.34258338928222654, + "step": 10800 + }, + { + "epoch": 85.15655577299412, + "grad_norm": 1.8665785789489746, + "learning_rate": 7.425781250000001e-06, + "loss": 0.341295166015625, + "step": 10900 + }, + { + "epoch": 85.93933463796478, + "grad_norm": 1.7835795879364014, + "learning_rate": 7.035156250000001e-06, + "loss": 0.3404966354370117, + "step": 11000 + }, + { + "epoch": 86.72015655577299, + "grad_norm": 1.6213293075561523, + "learning_rate": 6.644531250000001e-06, + "loss": 0.33715126037597654, + "step": 11100 + }, + { + "epoch": 87.50097847358121, + "grad_norm": 1.774746060371399, + "learning_rate": 6.253906250000001e-06, + "loss": 0.3374959945678711, + "step": 11200 + }, + { + "epoch": 88.28180039138944, + "grad_norm": 1.674729347229004, + "learning_rate": 5.86328125e-06, + "loss": 0.33550899505615234, + "step": 11300 + }, + { + "epoch": 89.06262230919765, + "grad_norm": 1.6939401626586914, + "learning_rate": 5.4726562500000005e-06, + "loss": 0.33601253509521484, + "step": 11400 + }, + { + "epoch": 89.8454011741683, + "grad_norm": 1.7840259075164795, + "learning_rate": 5.08203125e-06, + "loss": 0.3333161926269531, + "step": 11500 + }, + { + "epoch": 90.62622309197651, + "grad_norm": 1.4085773229599, + "learning_rate": 4.69140625e-06, + "loss": 0.33314674377441406, + "step": 11600 + }, + { + "epoch": 91.40704500978474, + "grad_norm": 1.4582897424697876, + "learning_rate": 4.30078125e-06, + "loss": 0.3319340133666992, + "step": 11700 + }, + { + "epoch": 92.18786692759295, + "grad_norm": 1.5548802614212036, + "learning_rate": 3.91015625e-06, + "loss": 0.33092777252197264, + "step": 11800 + }, + { + "epoch": 92.9706457925636, + "grad_norm": 1.6761683225631714, + "learning_rate": 3.51953125e-06, + "loss": 0.33047531127929686, + "step": 11900 + }, + { + "epoch": 93.75146771037183, + "grad_norm": 1.5440400838851929, + "learning_rate": 3.1289062500000002e-06, + "loss": 0.3297533416748047, + "step": 12000 + }, + { + "epoch": 94.53228962818004, + "grad_norm": 1.2982420921325684, + "learning_rate": 2.73828125e-06, + "loss": 0.3282759094238281, + "step": 12100 + }, + { + "epoch": 95.31311154598826, + "grad_norm": 1.843058466911316, + "learning_rate": 2.34765625e-06, + "loss": 0.3285936737060547, + "step": 12200 + }, + { + "epoch": 96.09393346379647, + "grad_norm": 1.498162865638733, + "learning_rate": 1.95703125e-06, + "loss": 0.32765304565429687, + "step": 12300 + }, + { + "epoch": 96.87671232876713, + "grad_norm": 1.4527279138565063, + "learning_rate": 1.56640625e-06, + "loss": 0.32622470855712893, + "step": 12400 + }, + { + "epoch": 97.65753424657534, + "grad_norm": 1.784439206123352, + "learning_rate": 1.1796875e-06, + "loss": 0.3263894271850586, + "step": 12500 + }, + { + "epoch": 98.43835616438356, + "grad_norm": 1.4308785200119019, + "learning_rate": 7.890625e-07, + "loss": 0.32631328582763675, + "step": 12600 + } + ], + "logging_steps": 100, + "max_steps": 12800, + "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": 3304685328924672.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/training_args.bin b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12672/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..42745bb83020717e31ed504b835e2f60232556f7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/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.0.0", + "use_cache": false, + "vocab_size": 195 +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/generation_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/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.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/model.safetensors b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bd38ebdc94bfe1c55c566b0ed19507cec775adb2 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158b96a18999e9f815f3a1b87429da8bd8717b38d38cf5066f159a9498119902 +size 173867464 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/optimizer.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f9ca418550f17ed777b4ece1b77207cbedb5e278 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9dfbcdc3aaa592413153476709528a1c3f9024ae342d4d060e535490abc515 +size 347784011 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/rng_state.pth b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..8532a86425e41d137507e6c4e56bc6bfeb5df2e2 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd50d815df29f80dfe784f75de190cdac6a2d0930f6207fb1538a431fd384c9 +size 14645 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/scaler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d790cc893531fea8627ad1ee5deb35822ac47377 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc79342e3d811691fcd0a745949f397f7151ef5140aca4944b3510819cf74ee6 +size 1383 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/scheduler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..062cfc26e0a521b563714efc5219f34deedb2fb5 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6c4768fe14af8785df8348e78af0efa65796463db825662106d650b4eed512 +size 1465 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/trainer_state.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a013d8725d40907afbf09cb310ec1469fe378af8 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/trainer_state.json @@ -0,0 +1,923 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.21917808219177, + "eval_steps": 100, + "global_step": 12700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.7827788649706457, + "grad_norm": 1.0486202239990234, + "learning_rate": 4.961328125e-05, + "loss": 1.688448944091797, + "step": 100 + }, + { + "epoch": 1.563600782778865, + "grad_norm": 1.0504835844039917, + "learning_rate": 4.9222656250000004e-05, + "loss": 1.154488754272461, + "step": 200 + }, + { + "epoch": 2.344422700587084, + "grad_norm": 0.8747095465660095, + "learning_rate": 4.883203125000001e-05, + "loss": 1.1290001678466797, + "step": 300 + }, + { + "epoch": 3.1252446183953033, + "grad_norm": 0.8863896131515503, + "learning_rate": 4.844140625e-05, + "loss": 1.1141100311279297, + "step": 400 + }, + { + "epoch": 3.908023483365949, + "grad_norm": 0.8084456920623779, + "learning_rate": 4.8050781250000005e-05, + "loss": 1.1058421325683594, + "step": 500 + }, + { + "epoch": 4.688845401174168, + "grad_norm": 0.9470767974853516, + "learning_rate": 4.766015625000001e-05, + "loss": 1.102329635620117, + "step": 600 + }, + { + "epoch": 5.4696673189823874, + "grad_norm": 0.7827223539352417, + "learning_rate": 4.726953125e-05, + "loss": 1.094461898803711, + "step": 700 + }, + { + "epoch": 6.250489236790607, + "grad_norm": 0.8777554631233215, + "learning_rate": 4.6878906250000005e-05, + "loss": 1.0920853424072265, + "step": 800 + }, + { + "epoch": 7.031311154598826, + "grad_norm": 0.7711532115936279, + "learning_rate": 4.648828125000001e-05, + "loss": 1.0892620086669922, + "step": 900 + }, + { + "epoch": 7.814090019569472, + "grad_norm": 0.831622302532196, + "learning_rate": 4.609765625e-05, + "loss": 1.084198989868164, + "step": 1000 + }, + { + "epoch": 8.594911937377692, + "grad_norm": 0.834387481212616, + "learning_rate": 4.5707031250000005e-05, + "loss": 1.079208755493164, + "step": 1100 + }, + { + "epoch": 9.37573385518591, + "grad_norm": 1.0027215480804443, + "learning_rate": 4.531640625e-05, + "loss": 1.0801444244384766, + "step": 1200 + }, + { + "epoch": 10.156555772994128, + "grad_norm": 0.8628724217414856, + "learning_rate": 4.492578125e-05, + "loss": 1.0787698364257812, + "step": 1300 + }, + { + "epoch": 10.939334637964775, + "grad_norm": 0.8727676868438721, + "learning_rate": 4.4535156250000006e-05, + "loss": 1.0735088348388673, + "step": 1400 + }, + { + "epoch": 11.720156555772995, + "grad_norm": 0.9155942797660828, + "learning_rate": 4.414453125e-05, + "loss": 1.0684223937988282, + "step": 1500 + }, + { + "epoch": 12.500978473581213, + "grad_norm": 0.9530174136161804, + "learning_rate": 4.3753906250000003e-05, + "loss": 1.0664083862304687, + "step": 1600 + }, + { + "epoch": 13.281800391389432, + "grad_norm": 0.8837007880210876, + "learning_rate": 4.3363281250000006e-05, + "loss": 1.0640476989746093, + "step": 1700 + }, + { + "epoch": 14.062622309197652, + "grad_norm": 0.8225986957550049, + "learning_rate": 4.297265625e-05, + "loss": 1.062498550415039, + "step": 1800 + }, + { + "epoch": 14.845401174168298, + "grad_norm": 0.8787109851837158, + "learning_rate": 4.2582031250000004e-05, + "loss": 1.05648681640625, + "step": 1900 + }, + { + "epoch": 15.626223091976517, + "grad_norm": 0.9281523823738098, + "learning_rate": 4.2191406250000006e-05, + "loss": 1.0511688232421874, + "step": 2000 + }, + { + "epoch": 16.407045009784735, + "grad_norm": 0.9042040109634399, + "learning_rate": 4.180078125e-05, + "loss": 1.046303939819336, + "step": 2100 + }, + { + "epoch": 17.187866927592957, + "grad_norm": 1.019979476928711, + "learning_rate": 4.1410156250000004e-05, + "loss": 1.044459991455078, + "step": 2200 + }, + { + "epoch": 17.9706457925636, + "grad_norm": 0.9296092987060547, + "learning_rate": 4.1019531250000006e-05, + "loss": 1.0391932678222657, + "step": 2300 + }, + { + "epoch": 18.75146771037182, + "grad_norm": 0.9988288879394531, + "learning_rate": 4.062890625e-05, + "loss": 1.0261920166015626, + "step": 2400 + }, + { + "epoch": 19.532289628180038, + "grad_norm": 1.1281828880310059, + "learning_rate": 4.0238281250000004e-05, + "loss": 1.0217276000976563, + "step": 2500 + }, + { + "epoch": 20.313111545988257, + "grad_norm": 1.114624261856079, + "learning_rate": 3.984765625000001e-05, + "loss": 1.0104251098632813, + "step": 2600 + }, + { + "epoch": 21.09393346379648, + "grad_norm": 1.0959868431091309, + "learning_rate": 3.945703125e-05, + "loss": 1.0031028747558595, + "step": 2700 + }, + { + "epoch": 21.876712328767123, + "grad_norm": 1.2692209482192993, + "learning_rate": 3.9066406250000005e-05, + "loss": 0.9877436828613281, + "step": 2800 + }, + { + "epoch": 22.65753424657534, + "grad_norm": 1.3036280870437622, + "learning_rate": 3.867578125000001e-05, + "loss": 0.9706366729736328, + "step": 2900 + }, + { + "epoch": 23.438356164383563, + "grad_norm": 1.3872909545898438, + "learning_rate": 3.828515625e-05, + "loss": 0.9575959777832032, + "step": 3000 + }, + { + "epoch": 24.21917808219178, + "grad_norm": 1.5136151313781738, + "learning_rate": 3.7894531250000005e-05, + "loss": 0.941896743774414, + "step": 3100 + }, + { + "epoch": 25.0, + "grad_norm": 1.7240556478500366, + "learning_rate": 3.750390625e-05, + "loss": 0.930921401977539, + "step": 3200 + }, + { + "epoch": 25.782778864970645, + "grad_norm": 1.660912275314331, + "learning_rate": 3.711328125e-05, + "loss": 0.9009783172607422, + "step": 3300 + }, + { + "epoch": 26.563600782778863, + "grad_norm": 1.776151180267334, + "learning_rate": 3.6722656250000005e-05, + "loss": 0.88541748046875, + "step": 3400 + }, + { + "epoch": 27.344422700587085, + "grad_norm": 1.8112819194793701, + "learning_rate": 3.633203125e-05, + "loss": 0.8712809753417968, + "step": 3500 + }, + { + "epoch": 28.125244618395303, + "grad_norm": 1.7442703247070312, + "learning_rate": 3.594140625e-05, + "loss": 0.8555945587158204, + "step": 3600 + }, + { + "epoch": 28.908023483365948, + "grad_norm": 1.874680519104004, + "learning_rate": 3.5550781250000006e-05, + "loss": 0.8342882537841797, + "step": 3700 + }, + { + "epoch": 29.68884540117417, + "grad_norm": 2.0190470218658447, + "learning_rate": 3.516015625e-05, + "loss": 0.8082669067382813, + "step": 3800 + }, + { + "epoch": 30.46966731898239, + "grad_norm": 1.99907648563385, + "learning_rate": 3.4769531250000004e-05, + "loss": 0.79350830078125, + "step": 3900 + }, + { + "epoch": 31.250489236790607, + "grad_norm": 2.004641532897949, + "learning_rate": 3.4378906250000006e-05, + "loss": 0.7786461639404297, + "step": 4000 + }, + { + "epoch": 32.031311154598825, + "grad_norm": 1.8514291048049927, + "learning_rate": 3.398828125e-05, + "loss": 0.7644376373291015, + "step": 4100 + }, + { + "epoch": 32.81409001956947, + "grad_norm": 2.158493757247925, + "learning_rate": 3.3597656250000004e-05, + "loss": 0.7397248840332031, + "step": 4200 + }, + { + "epoch": 33.59491193737769, + "grad_norm": 2.127976417541504, + "learning_rate": 3.3207031250000006e-05, + "loss": 0.7238473510742187, + "step": 4300 + }, + { + "epoch": 34.37573385518591, + "grad_norm": 2.023771047592163, + "learning_rate": 3.281640625e-05, + "loss": 0.7110092163085937, + "step": 4400 + }, + { + "epoch": 35.15655577299413, + "grad_norm": 2.06078839302063, + "learning_rate": 3.2425781250000004e-05, + "loss": 0.6957923126220703, + "step": 4500 + }, + { + "epoch": 35.93933463796478, + "grad_norm": 2.244459867477417, + "learning_rate": 3.2035156250000007e-05, + "loss": 0.6851163482666016, + "step": 4600 + }, + { + "epoch": 36.720156555772995, + "grad_norm": 2.3121111392974854, + "learning_rate": 3.164453125e-05, + "loss": 0.66149658203125, + "step": 4700 + }, + { + "epoch": 37.50097847358121, + "grad_norm": 2.188596248626709, + "learning_rate": 3.1253906250000005e-05, + "loss": 0.6491559600830078, + "step": 4800 + }, + { + "epoch": 38.28180039138943, + "grad_norm": 2.005614995956421, + "learning_rate": 3.086328125e-05, + "loss": 0.6418089294433593, + "step": 4900 + }, + { + "epoch": 39.06262230919765, + "grad_norm": 2.1131582260131836, + "learning_rate": 3.0472656250000003e-05, + "loss": 0.6310436630249023, + "step": 5000 + }, + { + "epoch": 39.845401174168295, + "grad_norm": 2.31669020652771, + "learning_rate": 3.0082031250000005e-05, + "loss": 0.6103257751464843, + "step": 5100 + }, + { + "epoch": 40.62622309197651, + "grad_norm": 2.197002410888672, + "learning_rate": 2.9691406250000004e-05, + "loss": 0.5992939376831055, + "step": 5200 + }, + { + "epoch": 41.40704500978474, + "grad_norm": 2.1487903594970703, + "learning_rate": 2.9300781250000003e-05, + "loss": 0.5904928207397461, + "step": 5300 + }, + { + "epoch": 42.18786692759296, + "grad_norm": 2.05066180229187, + "learning_rate": 2.8910156250000002e-05, + "loss": 0.581017837524414, + "step": 5400 + }, + { + "epoch": 42.9706457925636, + "grad_norm": 2.3271167278289795, + "learning_rate": 2.8519531250000004e-05, + "loss": 0.5724580001831054, + "step": 5500 + }, + { + "epoch": 43.75146771037182, + "grad_norm": 2.2572574615478516, + "learning_rate": 2.8128906250000003e-05, + "loss": 0.5551020050048828, + "step": 5600 + }, + { + "epoch": 44.53228962818004, + "grad_norm": 2.226602792739868, + "learning_rate": 2.7738281250000002e-05, + "loss": 0.5493736267089844, + "step": 5700 + }, + { + "epoch": 45.31311154598826, + "grad_norm": 1.947657585144043, + "learning_rate": 2.7347656250000004e-05, + "loss": 0.5417766189575195, + "step": 5800 + }, + { + "epoch": 46.093933463796475, + "grad_norm": 1.995186686515808, + "learning_rate": 2.6957031250000003e-05, + "loss": 0.5349613189697265, + "step": 5900 + }, + { + "epoch": 46.87671232876713, + "grad_norm": 2.2597129344940186, + "learning_rate": 2.6566406250000002e-05, + "loss": 0.5226405715942383, + "step": 6000 + }, + { + "epoch": 47.657534246575345, + "grad_norm": 2.170502185821533, + "learning_rate": 2.6175781250000005e-05, + "loss": 0.5130897903442383, + "step": 6100 + }, + { + "epoch": 48.43835616438356, + "grad_norm": 2.244462490081787, + "learning_rate": 2.5785156250000004e-05, + "loss": 0.5051753234863281, + "step": 6200 + }, + { + "epoch": 49.21917808219178, + "grad_norm": 2.286914110183716, + "learning_rate": 2.5394531250000003e-05, + "loss": 0.4990710830688477, + "step": 6300 + }, + { + "epoch": 50.0, + "grad_norm": 2.4982612133026123, + "learning_rate": 2.5003906250000002e-05, + "loss": 0.4966748809814453, + "step": 6400 + }, + { + "epoch": 50.782778864970645, + "grad_norm": 2.351532459259033, + "learning_rate": 2.461328125e-05, + "loss": 0.4810691070556641, + "step": 6500 + }, + { + "epoch": 51.56360078277886, + "grad_norm": 2.165419340133667, + "learning_rate": 2.422265625e-05, + "loss": 0.47620841979980466, + "step": 6600 + }, + { + "epoch": 52.34442270058708, + "grad_norm": 2.0557236671447754, + "learning_rate": 2.3832031250000002e-05, + "loss": 0.4726076889038086, + "step": 6700 + }, + { + "epoch": 53.1252446183953, + "grad_norm": 1.9564766883850098, + "learning_rate": 2.344140625e-05, + "loss": 0.4708554458618164, + "step": 6800 + }, + { + "epoch": 53.90802348336595, + "grad_norm": 2.3277177810668945, + "learning_rate": 2.305078125e-05, + "loss": 0.46398677825927737, + "step": 6900 + }, + { + "epoch": 54.68884540117417, + "grad_norm": 2.3035829067230225, + "learning_rate": 2.266015625e-05, + "loss": 0.45168586730957033, + "step": 7000 + }, + { + "epoch": 55.46966731898239, + "grad_norm": 2.039451837539673, + "learning_rate": 2.226953125e-05, + "loss": 0.44671268463134767, + "step": 7100 + }, + { + "epoch": 56.25048923679061, + "grad_norm": 2.2257299423217773, + "learning_rate": 2.187890625e-05, + "loss": 0.4452375793457031, + "step": 7200 + }, + { + "epoch": 57.031311154598825, + "grad_norm": 1.9460525512695312, + "learning_rate": 2.148828125e-05, + "loss": 0.441870231628418, + "step": 7300 + }, + { + "epoch": 57.81409001956947, + "grad_norm": 2.2172210216522217, + "learning_rate": 2.109765625e-05, + "loss": 0.4326821899414062, + "step": 7400 + }, + { + "epoch": 58.59491193737769, + "grad_norm": 2.375434398651123, + "learning_rate": 2.070703125e-05, + "loss": 0.4289337158203125, + "step": 7500 + }, + { + "epoch": 59.37573385518591, + "grad_norm": 1.973957896232605, + "learning_rate": 2.031640625e-05, + "loss": 0.42538455963134764, + "step": 7600 + }, + { + "epoch": 60.15655577299413, + "grad_norm": 2.0541257858276367, + "learning_rate": 1.992578125e-05, + "loss": 0.42150623321533204, + "step": 7700 + }, + { + "epoch": 60.93933463796478, + "grad_norm": 2.2626030445098877, + "learning_rate": 1.953515625e-05, + "loss": 0.4170351791381836, + "step": 7800 + }, + { + "epoch": 61.720156555772995, + "grad_norm": 2.0126707553863525, + "learning_rate": 1.914453125e-05, + "loss": 0.41034427642822263, + "step": 7900 + }, + { + "epoch": 62.50097847358121, + "grad_norm": 2.3015599250793457, + "learning_rate": 1.875390625e-05, + "loss": 0.4078645706176758, + "step": 8000 + }, + { + "epoch": 63.28180039138943, + "grad_norm": 1.946954607963562, + "learning_rate": 1.836328125e-05, + "loss": 0.40318927764892576, + "step": 8100 + }, + { + "epoch": 64.06262230919765, + "grad_norm": 2.108351945877075, + "learning_rate": 1.797265625e-05, + "loss": 0.402923583984375, + "step": 8200 + }, + { + "epoch": 64.8454011741683, + "grad_norm": 2.0268521308898926, + "learning_rate": 1.758203125e-05, + "loss": 0.39771438598632813, + "step": 8300 + }, + { + "epoch": 65.62622309197651, + "grad_norm": 2.0682578086853027, + "learning_rate": 1.719140625e-05, + "loss": 0.39169620513916015, + "step": 8400 + }, + { + "epoch": 66.40704500978474, + "grad_norm": 2.0089261531829834, + "learning_rate": 1.680078125e-05, + "loss": 0.39035537719726565, + "step": 8500 + }, + { + "epoch": 67.18786692759295, + "grad_norm": 1.6829136610031128, + "learning_rate": 1.641015625e-05, + "loss": 0.38773414611816404, + "step": 8600 + }, + { + "epoch": 67.9706457925636, + "grad_norm": 2.221820831298828, + "learning_rate": 1.601953125e-05, + "loss": 0.3859918212890625, + "step": 8700 + }, + { + "epoch": 68.75146771037183, + "grad_norm": 1.769336223602295, + "learning_rate": 1.562890625e-05, + "loss": 0.380072021484375, + "step": 8800 + }, + { + "epoch": 69.53228962818004, + "grad_norm": 2.064134120941162, + "learning_rate": 1.523828125e-05, + "loss": 0.3790831756591797, + "step": 8900 + }, + { + "epoch": 70.31311154598826, + "grad_norm": 1.9138619899749756, + "learning_rate": 1.484765625e-05, + "loss": 0.37655155181884764, + "step": 9000 + }, + { + "epoch": 71.09393346379647, + "grad_norm": 1.683709740638733, + "learning_rate": 1.445703125e-05, + "loss": 0.37561256408691407, + "step": 9100 + }, + { + "epoch": 71.87671232876713, + "grad_norm": 1.792253851890564, + "learning_rate": 1.406640625e-05, + "loss": 0.3719992828369141, + "step": 9200 + }, + { + "epoch": 72.65753424657534, + "grad_norm": 1.7605615854263306, + "learning_rate": 1.3675781249999999e-05, + "loss": 0.3683036804199219, + "step": 9300 + }, + { + "epoch": 73.43835616438356, + "grad_norm": 1.9714428186416626, + "learning_rate": 1.328515625e-05, + "loss": 0.36568996429443357, + "step": 9400 + }, + { + "epoch": 74.21917808219177, + "grad_norm": 1.7406636476516724, + "learning_rate": 1.289453125e-05, + "loss": 0.3651968765258789, + "step": 9500 + }, + { + "epoch": 75.0, + "grad_norm": 2.053438186645508, + "learning_rate": 1.250390625e-05, + "loss": 0.36441463470458985, + "step": 9600 + }, + { + "epoch": 75.78277886497065, + "grad_norm": 1.8560653924942017, + "learning_rate": 1.2113281250000002e-05, + "loss": 0.35981990814208986, + "step": 9700 + }, + { + "epoch": 76.56360078277886, + "grad_norm": 1.8084759712219238, + "learning_rate": 1.172265625e-05, + "loss": 0.35714241027832033, + "step": 9800 + }, + { + "epoch": 77.34442270058709, + "grad_norm": 2.0932719707489014, + "learning_rate": 1.1332031250000001e-05, + "loss": 0.35758853912353517, + "step": 9900 + }, + { + "epoch": 78.1252446183953, + "grad_norm": 2.1276156902313232, + "learning_rate": 1.094140625e-05, + "loss": 0.3567123794555664, + "step": 10000 + }, + { + "epoch": 78.90802348336595, + "grad_norm": 1.6367905139923096, + "learning_rate": 1.0550781250000001e-05, + "loss": 0.3533828353881836, + "step": 10100 + }, + { + "epoch": 79.68884540117416, + "grad_norm": 1.8565430641174316, + "learning_rate": 1.0160156250000002e-05, + "loss": 0.35054325103759765, + "step": 10200 + }, + { + "epoch": 80.46966731898239, + "grad_norm": 1.762800931930542, + "learning_rate": 9.76953125e-06, + "loss": 0.34926509857177734, + "step": 10300 + }, + { + "epoch": 81.2504892367906, + "grad_norm": 1.4440858364105225, + "learning_rate": 9.378906250000001e-06, + "loss": 0.3485040283203125, + "step": 10400 + }, + { + "epoch": 82.03131115459882, + "grad_norm": 1.5824888944625854, + "learning_rate": 8.98828125e-06, + "loss": 0.3475947952270508, + "step": 10500 + }, + { + "epoch": 82.81409001956948, + "grad_norm": 1.6844125986099243, + "learning_rate": 8.597656250000001e-06, + "loss": 0.34544418334960936, + "step": 10600 + }, + { + "epoch": 83.59491193737769, + "grad_norm": 1.8069628477096558, + "learning_rate": 8.207031250000002e-06, + "loss": 0.34289070129394533, + "step": 10700 + }, + { + "epoch": 84.37573385518591, + "grad_norm": 1.3971033096313477, + "learning_rate": 7.81640625e-06, + "loss": 0.34258338928222654, + "step": 10800 + }, + { + "epoch": 85.15655577299412, + "grad_norm": 1.8665785789489746, + "learning_rate": 7.425781250000001e-06, + "loss": 0.341295166015625, + "step": 10900 + }, + { + "epoch": 85.93933463796478, + "grad_norm": 1.7835795879364014, + "learning_rate": 7.035156250000001e-06, + "loss": 0.3404966354370117, + "step": 11000 + }, + { + "epoch": 86.72015655577299, + "grad_norm": 1.6213293075561523, + "learning_rate": 6.644531250000001e-06, + "loss": 0.33715126037597654, + "step": 11100 + }, + { + "epoch": 87.50097847358121, + "grad_norm": 1.774746060371399, + "learning_rate": 6.253906250000001e-06, + "loss": 0.3374959945678711, + "step": 11200 + }, + { + "epoch": 88.28180039138944, + "grad_norm": 1.674729347229004, + "learning_rate": 5.86328125e-06, + "loss": 0.33550899505615234, + "step": 11300 + }, + { + "epoch": 89.06262230919765, + "grad_norm": 1.6939401626586914, + "learning_rate": 5.4726562500000005e-06, + "loss": 0.33601253509521484, + "step": 11400 + }, + { + "epoch": 89.8454011741683, + "grad_norm": 1.7840259075164795, + "learning_rate": 5.08203125e-06, + "loss": 0.3333161926269531, + "step": 11500 + }, + { + "epoch": 90.62622309197651, + "grad_norm": 1.4085773229599, + "learning_rate": 4.69140625e-06, + "loss": 0.33314674377441406, + "step": 11600 + }, + { + "epoch": 91.40704500978474, + "grad_norm": 1.4582897424697876, + "learning_rate": 4.30078125e-06, + "loss": 0.3319340133666992, + "step": 11700 + }, + { + "epoch": 92.18786692759295, + "grad_norm": 1.5548802614212036, + "learning_rate": 3.91015625e-06, + "loss": 0.33092777252197264, + "step": 11800 + }, + { + "epoch": 92.9706457925636, + "grad_norm": 1.6761683225631714, + "learning_rate": 3.51953125e-06, + "loss": 0.33047531127929686, + "step": 11900 + }, + { + "epoch": 93.75146771037183, + "grad_norm": 1.5440400838851929, + "learning_rate": 3.1289062500000002e-06, + "loss": 0.3297533416748047, + "step": 12000 + }, + { + "epoch": 94.53228962818004, + "grad_norm": 1.2982420921325684, + "learning_rate": 2.73828125e-06, + "loss": 0.3282759094238281, + "step": 12100 + }, + { + "epoch": 95.31311154598826, + "grad_norm": 1.843058466911316, + "learning_rate": 2.34765625e-06, + "loss": 0.3285936737060547, + "step": 12200 + }, + { + "epoch": 96.09393346379647, + "grad_norm": 1.498162865638733, + "learning_rate": 1.95703125e-06, + "loss": 0.32765304565429687, + "step": 12300 + }, + { + "epoch": 96.87671232876713, + "grad_norm": 1.4527279138565063, + "learning_rate": 1.56640625e-06, + "loss": 0.32622470855712893, + "step": 12400 + }, + { + "epoch": 97.65753424657534, + "grad_norm": 1.784439206123352, + "learning_rate": 1.1796875e-06, + "loss": 0.3263894271850586, + "step": 12500 + }, + { + "epoch": 98.43835616438356, + "grad_norm": 1.4308785200119019, + "learning_rate": 7.890625e-07, + "loss": 0.32631328582763675, + "step": 12600 + }, + { + "epoch": 99.21917808219177, + "grad_norm": 1.5608457326889038, + "learning_rate": 3.9843750000000005e-07, + "loss": 0.32582923889160154, + "step": 12700 + } + ], + "logging_steps": 100, + "max_steps": 12800, + "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": 3312001637941248.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/training_args.bin b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..42745bb83020717e31ed504b835e2f60232556f7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/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.0.0", + "use_cache": false, + "vocab_size": 195 +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/generation_config.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/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.0.0", + "use_cache": true +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/model.safetensors b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..11ed40e905784251965c75317e55b16fed267463 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea84f402e1f06fac032088d54063c2b43bac3d75aebcaa1608172361a1e66384 +size 173867464 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/optimizer.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..086ec679570aa3131075417f240a82d196f5ae3f --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b4754c6d58a1e4b8444b962ad36646a0eb7b843a39d803bdf42f608d62d77f +size 347784011 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/rng_state.pth b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b45e9848350f6c095553854cdce412718c18d884 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce1ece21c249a8a18e4270ce7770bb05623c79fba5db60d2f0580a36a2170fb +size 14645 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/scaler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7a2fa2242511f3e806ae54a15548d55cdce83a9d --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a48b870458afc1afe4b75d5185672909c020b90e9a7921e0918333a06ac3bfc +size 1383 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/scheduler.pt b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fafa43e55787fb6ada4f07e1afd36535fe15d2d7 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa5abc229a784c26550c6c792ae78194035e9d34ce3ddace8d57ca3289f81ba +size 1465 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/trainer_state.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9b8f2fe68456fb51c85aed865f686c973ba29f23 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/trainer_state.json @@ -0,0 +1,930 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 12800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.7827788649706457, + "grad_norm": 1.0486202239990234, + "learning_rate": 4.961328125e-05, + "loss": 1.688448944091797, + "step": 100 + }, + { + "epoch": 1.563600782778865, + "grad_norm": 1.0504835844039917, + "learning_rate": 4.9222656250000004e-05, + "loss": 1.154488754272461, + "step": 200 + }, + { + "epoch": 2.344422700587084, + "grad_norm": 0.8747095465660095, + "learning_rate": 4.883203125000001e-05, + "loss": 1.1290001678466797, + "step": 300 + }, + { + "epoch": 3.1252446183953033, + "grad_norm": 0.8863896131515503, + "learning_rate": 4.844140625e-05, + "loss": 1.1141100311279297, + "step": 400 + }, + { + "epoch": 3.908023483365949, + "grad_norm": 0.8084456920623779, + "learning_rate": 4.8050781250000005e-05, + "loss": 1.1058421325683594, + "step": 500 + }, + { + "epoch": 4.688845401174168, + "grad_norm": 0.9470767974853516, + "learning_rate": 4.766015625000001e-05, + "loss": 1.102329635620117, + "step": 600 + }, + { + "epoch": 5.4696673189823874, + "grad_norm": 0.7827223539352417, + "learning_rate": 4.726953125e-05, + "loss": 1.094461898803711, + "step": 700 + }, + { + "epoch": 6.250489236790607, + "grad_norm": 0.8777554631233215, + "learning_rate": 4.6878906250000005e-05, + "loss": 1.0920853424072265, + "step": 800 + }, + { + "epoch": 7.031311154598826, + "grad_norm": 0.7711532115936279, + "learning_rate": 4.648828125000001e-05, + "loss": 1.0892620086669922, + "step": 900 + }, + { + "epoch": 7.814090019569472, + "grad_norm": 0.831622302532196, + "learning_rate": 4.609765625e-05, + "loss": 1.084198989868164, + "step": 1000 + }, + { + "epoch": 8.594911937377692, + "grad_norm": 0.834387481212616, + "learning_rate": 4.5707031250000005e-05, + "loss": 1.079208755493164, + "step": 1100 + }, + { + "epoch": 9.37573385518591, + "grad_norm": 1.0027215480804443, + "learning_rate": 4.531640625e-05, + "loss": 1.0801444244384766, + "step": 1200 + }, + { + "epoch": 10.156555772994128, + "grad_norm": 0.8628724217414856, + "learning_rate": 4.492578125e-05, + "loss": 1.0787698364257812, + "step": 1300 + }, + { + "epoch": 10.939334637964775, + "grad_norm": 0.8727676868438721, + "learning_rate": 4.4535156250000006e-05, + "loss": 1.0735088348388673, + "step": 1400 + }, + { + "epoch": 11.720156555772995, + "grad_norm": 0.9155942797660828, + "learning_rate": 4.414453125e-05, + "loss": 1.0684223937988282, + "step": 1500 + }, + { + "epoch": 12.500978473581213, + "grad_norm": 0.9530174136161804, + "learning_rate": 4.3753906250000003e-05, + "loss": 1.0664083862304687, + "step": 1600 + }, + { + "epoch": 13.281800391389432, + "grad_norm": 0.8837007880210876, + "learning_rate": 4.3363281250000006e-05, + "loss": 1.0640476989746093, + "step": 1700 + }, + { + "epoch": 14.062622309197652, + "grad_norm": 0.8225986957550049, + "learning_rate": 4.297265625e-05, + "loss": 1.062498550415039, + "step": 1800 + }, + { + "epoch": 14.845401174168298, + "grad_norm": 0.8787109851837158, + "learning_rate": 4.2582031250000004e-05, + "loss": 1.05648681640625, + "step": 1900 + }, + { + "epoch": 15.626223091976517, + "grad_norm": 0.9281523823738098, + "learning_rate": 4.2191406250000006e-05, + "loss": 1.0511688232421874, + "step": 2000 + }, + { + "epoch": 16.407045009784735, + "grad_norm": 0.9042040109634399, + "learning_rate": 4.180078125e-05, + "loss": 1.046303939819336, + "step": 2100 + }, + { + "epoch": 17.187866927592957, + "grad_norm": 1.019979476928711, + "learning_rate": 4.1410156250000004e-05, + "loss": 1.044459991455078, + "step": 2200 + }, + { + "epoch": 17.9706457925636, + "grad_norm": 0.9296092987060547, + "learning_rate": 4.1019531250000006e-05, + "loss": 1.0391932678222657, + "step": 2300 + }, + { + "epoch": 18.75146771037182, + "grad_norm": 0.9988288879394531, + "learning_rate": 4.062890625e-05, + "loss": 1.0261920166015626, + "step": 2400 + }, + { + "epoch": 19.532289628180038, + "grad_norm": 1.1281828880310059, + "learning_rate": 4.0238281250000004e-05, + "loss": 1.0217276000976563, + "step": 2500 + }, + { + "epoch": 20.313111545988257, + "grad_norm": 1.114624261856079, + "learning_rate": 3.984765625000001e-05, + "loss": 1.0104251098632813, + "step": 2600 + }, + { + "epoch": 21.09393346379648, + "grad_norm": 1.0959868431091309, + "learning_rate": 3.945703125e-05, + "loss": 1.0031028747558595, + "step": 2700 + }, + { + "epoch": 21.876712328767123, + "grad_norm": 1.2692209482192993, + "learning_rate": 3.9066406250000005e-05, + "loss": 0.9877436828613281, + "step": 2800 + }, + { + "epoch": 22.65753424657534, + "grad_norm": 1.3036280870437622, + "learning_rate": 3.867578125000001e-05, + "loss": 0.9706366729736328, + "step": 2900 + }, + { + "epoch": 23.438356164383563, + "grad_norm": 1.3872909545898438, + "learning_rate": 3.828515625e-05, + "loss": 0.9575959777832032, + "step": 3000 + }, + { + "epoch": 24.21917808219178, + "grad_norm": 1.5136151313781738, + "learning_rate": 3.7894531250000005e-05, + "loss": 0.941896743774414, + "step": 3100 + }, + { + "epoch": 25.0, + "grad_norm": 1.7240556478500366, + "learning_rate": 3.750390625e-05, + "loss": 0.930921401977539, + "step": 3200 + }, + { + "epoch": 25.782778864970645, + "grad_norm": 1.660912275314331, + "learning_rate": 3.711328125e-05, + "loss": 0.9009783172607422, + "step": 3300 + }, + { + "epoch": 26.563600782778863, + "grad_norm": 1.776151180267334, + "learning_rate": 3.6722656250000005e-05, + "loss": 0.88541748046875, + "step": 3400 + }, + { + "epoch": 27.344422700587085, + "grad_norm": 1.8112819194793701, + "learning_rate": 3.633203125e-05, + "loss": 0.8712809753417968, + "step": 3500 + }, + { + "epoch": 28.125244618395303, + "grad_norm": 1.7442703247070312, + "learning_rate": 3.594140625e-05, + "loss": 0.8555945587158204, + "step": 3600 + }, + { + "epoch": 28.908023483365948, + "grad_norm": 1.874680519104004, + "learning_rate": 3.5550781250000006e-05, + "loss": 0.8342882537841797, + "step": 3700 + }, + { + "epoch": 29.68884540117417, + "grad_norm": 2.0190470218658447, + "learning_rate": 3.516015625e-05, + "loss": 0.8082669067382813, + "step": 3800 + }, + { + "epoch": 30.46966731898239, + "grad_norm": 1.99907648563385, + "learning_rate": 3.4769531250000004e-05, + "loss": 0.79350830078125, + "step": 3900 + }, + { + "epoch": 31.250489236790607, + "grad_norm": 2.004641532897949, + "learning_rate": 3.4378906250000006e-05, + "loss": 0.7786461639404297, + "step": 4000 + }, + { + "epoch": 32.031311154598825, + "grad_norm": 1.8514291048049927, + "learning_rate": 3.398828125e-05, + "loss": 0.7644376373291015, + "step": 4100 + }, + { + "epoch": 32.81409001956947, + "grad_norm": 2.158493757247925, + "learning_rate": 3.3597656250000004e-05, + "loss": 0.7397248840332031, + "step": 4200 + }, + { + "epoch": 33.59491193737769, + "grad_norm": 2.127976417541504, + "learning_rate": 3.3207031250000006e-05, + "loss": 0.7238473510742187, + "step": 4300 + }, + { + "epoch": 34.37573385518591, + "grad_norm": 2.023771047592163, + "learning_rate": 3.281640625e-05, + "loss": 0.7110092163085937, + "step": 4400 + }, + { + "epoch": 35.15655577299413, + "grad_norm": 2.06078839302063, + "learning_rate": 3.2425781250000004e-05, + "loss": 0.6957923126220703, + "step": 4500 + }, + { + "epoch": 35.93933463796478, + "grad_norm": 2.244459867477417, + "learning_rate": 3.2035156250000007e-05, + "loss": 0.6851163482666016, + "step": 4600 + }, + { + "epoch": 36.720156555772995, + "grad_norm": 2.3121111392974854, + "learning_rate": 3.164453125e-05, + "loss": 0.66149658203125, + "step": 4700 + }, + { + "epoch": 37.50097847358121, + "grad_norm": 2.188596248626709, + "learning_rate": 3.1253906250000005e-05, + "loss": 0.6491559600830078, + "step": 4800 + }, + { + "epoch": 38.28180039138943, + "grad_norm": 2.005614995956421, + "learning_rate": 3.086328125e-05, + "loss": 0.6418089294433593, + "step": 4900 + }, + { + "epoch": 39.06262230919765, + "grad_norm": 2.1131582260131836, + "learning_rate": 3.0472656250000003e-05, + "loss": 0.6310436630249023, + "step": 5000 + }, + { + "epoch": 39.845401174168295, + "grad_norm": 2.31669020652771, + "learning_rate": 3.0082031250000005e-05, + "loss": 0.6103257751464843, + "step": 5100 + }, + { + "epoch": 40.62622309197651, + "grad_norm": 2.197002410888672, + "learning_rate": 2.9691406250000004e-05, + "loss": 0.5992939376831055, + "step": 5200 + }, + { + "epoch": 41.40704500978474, + "grad_norm": 2.1487903594970703, + "learning_rate": 2.9300781250000003e-05, + "loss": 0.5904928207397461, + "step": 5300 + }, + { + "epoch": 42.18786692759296, + "grad_norm": 2.05066180229187, + "learning_rate": 2.8910156250000002e-05, + "loss": 0.581017837524414, + "step": 5400 + }, + { + "epoch": 42.9706457925636, + "grad_norm": 2.3271167278289795, + "learning_rate": 2.8519531250000004e-05, + "loss": 0.5724580001831054, + "step": 5500 + }, + { + "epoch": 43.75146771037182, + "grad_norm": 2.2572574615478516, + "learning_rate": 2.8128906250000003e-05, + "loss": 0.5551020050048828, + "step": 5600 + }, + { + "epoch": 44.53228962818004, + "grad_norm": 2.226602792739868, + "learning_rate": 2.7738281250000002e-05, + "loss": 0.5493736267089844, + "step": 5700 + }, + { + "epoch": 45.31311154598826, + "grad_norm": 1.947657585144043, + "learning_rate": 2.7347656250000004e-05, + "loss": 0.5417766189575195, + "step": 5800 + }, + { + "epoch": 46.093933463796475, + "grad_norm": 1.995186686515808, + "learning_rate": 2.6957031250000003e-05, + "loss": 0.5349613189697265, + "step": 5900 + }, + { + "epoch": 46.87671232876713, + "grad_norm": 2.2597129344940186, + "learning_rate": 2.6566406250000002e-05, + "loss": 0.5226405715942383, + "step": 6000 + }, + { + "epoch": 47.657534246575345, + "grad_norm": 2.170502185821533, + "learning_rate": 2.6175781250000005e-05, + "loss": 0.5130897903442383, + "step": 6100 + }, + { + "epoch": 48.43835616438356, + "grad_norm": 2.244462490081787, + "learning_rate": 2.5785156250000004e-05, + "loss": 0.5051753234863281, + "step": 6200 + }, + { + "epoch": 49.21917808219178, + "grad_norm": 2.286914110183716, + "learning_rate": 2.5394531250000003e-05, + "loss": 0.4990710830688477, + "step": 6300 + }, + { + "epoch": 50.0, + "grad_norm": 2.4982612133026123, + "learning_rate": 2.5003906250000002e-05, + "loss": 0.4966748809814453, + "step": 6400 + }, + { + "epoch": 50.782778864970645, + "grad_norm": 2.351532459259033, + "learning_rate": 2.461328125e-05, + "loss": 0.4810691070556641, + "step": 6500 + }, + { + "epoch": 51.56360078277886, + "grad_norm": 2.165419340133667, + "learning_rate": 2.422265625e-05, + "loss": 0.47620841979980466, + "step": 6600 + }, + { + "epoch": 52.34442270058708, + "grad_norm": 2.0557236671447754, + "learning_rate": 2.3832031250000002e-05, + "loss": 0.4726076889038086, + "step": 6700 + }, + { + "epoch": 53.1252446183953, + "grad_norm": 1.9564766883850098, + "learning_rate": 2.344140625e-05, + "loss": 0.4708554458618164, + "step": 6800 + }, + { + "epoch": 53.90802348336595, + "grad_norm": 2.3277177810668945, + "learning_rate": 2.305078125e-05, + "loss": 0.46398677825927737, + "step": 6900 + }, + { + "epoch": 54.68884540117417, + "grad_norm": 2.3035829067230225, + "learning_rate": 2.266015625e-05, + "loss": 0.45168586730957033, + "step": 7000 + }, + { + "epoch": 55.46966731898239, + "grad_norm": 2.039451837539673, + "learning_rate": 2.226953125e-05, + "loss": 0.44671268463134767, + "step": 7100 + }, + { + "epoch": 56.25048923679061, + "grad_norm": 2.2257299423217773, + "learning_rate": 2.187890625e-05, + "loss": 0.4452375793457031, + "step": 7200 + }, + { + "epoch": 57.031311154598825, + "grad_norm": 1.9460525512695312, + "learning_rate": 2.148828125e-05, + "loss": 0.441870231628418, + "step": 7300 + }, + { + "epoch": 57.81409001956947, + "grad_norm": 2.2172210216522217, + "learning_rate": 2.109765625e-05, + "loss": 0.4326821899414062, + "step": 7400 + }, + { + "epoch": 58.59491193737769, + "grad_norm": 2.375434398651123, + "learning_rate": 2.070703125e-05, + "loss": 0.4289337158203125, + "step": 7500 + }, + { + "epoch": 59.37573385518591, + "grad_norm": 1.973957896232605, + "learning_rate": 2.031640625e-05, + "loss": 0.42538455963134764, + "step": 7600 + }, + { + "epoch": 60.15655577299413, + "grad_norm": 2.0541257858276367, + "learning_rate": 1.992578125e-05, + "loss": 0.42150623321533204, + "step": 7700 + }, + { + "epoch": 60.93933463796478, + "grad_norm": 2.2626030445098877, + "learning_rate": 1.953515625e-05, + "loss": 0.4170351791381836, + "step": 7800 + }, + { + "epoch": 61.720156555772995, + "grad_norm": 2.0126707553863525, + "learning_rate": 1.914453125e-05, + "loss": 0.41034427642822263, + "step": 7900 + }, + { + "epoch": 62.50097847358121, + "grad_norm": 2.3015599250793457, + "learning_rate": 1.875390625e-05, + "loss": 0.4078645706176758, + "step": 8000 + }, + { + "epoch": 63.28180039138943, + "grad_norm": 1.946954607963562, + "learning_rate": 1.836328125e-05, + "loss": 0.40318927764892576, + "step": 8100 + }, + { + "epoch": 64.06262230919765, + "grad_norm": 2.108351945877075, + "learning_rate": 1.797265625e-05, + "loss": 0.402923583984375, + "step": 8200 + }, + { + "epoch": 64.8454011741683, + "grad_norm": 2.0268521308898926, + "learning_rate": 1.758203125e-05, + "loss": 0.39771438598632813, + "step": 8300 + }, + { + "epoch": 65.62622309197651, + "grad_norm": 2.0682578086853027, + "learning_rate": 1.719140625e-05, + "loss": 0.39169620513916015, + "step": 8400 + }, + { + "epoch": 66.40704500978474, + "grad_norm": 2.0089261531829834, + "learning_rate": 1.680078125e-05, + "loss": 0.39035537719726565, + "step": 8500 + }, + { + "epoch": 67.18786692759295, + "grad_norm": 1.6829136610031128, + "learning_rate": 1.641015625e-05, + "loss": 0.38773414611816404, + "step": 8600 + }, + { + "epoch": 67.9706457925636, + "grad_norm": 2.221820831298828, + "learning_rate": 1.601953125e-05, + "loss": 0.3859918212890625, + "step": 8700 + }, + { + "epoch": 68.75146771037183, + "grad_norm": 1.769336223602295, + "learning_rate": 1.562890625e-05, + "loss": 0.380072021484375, + "step": 8800 + }, + { + "epoch": 69.53228962818004, + "grad_norm": 2.064134120941162, + "learning_rate": 1.523828125e-05, + "loss": 0.3790831756591797, + "step": 8900 + }, + { + "epoch": 70.31311154598826, + "grad_norm": 1.9138619899749756, + "learning_rate": 1.484765625e-05, + "loss": 0.37655155181884764, + "step": 9000 + }, + { + "epoch": 71.09393346379647, + "grad_norm": 1.683709740638733, + "learning_rate": 1.445703125e-05, + "loss": 0.37561256408691407, + "step": 9100 + }, + { + "epoch": 71.87671232876713, + "grad_norm": 1.792253851890564, + "learning_rate": 1.406640625e-05, + "loss": 0.3719992828369141, + "step": 9200 + }, + { + "epoch": 72.65753424657534, + "grad_norm": 1.7605615854263306, + "learning_rate": 1.3675781249999999e-05, + "loss": 0.3683036804199219, + "step": 9300 + }, + { + "epoch": 73.43835616438356, + "grad_norm": 1.9714428186416626, + "learning_rate": 1.328515625e-05, + "loss": 0.36568996429443357, + "step": 9400 + }, + { + "epoch": 74.21917808219177, + "grad_norm": 1.7406636476516724, + "learning_rate": 1.289453125e-05, + "loss": 0.3651968765258789, + "step": 9500 + }, + { + "epoch": 75.0, + "grad_norm": 2.053438186645508, + "learning_rate": 1.250390625e-05, + "loss": 0.36441463470458985, + "step": 9600 + }, + { + "epoch": 75.78277886497065, + "grad_norm": 1.8560653924942017, + "learning_rate": 1.2113281250000002e-05, + "loss": 0.35981990814208986, + "step": 9700 + }, + { + "epoch": 76.56360078277886, + "grad_norm": 1.8084759712219238, + "learning_rate": 1.172265625e-05, + "loss": 0.35714241027832033, + "step": 9800 + }, + { + "epoch": 77.34442270058709, + "grad_norm": 2.0932719707489014, + "learning_rate": 1.1332031250000001e-05, + "loss": 0.35758853912353517, + "step": 9900 + }, + { + "epoch": 78.1252446183953, + "grad_norm": 2.1276156902313232, + "learning_rate": 1.094140625e-05, + "loss": 0.3567123794555664, + "step": 10000 + }, + { + "epoch": 78.90802348336595, + "grad_norm": 1.6367905139923096, + "learning_rate": 1.0550781250000001e-05, + "loss": 0.3533828353881836, + "step": 10100 + }, + { + "epoch": 79.68884540117416, + "grad_norm": 1.8565430641174316, + "learning_rate": 1.0160156250000002e-05, + "loss": 0.35054325103759765, + "step": 10200 + }, + { + "epoch": 80.46966731898239, + "grad_norm": 1.762800931930542, + "learning_rate": 9.76953125e-06, + "loss": 0.34926509857177734, + "step": 10300 + }, + { + "epoch": 81.2504892367906, + "grad_norm": 1.4440858364105225, + "learning_rate": 9.378906250000001e-06, + "loss": 0.3485040283203125, + "step": 10400 + }, + { + "epoch": 82.03131115459882, + "grad_norm": 1.5824888944625854, + "learning_rate": 8.98828125e-06, + "loss": 0.3475947952270508, + "step": 10500 + }, + { + "epoch": 82.81409001956948, + "grad_norm": 1.6844125986099243, + "learning_rate": 8.597656250000001e-06, + "loss": 0.34544418334960936, + "step": 10600 + }, + { + "epoch": 83.59491193737769, + "grad_norm": 1.8069628477096558, + "learning_rate": 8.207031250000002e-06, + "loss": 0.34289070129394533, + "step": 10700 + }, + { + "epoch": 84.37573385518591, + "grad_norm": 1.3971033096313477, + "learning_rate": 7.81640625e-06, + "loss": 0.34258338928222654, + "step": 10800 + }, + { + "epoch": 85.15655577299412, + "grad_norm": 1.8665785789489746, + "learning_rate": 7.425781250000001e-06, + "loss": 0.341295166015625, + "step": 10900 + }, + { + "epoch": 85.93933463796478, + "grad_norm": 1.7835795879364014, + "learning_rate": 7.035156250000001e-06, + "loss": 0.3404966354370117, + "step": 11000 + }, + { + "epoch": 86.72015655577299, + "grad_norm": 1.6213293075561523, + "learning_rate": 6.644531250000001e-06, + "loss": 0.33715126037597654, + "step": 11100 + }, + { + "epoch": 87.50097847358121, + "grad_norm": 1.774746060371399, + "learning_rate": 6.253906250000001e-06, + "loss": 0.3374959945678711, + "step": 11200 + }, + { + "epoch": 88.28180039138944, + "grad_norm": 1.674729347229004, + "learning_rate": 5.86328125e-06, + "loss": 0.33550899505615234, + "step": 11300 + }, + { + "epoch": 89.06262230919765, + "grad_norm": 1.6939401626586914, + "learning_rate": 5.4726562500000005e-06, + "loss": 0.33601253509521484, + "step": 11400 + }, + { + "epoch": 89.8454011741683, + "grad_norm": 1.7840259075164795, + "learning_rate": 5.08203125e-06, + "loss": 0.3333161926269531, + "step": 11500 + }, + { + "epoch": 90.62622309197651, + "grad_norm": 1.4085773229599, + "learning_rate": 4.69140625e-06, + "loss": 0.33314674377441406, + "step": 11600 + }, + { + "epoch": 91.40704500978474, + "grad_norm": 1.4582897424697876, + "learning_rate": 4.30078125e-06, + "loss": 0.3319340133666992, + "step": 11700 + }, + { + "epoch": 92.18786692759295, + "grad_norm": 1.5548802614212036, + "learning_rate": 3.91015625e-06, + "loss": 0.33092777252197264, + "step": 11800 + }, + { + "epoch": 92.9706457925636, + "grad_norm": 1.6761683225631714, + "learning_rate": 3.51953125e-06, + "loss": 0.33047531127929686, + "step": 11900 + }, + { + "epoch": 93.75146771037183, + "grad_norm": 1.5440400838851929, + "learning_rate": 3.1289062500000002e-06, + "loss": 0.3297533416748047, + "step": 12000 + }, + { + "epoch": 94.53228962818004, + "grad_norm": 1.2982420921325684, + "learning_rate": 2.73828125e-06, + "loss": 0.3282759094238281, + "step": 12100 + }, + { + "epoch": 95.31311154598826, + "grad_norm": 1.843058466911316, + "learning_rate": 2.34765625e-06, + "loss": 0.3285936737060547, + "step": 12200 + }, + { + "epoch": 96.09393346379647, + "grad_norm": 1.498162865638733, + "learning_rate": 1.95703125e-06, + "loss": 0.32765304565429687, + "step": 12300 + }, + { + "epoch": 96.87671232876713, + "grad_norm": 1.4527279138565063, + "learning_rate": 1.56640625e-06, + "loss": 0.32622470855712893, + "step": 12400 + }, + { + "epoch": 97.65753424657534, + "grad_norm": 1.784439206123352, + "learning_rate": 1.1796875e-06, + "loss": 0.3263894271850586, + "step": 12500 + }, + { + "epoch": 98.43835616438356, + "grad_norm": 1.4308785200119019, + "learning_rate": 7.890625e-07, + "loss": 0.32631328582763675, + "step": 12600 + }, + { + "epoch": 99.21917808219177, + "grad_norm": 1.5608457326889038, + "learning_rate": 3.9843750000000005e-07, + "loss": 0.32582923889160154, + "step": 12700 + }, + { + "epoch": 100.0, + "grad_norm": 1.582917332649231, + "learning_rate": 7.812500000000001e-09, + "loss": 0.3244577789306641, + "step": 12800 + } + ], + "logging_steps": 100, + "max_steps": 12800, + "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": 3338065988812800.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/training_args.bin b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/rtf_checkpoints/checkpoint-12800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/runtime_result.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..47e0151be7ec66f7d39919fc6d37f6850620011d --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "m7", + "model": "realtabformer", + "run_id": "rtf-m7-20260330_020623", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/rtf-m7-4088-20260418_121334.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/staged_features.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/test.csv b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/train.csv b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/val.csv b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/adapter_report.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d4c136c237fe5e68911bb28064f63b28f4aa065f --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/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-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6aea95b9bf7091ac4960a47c1e740576c73db61c --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "realtabformer", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/realtabformer/rtf-m7-20260330_020623/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/train_20260330_020623.log b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/train_20260330_020623.log new file mode 100644 index 0000000000000000000000000000000000000000..fcdaa5729b96342194169e146f8b714ef8ffaee2 --- /dev/null +++ b/syntheticSuccess/m7/realtabformer/rtf-m7-20260330_020623/train_20260330_020623.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ccb0230be65bbd8b1a17063ae01a0889340c1e32eca8cf8dca2324528f1196 +size 907257 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/_tabddpm_sample.py b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/_tabddpm_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..1fcf76d5e89367728e0b231972dd9f328de74701 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/_tabddpm_sample.py @@ -0,0 +1,67 @@ +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 4088 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/config_sample_20260424_034049.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV +work_dir = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725" +info_path = os.path.join(work_dir, "data", "info.json") +with open(info_path) as f: + info = json.load(f) + +output_dir = os.path.join(work_dir, "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-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/tabddpm-m7-4088-20260424_034049.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/tabddpm-m7-4088-20260424_034049.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/_tabddpm_train.py b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ce8e504ea3f558f5479c6b1f657fd5538a31586e --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/_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-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/config.toml b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..078cce3c915d1a434460375204750cd92e68cf12 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 2 +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/m7/tabddpm/tabddpm-m7-20260424_033725/config_sample_20260424_034049.toml b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/config_sample_20260424_034049.toml new file mode 100644 index 0000000000000000000000000000000000000000..3f4de2bfbade1439654e667a8baa11a9a57443d6 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/config_sample_20260424_034049.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 2 +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 = 4088 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/X_cat_train.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..22e66cc024d9b5074441448f37a305cc02e2220a --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77eabddf51b42a34df2c46915bd3f7823d70992a87a7b4348f0d965ea2758720 +size 229056 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/X_num_train.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..645d0375ebd1f8704052198fc7650cc89a19301f --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca67a733724ef0e1fc312d8790da6665adfa29b99d2264bdebbfe342a450e65d +size 65536 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/info.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..4c98bfc913fd4b92afa2da2f0b680a6cc921013d --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/info.json @@ -0,0 +1,40 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 4, + "n_cat_features": 7, + "train_size": 4088, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "target_col_idx": [ + 11 + ], + "column_names": [ + "id", + "age", + "avg_glucose_level", + "bmi", + "gender", + "hypertension", + "heart_disease", + "ever_married", + "work_type", + "smoking_status", + "stroke", + "Residence_type" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/y_train.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae7e223df47c6f53cf1054ecbcc52bdfe1fb80f6 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e399abec3c5595f31558fc561b9a593229ef5ff35f8da35a57ba44fd3e338f +size 32832 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/gen_20260424_034049.log b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/gen_20260424_034049.log new file mode 100644 index 0000000000000000000000000000000000000000..8a4e5a6f4fa20182bcef7bb93e405b6610811c6c --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/gen_20260424_034049.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8bf707e19e44fa7c7228a0f8ad22015b9804a6db8b05e2c36653146782bbe58 +size 105229 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/input_snapshot.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ce4336942b31429badb08ad4e4a8ff5ad6b4e74d --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_cat_train.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..d1da9aefbe1118bdc85bf28a2d7fab41b48bd367 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78ae179b2d1f5d5fa6ace9fe5683d7efd05dfd627a6d8b7950c4a4016833c97 +size 57573 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_cat_unnorm.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..d1250dddaf99e0b4ea37f35ea92f4fa0f12a8d3d --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4a0c148a017beccbbb2195767d51104d82b22bfddf87fe0244ba2adf2e51bd +size 229056 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_num_train.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6c654abb89d260c4a3c27d5041bd48cd1275ed71 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bff86cb891a4b3e000a51d399d3f386828f5bcda7b17d886dc2fd1e531a2e36 +size 130944 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_num_unnorm.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..782ee19649205c5361520faf51bf605647d4ca68 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbea1998f13cc6c29305c0fec1e4f166c778dd7bd9e006df72be3ffcb9c263f +size 130944 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/config.toml b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..3f4de2bfbade1439654e667a8baa11a9a57443d6 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 2 +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 = 4088 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/info.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..4c98bfc913fd4b92afa2da2f0b680a6cc921013d --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/info.json @@ -0,0 +1,40 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 4, + "n_cat_features": 7, + "train_size": 4088, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "target_col_idx": [ + 11 + ], + "column_names": [ + "id", + "age", + "avg_glucose_level", + "bmi", + "gender", + "hypertension", + "heart_disease", + "ever_married", + "work_type", + "smoking_status", + "stroke", + "Residence_type" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/loss.csv b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..8dce3ce6883e29b3aaeb5cb561916a2c0ad110c1 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3787baa5fa94aded4de1828260d8f1d2ba989caa4e7645bbd96e3ceb493fdcc9 +size 1480 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/model.pt b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..649d0c3471e1d6c8bac680e816ef66ef1475bacd --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7bdf0cdf73f06dc97a51142d75f414e20d49f863ef96d647f7e5f6e37d021a7 +size 568982 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/model_ema.pt b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..3b2c77be2b491438370b19bed7bbff2991e5ba3a --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4855ecbfbadd9a91e42cdaa0a24f76610dc420c57b6737dbbdfa7cbc79f2aaa +size 569826 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/y_train.npy b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..05c979709ef7a4a20f4b78afda115d596e875f70 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff55b1800240a5b47d59007eb962582f6002f96e54c88cb85425a88e31a6397b +size 32832 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/public_gate_report.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80f380088f87b4cb4220b0b279c821e7016bf87b --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/runtime_result.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0a5b2c2dbf5439955dcc3fef030c5170c9ed0ce9 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m7", + "model": "tabddpm", + "run_id": "tabddpm-m7-20260424_033725", + "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-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/tabddpm-m7-4088-20260424_034049.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/staged_features.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/test.csv b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/train.csv b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/val.csv b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/adapter_report.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..49ca1306601f680206b00c58c291ebd5d4cf3b72 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/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-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/adapter_transforms_applied.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/model_input_manifest.json b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5ed8adc402b5758d8a732e9afad7988399e6ac15 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "tabddpm", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabddpm/tabddpm-m7-20260424_033725/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/tabddpm-m7-4088-20260424_034049.csv b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/tabddpm-m7-4088-20260424_034049.csv new file mode 100644 index 0000000000000000000000000000000000000000..469babea741a0bb44f81850263735c3ead67e462 --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/tabddpm-m7-4088-20260424_034049.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1106953c4fbb1001fec56b4b72cce56b7d7038fcca548a18c2e114bf102e53 +size 411031 diff --git a/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/train_20260424_033725.log b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/train_20260424_033725.log new file mode 100644 index 0000000000000000000000000000000000000000..a6d55fd16738c8f518111a2b42f29b3b6b745caf --- /dev/null +++ b/syntheticSuccess/m7/tabddpm/tabddpm-m7-20260424_033725/train_20260424_033725.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145170b909cc073e225f2d4efa04f86b4d996b22b0723007e6c0a5cef8f62e6e +size 845 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/_tabsyn_sample.py b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..85007d0d5f1eabe70f8a4f6d1f91e0e2fa5c592d --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807" +dataname = "tabsyn_m7" +output_csv = "/work/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260502_050021.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 4088 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/m7/tabsyn/tabsyn-m7-20260420_221807/_tabsyn_train.py b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4012463b969e78b84763f5db452f5ebb10985ca8 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/_tabsyn_train.py @@ -0,0 +1,62 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807" +dataname = "tabsyn_m7" +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") +_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/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_cat_test.npy b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c465a4fcac15fcbb8237d6052f3707bc194127b --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101c28e9b959017c5587c968cbe4dc4c4fc08010a402f6293f50cd5963679637 +size 28744 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_cat_train.npy b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cb2b53ba05ccfe0d6951f94d5946c0c4d3a65033 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0d7cb00f7a8b441bd78306523d6e82237faed08401812009284b18049995f4 +size 257672 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_num_test.npy b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b748ffbc5ee19983f03bb4e1b6967a4ec822f324 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f46e1e0863ca8b62044578de4570ff3272289d7917ae91f7938b57361bbf6f +size 8304 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_num_train.npy b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b31c6b0067a45ce9445eb0cb0995b9c343c50ef1 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d38539a4fcf73b514bf938698a9d505336773d29021262fd235a9903c33a47e +size 73712 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/info.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/info.json new file mode 100644 index 0000000000000000000000000000000000000000..2774c093aeec1505116dca4806f5604523caa737 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/info.json @@ -0,0 +1,132 @@ +{ + "name": "tabsyn_m7", + "task_type": "multiclass", + "n_num_features": 4, + "n_cat_features": 7, + "train_size": 4599, + "num_col_idx": [ + 0, + 2, + 8, + 9 + ], + "cat_col_idx": [ + 1, + 3, + 4, + 5, + 6, + 10, + 11 + ], + "target_col_idx": [ + 7 + ], + "column_names": [ + "id", + "gender", + "age", + "hypertension", + "heart_disease", + "ever_married", + "work_type", + "Residence_type", + "avg_glucose_level", + "bmi", + "smoking_status", + "stroke" + ], + "train_num": 4599, + "test_num": 511, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m7/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 4, + "2": 1, + "3": 5, + "4": 6, + "5": 7, + "6": 8, + "7": 11, + "8": 2, + "9": 3, + "10": 9, + "11": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "4": 1, + "1": 2, + "5": 3, + "6": 4, + "7": 5, + "8": 6, + "11": 7, + "2": 8, + "3": 9, + "9": 10, + "10": 11 + }, + "idx_name_mapping": { + "0": "id", + "1": "gender", + "2": "age", + "3": "hypertension", + "4": "heart_disease", + "5": "ever_married", + "6": "work_type", + "7": "Residence_type", + "8": "avg_glucose_level", + "9": "bmi", + "10": "smoking_status", + "11": "stroke" + }, + "n_classes": 2, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/test.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2db20df22d87603fc9c5c41abe31648b3a53da43 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083da84806e8170ef5e7e3360fa2b1f4fbdef4dd1d5e7147aa29fe4e262e68a7 +size 19502 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/train.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c521227c35dc6e0a6801491f5ccaec7abded5f60 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01c57cbca2c28b41451dceab4e171d9a5d72447394b6e7fdba7da3d804f6a3d +size 174411 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/y_test.npy b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..fef9a345c720275557ae8b6053b7a46152dfc0b2 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef7f5752d14bfbe92acfae378c56c8267aaf6829a44a4d18481a74314832c40 +size 4216 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/y_train.npy b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..276b2e6f46cb99fcdd6511d86db3cb60ccd56088 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/data/tabsyn_m7/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea7fba46ebd9e369d59cd05fd8676b051ead19694eec113474e32cbe42e50ec +size 36920 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/gen_20260420_230908.log b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/gen_20260420_230908.log new file mode 100644 index 0000000000000000000000000000000000000000..07039d8ecdb9db1aaf62c4369713be96b9c2c608 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/gen_20260420_230908.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f088a3fae10bd6d7cbfb7a7525542b4640e89e2f1d2803b914fcd2dfa16d0a5a +size 665 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/gen_20260502_050021.log b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/gen_20260502_050021.log new file mode 100644 index 0000000000000000000000000000000000000000..44d6dc23458dfd793ec2b2aa468acebc92ca39b9 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/gen_20260502_050021.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a42d8408d656fa6952e254e9d030d2d2a5809698822ea54aff802c2f7098f0 +size 930 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/input_snapshot.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..29c02c0b29c28b296641d1ea25f4d0512df166ad --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/public_gate_report.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..da43bf5f30c2aa8ca7b86c9bb8a187f3c10a94f4 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/runtime_result.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a432d86839ea4cbf525a3fb85699430dd07f8ee2 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/runtime_result.json @@ -0,0 +1,26 @@ +{ + "dataset_id": "m7", + "model": "tabsyn", + "run_id": "tabsyn-m7-20260420_221807", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260502_050021.csv" + }, + "timings": { + "train": { + "started_at": null, + "ended_at": null, + "duration_sec": null + }, + "generate": { + "started_at": "2026-05-02T05:00:21", + "ended_at": "2026-05-02T05:00:25", + "duration_sec": 4.132 + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/staged_features.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/test.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/train.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/val.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/adapter_report.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e583528bcb30eb7de3f5c8bc3c8cd4cfa4f4eb9 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/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-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/adapter_transforms_applied.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/model_input_manifest.json b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c81016e0d228f9ea26778b9b0f34f70e316ba50c --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "tabsyn", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tabsyn/tabsyn-m7-20260420_221807/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/synthetic/tabsyn_m7/real.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/synthetic/tabsyn_m7/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..c521227c35dc6e0a6801491f5ccaec7abded5f60 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/synthetic/tabsyn_m7/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01c57cbca2c28b41451dceab4e171d9a5d72447394b6e7fdba7da3d804f6a3d +size 174411 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/synthetic/tabsyn_m7/test.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/synthetic/tabsyn_m7/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2db20df22d87603fc9c5c41abe31648b3a53da43 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/synthetic/tabsyn_m7/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083da84806e8170ef5e7e3360fa2b1f4fbdef4dd1d5e7147aa29fe4e262e68a7 +size 19502 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260420_230908.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260420_230908.csv new file mode 100644 index 0000000000000000000000000000000000000000..712200719db4e1ce832637702cfc9509f2c432dc --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260420_230908.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac41bc94bd5013cae7872425ca204a4d2bdcd94493f570b2e26b2bdfdc018bd6 +size 241463 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260502_050021.csv b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260502_050021.csv new file mode 100644 index 0000000000000000000000000000000000000000..755620d85ba247044328bf887388bba233c2f891 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/tabsyn-m7-4088-20260502_050021.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aefeea040fcf30731651506141b0ba4b03c5e478a57e0426d77daf64249e609 +size 241237 diff --git a/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/train_20260420_221807.log b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/train_20260420_221807.log new file mode 100644 index 0000000000000000000000000000000000000000..b4264c589381479b1cd6b1c4ce2fa6573c6dc062 --- /dev/null +++ b/syntheticSuccess/m7/tabsyn/tabsyn-m7-20260420_221807/train_20260420_221807.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1c691ce2b51a41eb0c39e7e8b05f5c807400827f0e13ee2f55d22207a924b1 +size 2703767 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/_tvae_generate.py b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b47a8158e12d9e33c5f7d7620dcf32c97f0cc177 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/_tvae_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/models_300epochs/tvae_300epochs.pt") +total = 4088 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +samples = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +samples.to_csv("/work/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/tvae-m7-4088-20260420_024605.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/tvae-m7-4088-20260420_024605.csv") diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/_tvae_train.py b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..cddaa52b27a6b0049ee03111a5b7d7eb0555eaa7 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/models_300epochs/tvae_300epochs.pt" +epochs = 300 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260328_053025.log b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260328_053025.log new file mode 100644 index 0000000000000000000000000000000000000000..d3aaa5f5c6e157299fe7b1a0e4978d0d1af32070 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260328_053025.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5272ee30c7e7727c9664f3e35db552f827506f541c1d2964546492b7c57bbc4e +size 1360 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260419_065547.log b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260419_065547.log new file mode 100644 index 0000000000000000000000000000000000000000..4cf25f28a513f26149af2d583fa8e29a6b91b3f9 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260419_065547.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87523d404f989bb911b99802573e9d97ced8306a1790a3f6a4f170325780de04 +size 2094 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260420_024605.log b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260420_024605.log new file mode 100644 index 0000000000000000000000000000000000000000..e5f78d0885d34c0a118f8193d30c8c6d0c5132da --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/gen_20260420_024605.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a84d41fd5a16655b09854131fc6cac8d72b1430f920d0116343a988bcae4f45 +size 539 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/input_snapshot.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..706290f79f05bbc57f53e6dba2728f8113c4b129 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m7", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "exists": true, + "size": 257258, + "sha256": "6458faf5495150c1433a95be37eb8d9605954f8474a3d40d9ab9d10adc4cf71e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "exists": true, + "size": 32142, + "sha256": "bb8674674733508f2c6940b78c07c601654827604862334f9b267e50a83ed9f7" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv", + "exists": true, + "size": 32328, + "sha256": "8b32eb82bd281650cd9f236ef26ec9cd6f02dbaba740770f0e3c4b94a189f3e7" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_profile.json", + "exists": true, + "size": 5020, + "sha256": "ab77a37aa06b0bb854623b7f0caab0c4d4ed05cfce61d9aaf0320c279b20fae5" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m7/m7-dataset_contract_v1.json", + "exists": true, + "size": 5995, + "sha256": "aa9654fbc1dc4029d109adf4117767c5a5c8e90b53bd3f9c698d7b71345cf5b3" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/models_300epochs/train_20260328_052614.log b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/models_300epochs/train_20260328_052614.log new file mode 100644 index 0000000000000000000000000000000000000000..2cd5817858180b64d06af71a1fdc83fccf716b4a --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/models_300epochs/train_20260328_052614.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3948f226903cada55a42b1dcfb88110f8149076880ce3bff45cb7366395e3ee +size 170 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/models_300epochs/tvae_300epochs.pt b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..243db0387079a5878467ca69a15de7eccb081f3b --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7566f298987ecfaec674eb0496d6d023301b6f175a371db6fa1e662e898715dc +size 565548 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7c238813dfc1c69038c9a1e618e913e30089a647 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/public_gate_report.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44e50731ec49d4928f7a7fdc3843ec48e82b970d --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m7", + "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": "Residence_type", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m7/m7-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/staged_input_manifest.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..26f140d2054889b4ee7ad57c9341a5ee9383cbe6 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/public_gate/staged_input_manifest.json @@ -0,0 +1,247 @@ +{ + "dataset_id": "m7", + "target_column": "Residence_type", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/runtime_result.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d3c959864f2fa6fbaa7261f59017780be0a63f5c --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "m7", + "model": "tvae", + "run_id": "tvae-m7-20260328_052614", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/tvae-m7-4088-20260420_024605.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/staged_features.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..e26f1704fb0f87a19ba630fae2eca86da42f4351 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "gender", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "hypertension", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "heart_disease", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "ever_married", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "work_type", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Residence_type", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "avg_glucose_level", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoking_status", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "stroke", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/test.csv b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62356a4507e26f001358cade2a3cfad46c7591ed --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed44e06410b9395c5c85e238168df0c6952d61bdfe49424863c651ef2b1f4bd8 +size 32934 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/train.csv b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..78eb5ca5098b2cee8ce1f772367c8fdaa201276a --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842ac0ec4c47a15867ef35ae0ceede4ef955e556ad5220f982151d22894e25d +size 262059 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/val.csv b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2126589cc12e5c467611c829c49647b48fbcbe2 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca541bece6380791dc2c9f7012ec8acbde8a8d270578cc5e031b739f7a761bf8 +size 32704 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/adapter_report.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..65b384a00dcc16c98c10fd2b9ded0dba2b590c74 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/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-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/adapter_transforms_applied.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/model_input_manifest.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8e290ebf14b417508ad2e6d7bc968ed863748cf4 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/staged/tvae/model_input_manifest.json @@ -0,0 +1,249 @@ +{ + "dataset_id": "m7", + "model": "tvae", + "target_column": "Residence_type", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4088, + "unique_ratio": 1.0, + "example_values": [ + "35296", + "36710", + "32733", + "1077", + "13223" + ] + } + }, + { + "name": "gender", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Female", + "Male" + ] + } + }, + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 104, + "unique_ratio": 0.02544, + "example_values": [ + "58", + "64", + "28", + "77", + "53" + ] + } + }, + { + "name": "hypertension", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "heart_disease", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "ever_married", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Yes", + "No" + ] + } + }, + { + "name": "work_type", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.001223, + "example_values": [ + "Private", + "Govt_job", + "Self-employed", + "children", + "Never_worked" + ] + } + }, + { + "name": "Residence_type", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "Rural", + "Urban" + ] + } + }, + { + "name": "avg_glucose_level", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3337, + "unique_ratio": 0.816292, + "example_values": [ + "100.42", + "62.21", + "106.68", + "106.03", + "86.39" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": true, + "missing_tokens": [ + "N/A" + ], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.039873, + "unique_count": 396, + "unique_ratio": 0.100892, + "example_values": [ + "39.5", + "28.3", + "29.3", + "30.2", + "48.9" + ] + } + }, + { + "name": "smoking_status", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000978, + "example_values": [ + "smokes", + "Unknown", + "never smoked", + "formerly smoked" + ] + } + }, + { + "name": "stroke", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000489, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m7/tvae/tvae-m7-20260328_052614/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/tvae-m7-4088-20260420_024605.csv b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/tvae-m7-4088-20260420_024605.csv new file mode 100644 index 0000000000000000000000000000000000000000..9f898450a64959517a47d94e1dcf9ad6adcb4abd --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/tvae-m7-4088-20260420_024605.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff8a44ab36e223fbad11ed0ddc52911674b7d5c7493f4704db0139f9fb72d14 +size 390785 diff --git a/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/tvae_metadata.json b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..401efafec49762d3e443188f4f45914377273a24 --- /dev/null +++ b/syntheticSuccess/m7/tvae/tvae-m7-20260328_052614/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "id", + "type": "continuous" + }, + { + "name": "gender", + "type": "categorical" + }, + { + "name": "age", + "type": "continuous" + }, + { + "name": "hypertension", + "type": "categorical" + }, + { + "name": "heart_disease", + "type": "categorical" + }, + { + "name": "ever_married", + "type": "categorical" + }, + { + "name": "work_type", + "type": "categorical" + }, + { + "name": "Residence_type", + "type": "categorical" + }, + { + "name": "avg_glucose_level", + "type": "continuous" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "smoking_status", + "type": "categorical" + }, + { + "name": "stroke", + "type": "categorical" + } + ] +} \ No newline at end of file