diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/_arf_generate.py b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..971bdabba7ec2743cdc20093f6a3c39b2b50c917 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(3539) +with open("/work/output-SpecializedModels/m5/arf/arf-m5-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/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv") diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/_arf_train.py b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..74600c4cdbbbbeb2eec983bcbe08e13d011f5f6a --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-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/m5/arf/arf-m5-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/m5/arf/arf-m5-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl") diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv new file mode 100644 index 0000000000000000000000000000000000000000..38d4c3a404df27b37cbdb37058b94203207d7b75 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12bd49daeec11a0c2f5635a2615285bcc458c6b27f7b13f21ba3399dc5b03c08 +size 1912738 diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/arf_model.pkl b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..17c4e257d185ddccee39bbcff141db2b1c2b6816 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48297851fbf4b5cb9749048d291da9bcc117578ebf36ce6ec610ee5a15389a2b +size 51471366 diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/gen_20260422_060829.log b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/gen_20260422_060829.log new file mode 100644 index 0000000000000000000000000000000000000000..a8ff047929a55ab89d233eac334109352b8375cd --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/gen_20260422_060829.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43abd61e2dad5483d73dcd3fe330bca0780011a3c44d171edebc8d9b892ed7fb +size 455 diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/input_snapshot.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..483ade1860f9042eaf2131dd756fa47562428f43 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..49503cc9287b1989fe937d03229183ef86390706 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/runtime_result.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2fcf0ddf18baaad8dd5642b606d019f898b1db11 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "arf", + "run_id": "arf-m5-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/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_report.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..82c63134f52aa61d01b5ca5c968192069fdd92c7 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-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/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..148ce861c56dea9c0f72231caa82a18265a3e6a1 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "arf", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/test.csv b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/train.csv b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/val.csv b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/arf/arf-m5-20260422_055912/train_20260422_055912.log b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/train_20260422_055912.log new file mode 100644 index 0000000000000000000000000000000000000000..4972d45eaadb0d078a9d44ca77b9a427e30c5aa2 --- /dev/null +++ b/syntheticSuccess/m5/arf/arf-m5-20260422_055912/train_20260422_055912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6083e73e5532ece05305d1fe94141798440d70d9770d2b6d037c0d04f76efdd1 +size 467 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_generate.py b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c0f5f65b156d94896a43bd24639158f6d33f54e9 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_generate.py @@ -0,0 +1,104 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3539) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final.to_csv("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv") diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_train.py b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..06a11cdef725e8aabd7f54439f8ee728fa9f10b0 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_train.py @@ -0,0 +1,118 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/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/m5/bayesnet/bayesnet-m5-20260422_060152/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/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 +if _n_plan > 55: + max_bins = 4 +print(f"[BayesNet] max_bins={max_bins} (cols_in_df={_n_plan}, rows={_n_samples})") + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + 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)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +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/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl") diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv new file mode 100644 index 0000000000000000000000000000000000000000..3fe65da3bb1816cc80278628093c2580b3d2663c --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dfacf8926d94c75ec9a9a12bc7ed2c1afcb522fc337e28672f47911a63b92e3 +size 1919273 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..f2aafdca33ce2427ea01e88be49a7410e750b6fa --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json @@ -0,0 +1,153 @@ +{ + "columns": [ + { + "name": "Marital status", + "type": "continuous" + }, + { + "name": "Application mode", + "type": "continuous" + }, + { + "name": "Application order", + "type": "continuous" + }, + { + "name": "Course", + "type": "continuous" + }, + { + "name": "Daytime/evening attendance", + "type": "categorical" + }, + { + "name": "Previous qualification", + "type": "continuous" + }, + { + "name": "Previous qualification (grade)", + "type": "continuous" + }, + { + "name": "Nacionality", + "type": "continuous" + }, + { + "name": "Mother's qualification", + "type": "continuous" + }, + { + "name": "Father's qualification", + "type": "continuous" + }, + { + "name": "Mother's occupation", + "type": "continuous" + }, + { + "name": "Father's occupation", + "type": "continuous" + }, + { + "name": "Admission grade", + "type": "continuous" + }, + { + "name": "Displaced", + "type": "categorical" + }, + { + "name": "Educational special needs", + "type": "categorical" + }, + { + "name": "Debtor", + "type": "categorical" + }, + { + "name": "Tuition fees up to date", + "type": "categorical" + }, + { + "name": "Gender", + "type": "categorical" + }, + { + "name": "Scholarship holder", + "type": "categorical" + }, + { + "name": "Age at enrollment", + "type": "continuous" + }, + { + "name": "International", + "type": "categorical" + }, + { + "name": "Curricular units 1st sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Unemployment rate", + "type": "continuous" + }, + { + "name": "Inflation rate", + "type": "continuous" + }, + { + "name": "GDP", + "type": "continuous" + }, + { + "name": "Target", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..bbc82bfd10d7e6bae343ead4a2ada1df88c24d33 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b14884707956f60bc2b120e7ad887d5ababd59542201c79e2632563d19b6f4e +size 23577 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/const_cols.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/gen_20260422_060305.log b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/gen_20260422_060305.log new file mode 100644 index 0000000000000000000000000000000000000000..2c4db16460f5d923167ac82e79ada1e72a40a62b --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/gen_20260422_060305.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab03b1da312114c594d84f250952034574fd80ad4c7d7e809a5f4f537edbd0bb +size 3387 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/input_snapshot.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e6e31e70cde4c79c092d747472a17376f91780f7 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..45a9229d5ad635de7c800ef30a840e846cc7785f --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/runtime_result.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d434256d715033551bf4679f670924b1aaeb0b91 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "bayesnet", + "run_id": "bayesnet-m5-20260422_060152", + "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/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_report.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6fac645cff5faf677a6163d3b755eb8cb32230b7 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/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/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3de3182a687f9ed58474b025442bd13ad476f173 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "bayesnet", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/train_20260422_060152.log b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/train_20260422_060152.log new file mode 100644 index 0000000000000000000000000000000000000000..0c78d2994a12b49b148f37eac80b0d3854480f40 --- /dev/null +++ b/syntheticSuccess/m5/bayesnet/bayesnet-m5-20260422_060152/train_20260422_060152.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b04263f1043980be5de1a117a1d6bac7bdf9407e8cf70daa9786dc955db745 +size 3934 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/_ctgan_generate.py b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..f3001f89d81c27ebcc04083ddf9363aef41f5379 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/_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/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt") +total = 3539 +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/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv") \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv new file mode 100644 index 0000000000000000000000000000000000000000..dfc2ed8baad7c50b088409a1a4746c06fd536e1d --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a46cb75fbe6817954b29f51bf7fb765aad55ff8144065c639707d474f0a2584 +size 732426 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/ctgan_metadata.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..78428a5013d9449b0de0dcdca59aeab32ecc52d3 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/ctgan_metadata.json @@ -0,0 +1,152 @@ +{ + "columns": [ + { + "name": "Marital status", + "type": "continuous" + }, + { + "name": "Application mode", + "type": "continuous" + }, + { + "name": "Application order", + "type": "continuous" + }, + { + "name": "Course", + "type": "continuous" + }, + { + "name": "Daytime/evening attendance", + "type": "categorical" + }, + { + "name": "Previous qualification", + "type": "continuous" + }, + { + "name": "Previous qualification (grade)", + "type": "continuous" + }, + { + "name": "Nacionality", + "type": "continuous" + }, + { + "name": "Mother's qualification", + "type": "continuous" + }, + { + "name": "Father's qualification", + "type": "continuous" + }, + { + "name": "Mother's occupation", + "type": "continuous" + }, + { + "name": "Father's occupation", + "type": "continuous" + }, + { + "name": "Admission grade", + "type": "continuous" + }, + { + "name": "Displaced", + "type": "categorical" + }, + { + "name": "Educational special needs", + "type": "categorical" + }, + { + "name": "Debtor", + "type": "categorical" + }, + { + "name": "Tuition fees up to date", + "type": "categorical" + }, + { + "name": "Gender", + "type": "categorical" + }, + { + "name": "Scholarship holder", + "type": "categorical" + }, + { + "name": "Age at enrollment", + "type": "continuous" + }, + { + "name": "International", + "type": "categorical" + }, + { + "name": "Curricular units 1st sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Unemployment rate", + "type": "continuous" + }, + { + "name": "Inflation rate", + "type": "continuous" + }, + { + "name": "GDP", + "type": "continuous" + }, + { + "name": "Target", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/gen_20260422_030436.log b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/gen_20260422_030436.log new file mode 100644 index 0000000000000000000000000000000000000000..e548ee05f08c8543b43cd64842d53e147bc996d5 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/gen_20260422_030436.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83da843b93523372d62d770c2a6b490e858e5484f03a288b994fe0b79a163c91 +size 292 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/input_snapshot.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0b661077f498b13a0aacdf82feb90bfe71ba8d80 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..d99b548971270e60a83426c8d80056363a30e4a8 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f04bfff173de89638c5f01ff144afee199c073a48f88cc51ac9eb1c88fb129 +size 2512675 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/train_20260422_025942.log b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/train_20260422_025942.log new file mode 100644 index 0000000000000000000000000000000000000000..11d955d033e92fd0e01845e6f2e312b6e43c7817 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/train_20260422_025942.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77331457cbe82bb86c2c39eef439f80ab16d0a8b1eaa7a9f1b6def8ec9355335 +size 6072 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6a2fd35d3815ae545e5da203f6bfb5a0bb658ae4 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/runtime_result.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bd5aeac6a8cafdd2b0ca79314b7c12a6a1a6e50f --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "ctgan", + "run_id": "ctgan-m5-20260422_025941", + "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/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_report.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..94edade5d16f10cf5d8638b49d39146adca936f1 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/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/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_transforms_applied.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..203e5543baa9ba530c66b1de8771003bc9cb1d7e --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "ctgan", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/gen_20260330_014804.log b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/gen_20260330_014804.log new file mode 100644 index 0000000000000000000000000000000000000000..9eb95bfc36adf32bd3ae712d2e922e33cb899d64 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/gen_20260330_014804.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d24ef206dfec5eddb7612764aebb2e5321fc8172b52eaa9687e6b5e9f591dbb +size 793 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/gen_20260418_111310.log b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/gen_20260418_111310.log new file mode 100644 index 0000000000000000000000000000000000000000..6646d6e269963ede2abe9ec86567d69c4c2b9912 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/gen_20260418_111310.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b35b2437204797f569638bf566a7721eaec76f7e2cd2a1c446d5e703285b05e +size 2052 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/input_snapshot.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..737ec12ad23da38fd39679af43a1093443997bce --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs/id000017748064808139433984/rtf_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs/id000017748064808139433984/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..72b6ba4ea6bd814405d69ec1a5df8be9545e9cd8 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs/id000017748064808139433984/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"add_cross_attention": false, "tie_word_embeddings": true, "vocab_size": 558, "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": ["Marital status", "Application mode", "Application order", "Course", "Daytime/evening attendance", "Previous qualification", "Previous qualification (grade)", "Nacionality", "Mother's qualification", "Father's qualification", "Mother's occupation", "Father's occupation", "Admission grade", "Displaced", "Educational special needs", "Debtor", "Tuition fees up to date", "Gender", "Scholarship holder", "Age at enrollment", "International", "Curricular units 1st sem (credited)", "Curricular units 1st sem (enrolled)", "Curricular units 1st sem (evaluations)", "Curricular units 1st sem (approved)", "Curricular units 1st sem (grade)", "Curricular units 1st sem (without evaluations)", "Curricular units 2nd sem (credited)", "Curricular units 2nd sem (enrolled)", "Curricular units 2nd sem (evaluations)", "Curricular units 2nd sem (approved)", "Curricular units 2nd sem (grade)", "Curricular units 2nd sem (without evaluations)", "Unemployment rate", "Inflation rate", "GDP", "Target"], "column_dtypes": {"Marital status": "int64", "Application mode": "int64", "Application order": "int64", "Course": "int64", "Daytime/evening attendance": "object", "Previous qualification": "int64", "Previous qualification (grade)": "float64", "Nacionality": "int64", "Mother's qualification": "int64", "Father's qualification": "int64", "Mother's occupation": "int64", "Father's occupation": "int64", "Admission grade": "float64", "Displaced": "object", "Educational special needs": "object", "Debtor": "object", "Tuition fees up to date": "object", "Gender": "object", "Scholarship holder": "object", "Age at enrollment": "int64", "International": "object", "Curricular units 1st sem (credited)": "int64", "Curricular units 1st sem (enrolled)": "int64", "Curricular units 1st sem (evaluations)": "int64", "Curricular units 1st sem (approved)": "int64", "Curricular units 1st sem (grade)": "float64", "Curricular units 1st sem (without evaluations)": "int64", "Curricular units 2nd sem (credited)": "int64", "Curricular units 2nd sem (enrolled)": "int64", "Curricular units 2nd sem (evaluations)": "int64", "Curricular units 2nd sem (approved)": "int64", "Curricular units 2nd sem (grade)": "float64", "Curricular units 2nd sem (without evaluations)": "int64", "Unemployment rate": "float64", "Inflation rate": "float64", "GDP": "float64", "Target": "object"}, "column_has_missing": {"Marital status": false, "Application mode": false, "Application order": false, "Course": false, "Daytime/evening attendance": false, "Previous qualification": false, "Previous qualification (grade)": false, "Nacionality": false, "Mother's qualification": false, "Father's qualification": false, "Mother's occupation": false, "Father's occupation": false, "Admission grade": false, "Displaced": false, "Educational special needs": false, "Debtor": false, "Tuition fees up to date": false, "Gender": false, "Scholarship holder": false, "Age at enrollment": false, "International": false, "Curricular units 1st sem (credited)": false, "Curricular units 1st sem (enrolled)": false, "Curricular units 1st sem (evaluations)": false, "Curricular units 1st sem (approved)": false, "Curricular units 1st sem (grade)": false, "Curricular units 1st sem (without evaluations)": false, "Curricular units 2nd sem (credited)": false, "Curricular units 2nd sem (enrolled)": false, "Curricular units 2nd sem (evaluations)": false, "Curricular units 2nd sem (approved)": false, "Curricular units 2nd sem (grade)": false, "Curricular units 2nd sem (without evaluations)": false, "Unemployment rate": false, "Inflation rate": false, "GDP": false, "Target": false}, "drop_na_cols": ["Marital status", "Application mode", "Application order", "Course", "Daytime/evening attendance", "Previous qualification", "Previous qualification (grade)", "Nacionality", "Mother's qualification", "Father's qualification", "Mother's occupation", "Father's occupation", "Admission grade", "Displaced", "Educational special needs", "Debtor", "Tuition fees up to date", "Gender", "Scholarship holder", "Age at enrollment", "International", "Curricular units 1st sem (credited)", "Curricular units 1st sem (enrolled)", "Curricular units 1st sem (evaluations)", "Curricular units 1st sem (approved)", "Curricular units 1st sem (grade)", "Curricular units 1st sem (without evaluations)", "Curricular units 2nd sem (credited)", "Curricular units 2nd sem (enrolled)", "Curricular units 2nd sem (evaluations)", "Curricular units 2nd sem (approved)", "Curricular units 2nd sem (grade)", "Curricular units 2nd sem (without evaluations)", "Unemployment rate", "Inflation rate", "GDP", "Target"], "processed_columns": ["00___NUMERIC___Marital status_00", "01___NUMERIC___Application mode_00", "01___NUMERIC___Application mode_01", "02___NUMERIC___Application order_00", "03___NUMERIC___Course_00", "03___NUMERIC___Course_01", "03___NUMERIC___Course_02", "03___NUMERIC___Course_03", "04___CATEGORICAL___Daytime/evening attendance", "05___NUMERIC___Previous qualification_00", "05___NUMERIC___Previous qualification_01", "06___NUMERIC___Previous qualification (grade)_00", "06___NUMERIC___Previous qualification (grade)_01", "06___NUMERIC___Previous qualification (grade)_02", "06___NUMERIC___Previous qualification (grade)_03", "06___NUMERIC___Previous qualification (grade)_04", "07___NUMERIC___Nacionality_00", "07___NUMERIC___Nacionality_01", "07___NUMERIC___Nacionality_02", "08___NUMERIC___Mother's qualification_00", "08___NUMERIC___Mother's qualification_01", "09___NUMERIC___Father's qualification_00", "09___NUMERIC___Father's qualification_01", "10___NUMERIC___Mother's occupation_00", "10___NUMERIC___Mother's occupation_01", "10___NUMERIC___Mother's occupation_02", "11___NUMERIC___Father's occupation_00", "11___NUMERIC___Father's occupation_01", "11___NUMERIC___Father's occupation_02", "12___NUMERIC___Admission grade_00", "12___NUMERIC___Admission grade_01", "12___NUMERIC___Admission grade_02", "12___NUMERIC___Admission grade_03", "12___NUMERIC___Admission grade_04", "13___CATEGORICAL___Displaced", "14___CATEGORICAL___Educational special needs", "15___CATEGORICAL___Debtor", "16___CATEGORICAL___Tuition fees up to date", "17___CATEGORICAL___Gender", "18___CATEGORICAL___Scholarship holder", "19___NUMERIC___Age at enrollment_00", "19___NUMERIC___Age at enrollment_01", "20___CATEGORICAL___International", "21___NUMERIC___Curricular units 1st sem (credited)_00", "21___NUMERIC___Curricular units 1st sem (credited)_01", "22___NUMERIC___Curricular units 1st sem (enrolled)_00", "22___NUMERIC___Curricular units 1st sem (enrolled)_01", "23___NUMERIC___Curricular units 1st sem (evaluations)_00", "23___NUMERIC___Curricular units 1st sem (evaluations)_01", "24___NUMERIC___Curricular units 1st sem (approved)_00", "24___NUMERIC___Curricular units 1st sem (approved)_01", "25___NUMERIC___Curricular units 1st sem (grade)_00", "25___NUMERIC___Curricular units 1st sem (grade)_01", "25___NUMERIC___Curricular units 1st sem (grade)_02", "25___NUMERIC___Curricular units 1st sem (grade)_03", "25___NUMERIC___Curricular units 1st sem (grade)_04", "25___NUMERIC___Curricular units 1st sem (grade)_05", "25___NUMERIC___Curricular units 1st sem (grade)_06", "26___NUMERIC___Curricular units 1st sem (without evaluations)_00", "26___NUMERIC___Curricular units 1st sem (without evaluations)_01", "27___NUMERIC___Curricular units 2nd sem (credited)_00", "27___NUMERIC___Curricular units 2nd sem (credited)_01", "28___NUMERIC___Curricular units 2nd sem (enrolled)_00", "28___NUMERIC___Curricular units 2nd sem (enrolled)_01", "29___NUMERIC___Curricular units 2nd sem (evaluations)_00", "29___NUMERIC___Curricular units 2nd sem (evaluations)_01", "30___NUMERIC___Curricular units 2nd sem (approved)_00", "30___NUMERIC___Curricular units 2nd sem (approved)_01", "31___NUMERIC___Curricular units 2nd sem (grade)_00", "31___NUMERIC___Curricular units 2nd sem (grade)_01", "31___NUMERIC___Curricular units 2nd sem (grade)_02", "31___NUMERIC___Curricular units 2nd sem (grade)_03", "31___NUMERIC___Curricular units 2nd sem (grade)_04", "31___NUMERIC___Curricular units 2nd sem (grade)_05", "31___NUMERIC___Curricular units 2nd sem (grade)_06", "32___NUMERIC___Curricular units 2nd sem (without evaluations)_00", "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01", "33___NUMERIC___Unemployment rate_00", "33___NUMERIC___Unemployment rate_01", "33___NUMERIC___Unemployment rate_02", "33___NUMERIC___Unemployment rate_03", "34___NUMERIC___Inflation rate_00", "34___NUMERIC___Inflation rate_01", "34___NUMERIC___Inflation rate_02", "34___NUMERIC___Inflation rate_03", "35___NUMERIC___GDP_00", "35___NUMERIC___GDP_01", "35___NUMERIC___GDP_02", "35___NUMERIC___GDP_03", "35___NUMERIC___GDP_04", "36___CATEGORICAL___Target"], "numeric_columns": ["Marital status", "Application mode", "Application order", "Course", "Previous qualification", "Previous qualification (grade)", "Nacionality", "Mother's qualification", "Father's qualification", "Mother's occupation", "Father's occupation", "Admission grade", "Age at enrollment", "Curricular units 1st sem (credited)", "Curricular units 1st sem (enrolled)", "Curricular units 1st sem (evaluations)", "Curricular units 1st sem (approved)", "Curricular units 1st sem (grade)", "Curricular units 1st sem (without evaluations)", "Curricular units 2nd sem (credited)", "Curricular units 2nd sem (enrolled)", "Curricular units 2nd sem (evaluations)", "Curricular units 2nd sem (approved)", "Curricular units 2nd sem (grade)", "Curricular units 2nd sem (without evaluations)", "Unemployment rate", "Inflation rate", "GDP"], "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___Marital status_00___1", "12": "00___NUMERIC___Marital status_00___2", "13": "00___NUMERIC___Marital status_00___3", "14": "00___NUMERIC___Marital status_00___4", "15": "00___NUMERIC___Marital status_00___5", "16": "00___NUMERIC___Marital status_00___6", "17": "01___NUMERIC___Application mode_00___0", "18": "01___NUMERIC___Application mode_00___1", "19": "01___NUMERIC___Application mode_00___2", "20": "01___NUMERIC___Application mode_00___3", "21": "01___NUMERIC___Application mode_00___4", "22": "01___NUMERIC___Application mode_00___5", "23": "01___NUMERIC___Application mode_01___0", "24": "01___NUMERIC___Application mode_01___1", "25": "01___NUMERIC___Application mode_01___2", "26": "01___NUMERIC___Application mode_01___3", "27": "01___NUMERIC___Application mode_01___4", "28": "01___NUMERIC___Application mode_01___5", "29": "01___NUMERIC___Application mode_01___6", "30": "01___NUMERIC___Application mode_01___7", "31": "01___NUMERIC___Application mode_01___8", "32": "01___NUMERIC___Application mode_01___9", "33": "02___NUMERIC___Application order_00___0", "34": "02___NUMERIC___Application order_00___1", "35": "02___NUMERIC___Application order_00___2", "36": "02___NUMERIC___Application order_00___3", "37": "02___NUMERIC___Application order_00___4", "38": "02___NUMERIC___Application order_00___5", "39": "02___NUMERIC___Application order_00___6", "40": "02___NUMERIC___Application order_00___9", "41": "03___NUMERIC___Course_00___0", "42": "03___NUMERIC___Course_00___8", "43": "03___NUMERIC___Course_00___9", "44": "03___NUMERIC___Course_01___0", "45": "03___NUMERIC___Course_01___1", "46": "03___NUMERIC___Course_01___2", "47": "03___NUMERIC___Course_01___5", "48": "03___NUMERIC___Course_01___6", "49": "03___NUMERIC___Course_01___7", "50": "03___NUMERIC___Course_01___8", "51": "03___NUMERIC___Course_01___9", "52": "03___NUMERIC___Course_02___0", "53": "03___NUMERIC___Course_02___1", "54": "03___NUMERIC___Course_02___3", "55": "03___NUMERIC___Course_02___4", "56": "03___NUMERIC___Course_02___5", "57": "03___NUMERIC___Course_02___7", "58": "03___NUMERIC___Course_02___8", "59": "03___NUMERIC___Course_02___9", "60": "03___NUMERIC___Course_03___0", "61": "03___NUMERIC___Course_03___1", "62": "03___NUMERIC___Course_03___3", "63": "03___NUMERIC___Course_03___4", "64": "03___NUMERIC___Course_03___5", "65": "03___NUMERIC___Course_03___6", "66": "03___NUMERIC___Course_03___7", "67": "03___NUMERIC___Course_03___8", "68": "03___NUMERIC___Course_03___9", "69": "04___CATEGORICAL___Daytime/evening attendance___0", "70": "04___CATEGORICAL___Daytime/evening attendance___1", "71": "05___NUMERIC___Previous qualification_00___0", "72": "05___NUMERIC___Previous qualification_00___1", "73": "05___NUMERIC___Previous qualification_00___3", "74": "05___NUMERIC___Previous qualification_00___4", "75": "05___NUMERIC___Previous qualification_01___0", "76": "05___NUMERIC___Previous qualification_01___1", "77": "05___NUMERIC___Previous qualification_01___2", "78": "05___NUMERIC___Previous qualification_01___3", "79": "05___NUMERIC___Previous qualification_01___4", "80": "05___NUMERIC___Previous qualification_01___5", "81": "05___NUMERIC___Previous qualification_01___6", "82": "05___NUMERIC___Previous qualification_01___8", "83": "05___NUMERIC___Previous qualification_01___9", "84": "06___NUMERIC___Previous qualification (grade)_00___0", "85": "06___NUMERIC___Previous qualification (grade)_00___1", "86": "06___NUMERIC___Previous qualification (grade)_01___0", "87": "06___NUMERIC___Previous qualification (grade)_01___1", "88": "06___NUMERIC___Previous qualification (grade)_01___2", "89": "06___NUMERIC___Previous qualification (grade)_01___3", "90": "06___NUMERIC___Previous qualification (grade)_01___4", "91": "06___NUMERIC___Previous qualification (grade)_01___5", "92": "06___NUMERIC___Previous qualification (grade)_01___6", "93": "06___NUMERIC___Previous qualification (grade)_01___7", "94": "06___NUMERIC___Previous qualification (grade)_01___8", "95": "06___NUMERIC___Previous qualification (grade)_01___9", "96": "06___NUMERIC___Previous qualification (grade)_02___0", "97": "06___NUMERIC___Previous qualification (grade)_02___1", "98": "06___NUMERIC___Previous qualification (grade)_02___2", "99": "06___NUMERIC___Previous qualification (grade)_02___3", "100": "06___NUMERIC___Previous qualification (grade)_02___4", "101": "06___NUMERIC___Previous qualification (grade)_02___5", "102": "06___NUMERIC___Previous qualification (grade)_02___6", "103": "06___NUMERIC___Previous qualification (grade)_02___7", "104": "06___NUMERIC___Previous qualification (grade)_02___8", "105": "06___NUMERIC___Previous qualification (grade)_02___9", "106": "06___NUMERIC___Previous qualification (grade)_03___.", "107": "06___NUMERIC___Previous qualification (grade)_04___0", "108": "06___NUMERIC___Previous qualification (grade)_04___1", "109": "06___NUMERIC___Previous qualification (grade)_04___3", "110": "06___NUMERIC___Previous qualification (grade)_04___4", "111": "06___NUMERIC___Previous qualification (grade)_04___6", "112": "06___NUMERIC___Previous qualification (grade)_04___7", "113": "06___NUMERIC___Previous qualification (grade)_04___8", "114": "06___NUMERIC___Previous qualification (grade)_04___9", "115": "07___NUMERIC___Nacionality_00___0", "116": "07___NUMERIC___Nacionality_00___1", "117": "07___NUMERIC___Nacionality_01___0", "118": "07___NUMERIC___Nacionality_01___1", "119": "07___NUMERIC___Nacionality_01___2", "120": "07___NUMERIC___Nacionality_01___3", "121": "07___NUMERIC___Nacionality_01___4", "122": "07___NUMERIC___Nacionality_01___6", "123": "07___NUMERIC___Nacionality_02___0", "124": "07___NUMERIC___Nacionality_02___1", "125": "07___NUMERIC___Nacionality_02___2", "126": "07___NUMERIC___Nacionality_02___3", "127": "07___NUMERIC___Nacionality_02___4", "128": "07___NUMERIC___Nacionality_02___5", "129": "07___NUMERIC___Nacionality_02___6", "130": "07___NUMERIC___Nacionality_02___7", "131": "07___NUMERIC___Nacionality_02___8", "132": "07___NUMERIC___Nacionality_02___9", "133": "08___NUMERIC___Mother's qualification_00___0", "134": "08___NUMERIC___Mother's qualification_00___1", "135": "08___NUMERIC___Mother's qualification_00___2", "136": "08___NUMERIC___Mother's qualification_00___3", "137": "08___NUMERIC___Mother's qualification_00___4", "138": "08___NUMERIC___Mother's qualification_01___0", "139": "08___NUMERIC___Mother's qualification_01___1", "140": "08___NUMERIC___Mother's qualification_01___2", "141": "08___NUMERIC___Mother's qualification_01___3", "142": "08___NUMERIC___Mother's qualification_01___4", "143": "08___NUMERIC___Mother's qualification_01___5", "144": "08___NUMERIC___Mother's qualification_01___6", "145": "08___NUMERIC___Mother's qualification_01___7", "146": "08___NUMERIC___Mother's qualification_01___8", "147": "08___NUMERIC___Mother's qualification_01___9", "148": "09___NUMERIC___Father's qualification_00___0", "149": "09___NUMERIC___Father's qualification_00___1", "150": "09___NUMERIC___Father's qualification_00___2", "151": "09___NUMERIC___Father's qualification_00___3", "152": "09___NUMERIC___Father's qualification_00___4", "153": "09___NUMERIC___Father's qualification_01___0", "154": "09___NUMERIC___Father's qualification_01___1", "155": "09___NUMERIC___Father's qualification_01___2", "156": "09___NUMERIC___Father's qualification_01___3", "157": "09___NUMERIC___Father's qualification_01___4", "158": "09___NUMERIC___Father's qualification_01___5", "159": "09___NUMERIC___Father's qualification_01___6", "160": "09___NUMERIC___Father's qualification_01___7", "161": "09___NUMERIC___Father's qualification_01___8", "162": "09___NUMERIC___Father's qualification_01___9", "163": "10___NUMERIC___Mother's occupation_00___0", "164": "10___NUMERIC___Mother's occupation_00___1", "165": "10___NUMERIC___Mother's occupation_01___0", "166": "10___NUMERIC___Mother's occupation_01___1", "167": "10___NUMERIC___Mother's occupation_01___2", "168": "10___NUMERIC___Mother's occupation_01___3", "169": "10___NUMERIC___Mother's occupation_01___4", "170": "10___NUMERIC___Mother's occupation_01___5", "171": "10___NUMERIC___Mother's occupation_01___7", "172": "10___NUMERIC___Mother's occupation_01___9", "173": "10___NUMERIC___Mother's occupation_02___0", "174": "10___NUMERIC___Mother's occupation_02___1", "175": "10___NUMERIC___Mother's occupation_02___2", "176": "10___NUMERIC___Mother's occupation_02___3", "177": "10___NUMERIC___Mother's occupation_02___4", "178": "10___NUMERIC___Mother's occupation_02___5", "179": "10___NUMERIC___Mother's occupation_02___6", "180": "10___NUMERIC___Mother's occupation_02___7", "181": "10___NUMERIC___Mother's occupation_02___8", "182": "10___NUMERIC___Mother's occupation_02___9", "183": "11___NUMERIC___Father's occupation_00___0", "184": "11___NUMERIC___Father's occupation_00___1", "185": "11___NUMERIC___Father's occupation_01___0", "186": "11___NUMERIC___Father's occupation_01___1", "187": "11___NUMERIC___Father's occupation_01___2", "188": "11___NUMERIC___Father's occupation_01___3", "189": "11___NUMERIC___Father's occupation_01___4", "190": "11___NUMERIC___Father's occupation_01___5", "191": "11___NUMERIC___Father's occupation_01___6", "192": "11___NUMERIC___Father's occupation_01___7", "193": "11___NUMERIC___Father's occupation_01___8", "194": "11___NUMERIC___Father's occupation_01___9", "195": "11___NUMERIC___Father's occupation_02___0", "196": "11___NUMERIC___Father's occupation_02___1", "197": "11___NUMERIC___Father's occupation_02___2", "198": "11___NUMERIC___Father's occupation_02___3", "199": "11___NUMERIC___Father's occupation_02___4", "200": "11___NUMERIC___Father's occupation_02___5", "201": "11___NUMERIC___Father's occupation_02___6", "202": "11___NUMERIC___Father's occupation_02___7", "203": "11___NUMERIC___Father's occupation_02___8", "204": "11___NUMERIC___Father's occupation_02___9", "205": "12___NUMERIC___Admission grade_00___0", "206": "12___NUMERIC___Admission grade_00___1", "207": "12___NUMERIC___Admission grade_01___0", "208": "12___NUMERIC___Admission grade_01___1", "209": "12___NUMERIC___Admission grade_01___2", "210": "12___NUMERIC___Admission grade_01___3", "211": "12___NUMERIC___Admission grade_01___4", "212": "12___NUMERIC___Admission grade_01___5", "213": "12___NUMERIC___Admission grade_01___6", "214": "12___NUMERIC___Admission grade_01___7", "215": "12___NUMERIC___Admission grade_01___8", "216": "12___NUMERIC___Admission grade_01___9", "217": "12___NUMERIC___Admission grade_02___0", "218": "12___NUMERIC___Admission grade_02___1", "219": "12___NUMERIC___Admission grade_02___2", "220": "12___NUMERIC___Admission grade_02___3", "221": "12___NUMERIC___Admission grade_02___4", "222": "12___NUMERIC___Admission grade_02___5", "223": "12___NUMERIC___Admission grade_02___6", "224": "12___NUMERIC___Admission grade_02___7", "225": "12___NUMERIC___Admission grade_02___8", "226": "12___NUMERIC___Admission grade_02___9", "227": "12___NUMERIC___Admission grade_03___.", "228": "12___NUMERIC___Admission grade_04___0", "229": "12___NUMERIC___Admission grade_04___1", "230": "12___NUMERIC___Admission grade_04___2", "231": "12___NUMERIC___Admission grade_04___3", "232": "12___NUMERIC___Admission grade_04___4", "233": "12___NUMERIC___Admission grade_04___5", "234": "12___NUMERIC___Admission grade_04___6", "235": "12___NUMERIC___Admission grade_04___7", "236": "12___NUMERIC___Admission grade_04___8", "237": "12___NUMERIC___Admission grade_04___9", "238": "13___CATEGORICAL___Displaced___0", "239": "13___CATEGORICAL___Displaced___1", "240": "14___CATEGORICAL___Educational special needs___0", "241": "14___CATEGORICAL___Educational special needs___1", "242": "15___CATEGORICAL___Debtor___0", "243": "15___CATEGORICAL___Debtor___1", "244": "16___CATEGORICAL___Tuition fees up to date___0", "245": "16___CATEGORICAL___Tuition fees up to date___1", "246": "17___CATEGORICAL___Gender___0", "247": "17___CATEGORICAL___Gender___1", "248": "18___CATEGORICAL___Scholarship holder___0", "249": "18___CATEGORICAL___Scholarship holder___1", "250": "19___NUMERIC___Age at enrollment_00___1", "251": "19___NUMERIC___Age at enrollment_00___2", "252": "19___NUMERIC___Age at enrollment_00___3", "253": "19___NUMERIC___Age at enrollment_00___4", "254": "19___NUMERIC___Age at enrollment_00___5", "255": "19___NUMERIC___Age at enrollment_00___6", "256": "19___NUMERIC___Age at enrollment_00___7", "257": "19___NUMERIC___Age at enrollment_01___0", "258": "19___NUMERIC___Age at enrollment_01___1", "259": "19___NUMERIC___Age at enrollment_01___2", "260": "19___NUMERIC___Age at enrollment_01___3", "261": "19___NUMERIC___Age at enrollment_01___4", "262": "19___NUMERIC___Age at enrollment_01___5", "263": "19___NUMERIC___Age at enrollment_01___6", "264": "19___NUMERIC___Age at enrollment_01___7", "265": "19___NUMERIC___Age at enrollment_01___8", "266": "19___NUMERIC___Age at enrollment_01___9", "267": "20___CATEGORICAL___International___0", "268": "20___CATEGORICAL___International___1", "269": "21___NUMERIC___Curricular units 1st sem (credited)_00___0", "270": "21___NUMERIC___Curricular units 1st sem (credited)_00___1", "271": "21___NUMERIC___Curricular units 1st sem (credited)_00___2", "272": "21___NUMERIC___Curricular units 1st sem (credited)_01___0", "273": "21___NUMERIC___Curricular units 1st sem (credited)_01___1", "274": "21___NUMERIC___Curricular units 1st sem (credited)_01___2", "275": "21___NUMERIC___Curricular units 1st sem (credited)_01___3", "276": "21___NUMERIC___Curricular units 1st sem (credited)_01___4", "277": "21___NUMERIC___Curricular units 1st sem (credited)_01___5", "278": "21___NUMERIC___Curricular units 1st sem (credited)_01___6", "279": "21___NUMERIC___Curricular units 1st sem (credited)_01___7", "280": "21___NUMERIC___Curricular units 1st sem (credited)_01___8", "281": "21___NUMERIC___Curricular units 1st sem (credited)_01___9", "282": "22___NUMERIC___Curricular units 1st sem (enrolled)_00___0", "283": "22___NUMERIC___Curricular units 1st sem (enrolled)_00___1", "284": "22___NUMERIC___Curricular units 1st sem (enrolled)_00___2", "285": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___0", "286": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___1", "287": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___2", "288": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___3", "289": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___4", "290": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___5", "291": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___6", "292": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___7", "293": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___8", "294": "22___NUMERIC___Curricular units 1st sem (enrolled)_01___9", "295": "23___NUMERIC___Curricular units 1st sem (evaluations)_00___0", "296": "23___NUMERIC___Curricular units 1st sem (evaluations)_00___1", "297": "23___NUMERIC___Curricular units 1st sem (evaluations)_00___2", "298": "23___NUMERIC___Curricular units 1st sem (evaluations)_00___3", "299": "23___NUMERIC___Curricular units 1st sem (evaluations)_00___4", "300": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___0", "301": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___1", "302": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___2", "303": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___3", "304": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___4", "305": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___5", "306": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___6", "307": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___7", "308": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___8", "309": "23___NUMERIC___Curricular units 1st sem (evaluations)_01___9", "310": "24___NUMERIC___Curricular units 1st sem (approved)_00___0", "311": "24___NUMERIC___Curricular units 1st sem (approved)_00___1", "312": "24___NUMERIC___Curricular units 1st sem (approved)_00___2", "313": "24___NUMERIC___Curricular units 1st sem (approved)_01___0", "314": "24___NUMERIC___Curricular units 1st sem (approved)_01___1", "315": "24___NUMERIC___Curricular units 1st sem (approved)_01___2", "316": "24___NUMERIC___Curricular units 1st sem (approved)_01___3", "317": "24___NUMERIC___Curricular units 1st sem (approved)_01___4", "318": "24___NUMERIC___Curricular units 1st sem (approved)_01___5", "319": "24___NUMERIC___Curricular units 1st sem (approved)_01___6", "320": "24___NUMERIC___Curricular units 1st sem (approved)_01___7", "321": "24___NUMERIC___Curricular units 1st sem (approved)_01___8", "322": "24___NUMERIC___Curricular units 1st sem (approved)_01___9", "323": "25___NUMERIC___Curricular units 1st sem (grade)_00___0", "324": "25___NUMERIC___Curricular units 1st sem (grade)_00___1", "325": "25___NUMERIC___Curricular units 1st sem (grade)_01___0", "326": "25___NUMERIC___Curricular units 1st sem (grade)_01___1", "327": "25___NUMERIC___Curricular units 1st sem (grade)_01___2", "328": "25___NUMERIC___Curricular units 1st sem (grade)_01___3", "329": "25___NUMERIC___Curricular units 1st sem (grade)_01___4", "330": "25___NUMERIC___Curricular units 1st sem (grade)_01___5", "331": "25___NUMERIC___Curricular units 1st sem (grade)_01___6", "332": "25___NUMERIC___Curricular units 1st sem (grade)_01___7", "333": "25___NUMERIC___Curricular units 1st sem (grade)_01___8", "334": "25___NUMERIC___Curricular units 1st sem (grade)_01___9", "335": "25___NUMERIC___Curricular units 1st sem (grade)_02___.", "336": "25___NUMERIC___Curricular units 1st sem (grade)_03___0", "337": "25___NUMERIC___Curricular units 1st sem (grade)_03___1", "338": "25___NUMERIC___Curricular units 1st sem (grade)_03___2", "339": "25___NUMERIC___Curricular units 1st sem (grade)_03___3", "340": "25___NUMERIC___Curricular units 1st sem (grade)_03___4", "341": "25___NUMERIC___Curricular units 1st sem (grade)_03___5", "342": "25___NUMERIC___Curricular units 1st sem (grade)_03___6", "343": "25___NUMERIC___Curricular units 1st sem (grade)_03___7", "344": "25___NUMERIC___Curricular units 1st sem (grade)_03___8", "345": "25___NUMERIC___Curricular units 1st sem (grade)_03___9", "346": "25___NUMERIC___Curricular units 1st sem (grade)_04___0", "347": "25___NUMERIC___Curricular units 1st sem (grade)_04___1", "348": "25___NUMERIC___Curricular units 1st sem (grade)_04___2", "349": "25___NUMERIC___Curricular units 1st sem (grade)_04___3", "350": "25___NUMERIC___Curricular units 1st sem (grade)_04___4", "351": "25___NUMERIC___Curricular units 1st sem (grade)_04___5", "352": "25___NUMERIC___Curricular units 1st sem (grade)_04___6", "353": "25___NUMERIC___Curricular units 1st sem (grade)_04___7", "354": "25___NUMERIC___Curricular units 1st sem (grade)_04___8", "355": "25___NUMERIC___Curricular units 1st sem (grade)_04___9", "356": "25___NUMERIC___Curricular units 1st sem (grade)_05___0", "357": "25___NUMERIC___Curricular units 1st sem (grade)_05___1", "358": "25___NUMERIC___Curricular units 1st sem (grade)_05___2", "359": "25___NUMERIC___Curricular units 1st sem (grade)_05___3", "360": "25___NUMERIC___Curricular units 1st sem (grade)_05___4", "361": "25___NUMERIC___Curricular units 1st sem (grade)_05___5", "362": "25___NUMERIC___Curricular units 1st sem (grade)_05___6", "363": "25___NUMERIC___Curricular units 1st sem (grade)_05___7", "364": "25___NUMERIC___Curricular units 1st sem (grade)_05___8", "365": "25___NUMERIC___Curricular units 1st sem (grade)_05___9", "366": "25___NUMERIC___Curricular units 1st sem (grade)_06___0", "367": "25___NUMERIC___Curricular units 1st sem (grade)_06___1", "368": "25___NUMERIC___Curricular units 1st sem (grade)_06___2", "369": "25___NUMERIC___Curricular units 1st sem (grade)_06___3", "370": "25___NUMERIC___Curricular units 1st sem (grade)_06___4", "371": "25___NUMERIC___Curricular units 1st sem (grade)_06___5", "372": "25___NUMERIC___Curricular units 1st sem (grade)_06___6", "373": "25___NUMERIC___Curricular units 1st sem (grade)_06___7", "374": "25___NUMERIC___Curricular units 1st sem (grade)_06___8", "375": "25___NUMERIC___Curricular units 1st sem (grade)_06___9", "376": "26___NUMERIC___Curricular units 1st sem (without evaluations)_00___0", "377": "26___NUMERIC___Curricular units 1st sem (without evaluations)_00___1", "378": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___0", "379": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___1", "380": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___2", "381": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___3", "382": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___4", "383": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___5", "384": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___6", "385": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___7", "386": "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___8", "387": "27___NUMERIC___Curricular units 2nd sem (credited)_00___0", "388": "27___NUMERIC___Curricular units 2nd sem (credited)_00___1", "389": "27___NUMERIC___Curricular units 2nd sem (credited)_01___0", "390": "27___NUMERIC___Curricular units 2nd sem (credited)_01___1", "391": "27___NUMERIC___Curricular units 2nd sem (credited)_01___2", "392": "27___NUMERIC___Curricular units 2nd sem (credited)_01___3", "393": "27___NUMERIC___Curricular units 2nd sem (credited)_01___4", "394": "27___NUMERIC___Curricular units 2nd sem (credited)_01___5", "395": "27___NUMERIC___Curricular units 2nd sem (credited)_01___6", "396": "27___NUMERIC___Curricular units 2nd sem (credited)_01___7", "397": "27___NUMERIC___Curricular units 2nd sem (credited)_01___8", "398": "27___NUMERIC___Curricular units 2nd sem (credited)_01___9", "399": "28___NUMERIC___Curricular units 2nd sem (enrolled)_00___0", "400": "28___NUMERIC___Curricular units 2nd sem (enrolled)_00___1", "401": "28___NUMERIC___Curricular units 2nd sem (enrolled)_00___2", "402": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___0", "403": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___1", "404": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___2", "405": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___3", "406": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___4", "407": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___5", "408": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___6", "409": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___7", "410": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___8", "411": "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___9", "412": "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___0", "413": "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___1", "414": "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___2", "415": "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___3", "416": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___0", "417": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___1", "418": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___2", "419": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___3", "420": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___4", "421": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___5", "422": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___6", "423": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___7", "424": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___8", "425": "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___9", "426": "30___NUMERIC___Curricular units 2nd sem (approved)_00___0", "427": "30___NUMERIC___Curricular units 2nd sem (approved)_00___1", "428": "30___NUMERIC___Curricular units 2nd sem (approved)_00___2", "429": "30___NUMERIC___Curricular units 2nd sem (approved)_01___0", "430": "30___NUMERIC___Curricular units 2nd sem (approved)_01___1", "431": "30___NUMERIC___Curricular units 2nd sem (approved)_01___2", "432": "30___NUMERIC___Curricular units 2nd sem (approved)_01___3", "433": "30___NUMERIC___Curricular units 2nd sem (approved)_01___4", "434": "30___NUMERIC___Curricular units 2nd sem (approved)_01___5", "435": "30___NUMERIC___Curricular units 2nd sem (approved)_01___6", "436": "30___NUMERIC___Curricular units 2nd sem (approved)_01___7", "437": "30___NUMERIC___Curricular units 2nd sem (approved)_01___8", "438": "30___NUMERIC___Curricular units 2nd sem (approved)_01___9", "439": "31___NUMERIC___Curricular units 2nd sem (grade)_00___0", "440": "31___NUMERIC___Curricular units 2nd sem (grade)_00___1", "441": "31___NUMERIC___Curricular units 2nd sem (grade)_01___0", "442": "31___NUMERIC___Curricular units 2nd sem (grade)_01___1", "443": "31___NUMERIC___Curricular units 2nd sem (grade)_01___2", "444": "31___NUMERIC___Curricular units 2nd sem (grade)_01___3", "445": "31___NUMERIC___Curricular units 2nd sem (grade)_01___4", "446": "31___NUMERIC___Curricular units 2nd sem (grade)_01___5", "447": "31___NUMERIC___Curricular units 2nd sem (grade)_01___6", "448": "31___NUMERIC___Curricular units 2nd sem (grade)_01___7", "449": "31___NUMERIC___Curricular units 2nd sem (grade)_01___8", "450": "31___NUMERIC___Curricular units 2nd sem (grade)_02___.", "451": "31___NUMERIC___Curricular units 2nd sem (grade)_03___0", "452": "31___NUMERIC___Curricular units 2nd sem (grade)_03___1", "453": "31___NUMERIC___Curricular units 2nd sem (grade)_03___2", "454": "31___NUMERIC___Curricular units 2nd sem (grade)_03___3", "455": "31___NUMERIC___Curricular units 2nd sem (grade)_03___4", "456": "31___NUMERIC___Curricular units 2nd sem (grade)_03___5", "457": "31___NUMERIC___Curricular units 2nd sem (grade)_03___6", "458": "31___NUMERIC___Curricular units 2nd sem (grade)_03___7", "459": "31___NUMERIC___Curricular units 2nd sem (grade)_03___8", "460": "31___NUMERIC___Curricular units 2nd sem (grade)_03___9", "461": "31___NUMERIC___Curricular units 2nd sem (grade)_04___0", "462": "31___NUMERIC___Curricular units 2nd sem (grade)_04___1", "463": "31___NUMERIC___Curricular units 2nd sem (grade)_04___2", "464": "31___NUMERIC___Curricular units 2nd sem (grade)_04___3", "465": "31___NUMERIC___Curricular units 2nd sem (grade)_04___4", "466": "31___NUMERIC___Curricular units 2nd sem (grade)_04___5", "467": "31___NUMERIC___Curricular units 2nd sem (grade)_04___6", "468": "31___NUMERIC___Curricular units 2nd sem (grade)_04___7", "469": "31___NUMERIC___Curricular units 2nd sem (grade)_04___8", "470": "31___NUMERIC___Curricular units 2nd sem (grade)_04___9", "471": "31___NUMERIC___Curricular units 2nd sem (grade)_05___0", "472": "31___NUMERIC___Curricular units 2nd sem (grade)_05___1", "473": "31___NUMERIC___Curricular units 2nd sem (grade)_05___2", "474": "31___NUMERIC___Curricular units 2nd sem (grade)_05___3", "475": "31___NUMERIC___Curricular units 2nd sem (grade)_05___4", "476": "31___NUMERIC___Curricular units 2nd sem (grade)_05___5", "477": "31___NUMERIC___Curricular units 2nd sem (grade)_05___6", "478": "31___NUMERIC___Curricular units 2nd sem (grade)_05___7", "479": "31___NUMERIC___Curricular units 2nd sem (grade)_05___8", "480": "31___NUMERIC___Curricular units 2nd sem (grade)_05___9", "481": "31___NUMERIC___Curricular units 2nd sem (grade)_06___0", "482": "31___NUMERIC___Curricular units 2nd sem (grade)_06___1", "483": "31___NUMERIC___Curricular units 2nd sem (grade)_06___2", "484": "31___NUMERIC___Curricular units 2nd sem (grade)_06___3", "485": "31___NUMERIC___Curricular units 2nd sem (grade)_06___4", "486": "31___NUMERIC___Curricular units 2nd sem (grade)_06___5", "487": "31___NUMERIC___Curricular units 2nd sem (grade)_06___6", "488": "31___NUMERIC___Curricular units 2nd sem (grade)_06___7", "489": "31___NUMERIC___Curricular units 2nd sem (grade)_06___8", "490": "31___NUMERIC___Curricular units 2nd sem (grade)_06___9", "491": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_00___0", "492": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_00___1", "493": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___0", "494": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___1", "495": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___2", "496": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___3", "497": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___4", "498": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___5", "499": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___6", "500": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___7", "501": "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___8", "502": "33___NUMERIC___Unemployment rate_00___0", "503": "33___NUMERIC___Unemployment rate_00___1", "504": "33___NUMERIC___Unemployment rate_01___0", "505": "33___NUMERIC___Unemployment rate_01___1", "506": "33___NUMERIC___Unemployment rate_01___2", "507": "33___NUMERIC___Unemployment rate_01___3", "508": "33___NUMERIC___Unemployment rate_01___5", "509": "33___NUMERIC___Unemployment rate_01___6", "510": "33___NUMERIC___Unemployment rate_01___7", "511": "33___NUMERIC___Unemployment rate_01___8", "512": "33___NUMERIC___Unemployment rate_01___9", "513": "33___NUMERIC___Unemployment rate_02___.", "514": "33___NUMERIC___Unemployment rate_03___1", "515": "33___NUMERIC___Unemployment rate_03___2", "516": "33___NUMERIC___Unemployment rate_03___4", "517": "33___NUMERIC___Unemployment rate_03___5", "518": "33___NUMERIC___Unemployment rate_03___6", "519": "33___NUMERIC___Unemployment rate_03___7", "520": "33___NUMERIC___Unemployment rate_03___8", "521": "33___NUMERIC___Unemployment rate_03___9", "522": "34___NUMERIC___Inflation rate_00___-", "523": "34___NUMERIC___Inflation rate_00___0", "524": "34___NUMERIC___Inflation rate_01___0", "525": "34___NUMERIC___Inflation rate_01___1", "526": "34___NUMERIC___Inflation rate_01___2", "527": "34___NUMERIC___Inflation rate_01___3", "528": "34___NUMERIC___Inflation rate_02___.", "529": "34___NUMERIC___Inflation rate_03___3", "530": "34___NUMERIC___Inflation rate_03___4", "531": "34___NUMERIC___Inflation rate_03___5", "532": "34___NUMERIC___Inflation rate_03___6", "533": "34___NUMERIC___Inflation rate_03___7", "534": "34___NUMERIC___Inflation rate_03___8", "535": "35___NUMERIC___GDP_00___-", "536": "35___NUMERIC___GDP_00___0", "537": "35___NUMERIC___GDP_01___0", "538": "35___NUMERIC___GDP_01___1", "539": "35___NUMERIC___GDP_01___2", "540": "35___NUMERIC___GDP_01___3", "541": "35___NUMERIC___GDP_01___4", "542": "35___NUMERIC___GDP_02___.", "543": "35___NUMERIC___GDP_03___0", "544": "35___NUMERIC___GDP_03___1", "545": "35___NUMERIC___GDP_03___3", "546": "35___NUMERIC___GDP_03___5", "547": "35___NUMERIC___GDP_03___7", "548": "35___NUMERIC___GDP_03___9", "549": "35___NUMERIC___GDP_04___0", "550": "35___NUMERIC___GDP_04___1", "551": "35___NUMERIC___GDP_04___2", "552": "35___NUMERIC___GDP_04___4", "553": "35___NUMERIC___GDP_04___6", "554": "35___NUMERIC___GDP_04___9", "555": "36___CATEGORICAL___Target___Dropout", "556": "36___CATEGORICAL___Target___Enrolled", "557": "36___CATEGORICAL___Target___Graduate"}, "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___Marital status_00___1": 11, "00___NUMERIC___Marital status_00___2": 12, "00___NUMERIC___Marital status_00___3": 13, "00___NUMERIC___Marital status_00___4": 14, "00___NUMERIC___Marital status_00___5": 15, "00___NUMERIC___Marital status_00___6": 16, "01___NUMERIC___Application mode_00___0": 17, "01___NUMERIC___Application mode_00___1": 18, "01___NUMERIC___Application mode_00___2": 19, "01___NUMERIC___Application mode_00___3": 20, "01___NUMERIC___Application mode_00___4": 21, "01___NUMERIC___Application mode_00___5": 22, "01___NUMERIC___Application mode_01___0": 23, "01___NUMERIC___Application mode_01___1": 24, "01___NUMERIC___Application mode_01___2": 25, "01___NUMERIC___Application mode_01___3": 26, "01___NUMERIC___Application mode_01___4": 27, "01___NUMERIC___Application mode_01___5": 28, "01___NUMERIC___Application mode_01___6": 29, "01___NUMERIC___Application mode_01___7": 30, "01___NUMERIC___Application mode_01___8": 31, "01___NUMERIC___Application mode_01___9": 32, "02___NUMERIC___Application order_00___0": 33, "02___NUMERIC___Application order_00___1": 34, "02___NUMERIC___Application order_00___2": 35, "02___NUMERIC___Application order_00___3": 36, "02___NUMERIC___Application order_00___4": 37, "02___NUMERIC___Application order_00___5": 38, "02___NUMERIC___Application order_00___6": 39, "02___NUMERIC___Application order_00___9": 40, "03___NUMERIC___Course_00___0": 41, "03___NUMERIC___Course_00___8": 42, "03___NUMERIC___Course_00___9": 43, "03___NUMERIC___Course_01___0": 44, "03___NUMERIC___Course_01___1": 45, "03___NUMERIC___Course_01___2": 46, "03___NUMERIC___Course_01___5": 47, "03___NUMERIC___Course_01___6": 48, "03___NUMERIC___Course_01___7": 49, "03___NUMERIC___Course_01___8": 50, "03___NUMERIC___Course_01___9": 51, "03___NUMERIC___Course_02___0": 52, "03___NUMERIC___Course_02___1": 53, "03___NUMERIC___Course_02___3": 54, "03___NUMERIC___Course_02___4": 55, "03___NUMERIC___Course_02___5": 56, "03___NUMERIC___Course_02___7": 57, "03___NUMERIC___Course_02___8": 58, "03___NUMERIC___Course_02___9": 59, "03___NUMERIC___Course_03___0": 60, "03___NUMERIC___Course_03___1": 61, "03___NUMERIC___Course_03___3": 62, "03___NUMERIC___Course_03___4": 63, "03___NUMERIC___Course_03___5": 64, "03___NUMERIC___Course_03___6": 65, "03___NUMERIC___Course_03___7": 66, "03___NUMERIC___Course_03___8": 67, "03___NUMERIC___Course_03___9": 68, "04___CATEGORICAL___Daytime/evening attendance___0": 69, "04___CATEGORICAL___Daytime/evening attendance___1": 70, "05___NUMERIC___Previous qualification_00___0": 71, "05___NUMERIC___Previous qualification_00___1": 72, "05___NUMERIC___Previous qualification_00___3": 73, "05___NUMERIC___Previous qualification_00___4": 74, "05___NUMERIC___Previous qualification_01___0": 75, "05___NUMERIC___Previous qualification_01___1": 76, "05___NUMERIC___Previous qualification_01___2": 77, "05___NUMERIC___Previous qualification_01___3": 78, "05___NUMERIC___Previous qualification_01___4": 79, "05___NUMERIC___Previous qualification_01___5": 80, "05___NUMERIC___Previous qualification_01___6": 81, "05___NUMERIC___Previous qualification_01___8": 82, "05___NUMERIC___Previous qualification_01___9": 83, "06___NUMERIC___Previous qualification (grade)_00___0": 84, "06___NUMERIC___Previous qualification (grade)_00___1": 85, "06___NUMERIC___Previous qualification (grade)_01___0": 86, "06___NUMERIC___Previous qualification (grade)_01___1": 87, "06___NUMERIC___Previous qualification (grade)_01___2": 88, "06___NUMERIC___Previous qualification (grade)_01___3": 89, "06___NUMERIC___Previous qualification (grade)_01___4": 90, "06___NUMERIC___Previous qualification (grade)_01___5": 91, "06___NUMERIC___Previous qualification (grade)_01___6": 92, "06___NUMERIC___Previous qualification (grade)_01___7": 93, "06___NUMERIC___Previous qualification (grade)_01___8": 94, "06___NUMERIC___Previous qualification (grade)_01___9": 95, "06___NUMERIC___Previous qualification (grade)_02___0": 96, "06___NUMERIC___Previous qualification (grade)_02___1": 97, "06___NUMERIC___Previous qualification (grade)_02___2": 98, "06___NUMERIC___Previous qualification (grade)_02___3": 99, "06___NUMERIC___Previous qualification (grade)_02___4": 100, "06___NUMERIC___Previous qualification (grade)_02___5": 101, "06___NUMERIC___Previous qualification (grade)_02___6": 102, "06___NUMERIC___Previous qualification (grade)_02___7": 103, "06___NUMERIC___Previous qualification (grade)_02___8": 104, "06___NUMERIC___Previous qualification (grade)_02___9": 105, "06___NUMERIC___Previous qualification (grade)_03___.": 106, "06___NUMERIC___Previous qualification (grade)_04___0": 107, "06___NUMERIC___Previous qualification (grade)_04___1": 108, "06___NUMERIC___Previous qualification (grade)_04___3": 109, "06___NUMERIC___Previous qualification (grade)_04___4": 110, "06___NUMERIC___Previous qualification (grade)_04___6": 111, "06___NUMERIC___Previous qualification (grade)_04___7": 112, "06___NUMERIC___Previous qualification (grade)_04___8": 113, "06___NUMERIC___Previous qualification (grade)_04___9": 114, "07___NUMERIC___Nacionality_00___0": 115, "07___NUMERIC___Nacionality_00___1": 116, "07___NUMERIC___Nacionality_01___0": 117, "07___NUMERIC___Nacionality_01___1": 118, "07___NUMERIC___Nacionality_01___2": 119, "07___NUMERIC___Nacionality_01___3": 120, "07___NUMERIC___Nacionality_01___4": 121, "07___NUMERIC___Nacionality_01___6": 122, "07___NUMERIC___Nacionality_02___0": 123, "07___NUMERIC___Nacionality_02___1": 124, "07___NUMERIC___Nacionality_02___2": 125, "07___NUMERIC___Nacionality_02___3": 126, "07___NUMERIC___Nacionality_02___4": 127, "07___NUMERIC___Nacionality_02___5": 128, "07___NUMERIC___Nacionality_02___6": 129, "07___NUMERIC___Nacionality_02___7": 130, "07___NUMERIC___Nacionality_02___8": 131, "07___NUMERIC___Nacionality_02___9": 132, "08___NUMERIC___Mother's qualification_00___0": 133, "08___NUMERIC___Mother's qualification_00___1": 134, "08___NUMERIC___Mother's qualification_00___2": 135, "08___NUMERIC___Mother's qualification_00___3": 136, "08___NUMERIC___Mother's qualification_00___4": 137, "08___NUMERIC___Mother's qualification_01___0": 138, "08___NUMERIC___Mother's qualification_01___1": 139, "08___NUMERIC___Mother's qualification_01___2": 140, "08___NUMERIC___Mother's qualification_01___3": 141, "08___NUMERIC___Mother's qualification_01___4": 142, "08___NUMERIC___Mother's qualification_01___5": 143, "08___NUMERIC___Mother's qualification_01___6": 144, "08___NUMERIC___Mother's qualification_01___7": 145, "08___NUMERIC___Mother's qualification_01___8": 146, "08___NUMERIC___Mother's qualification_01___9": 147, "09___NUMERIC___Father's qualification_00___0": 148, "09___NUMERIC___Father's qualification_00___1": 149, "09___NUMERIC___Father's qualification_00___2": 150, "09___NUMERIC___Father's qualification_00___3": 151, "09___NUMERIC___Father's qualification_00___4": 152, "09___NUMERIC___Father's qualification_01___0": 153, "09___NUMERIC___Father's qualification_01___1": 154, "09___NUMERIC___Father's qualification_01___2": 155, "09___NUMERIC___Father's qualification_01___3": 156, "09___NUMERIC___Father's qualification_01___4": 157, "09___NUMERIC___Father's qualification_01___5": 158, "09___NUMERIC___Father's qualification_01___6": 159, "09___NUMERIC___Father's qualification_01___7": 160, "09___NUMERIC___Father's qualification_01___8": 161, "09___NUMERIC___Father's qualification_01___9": 162, "10___NUMERIC___Mother's occupation_00___0": 163, "10___NUMERIC___Mother's occupation_00___1": 164, "10___NUMERIC___Mother's occupation_01___0": 165, "10___NUMERIC___Mother's occupation_01___1": 166, "10___NUMERIC___Mother's occupation_01___2": 167, "10___NUMERIC___Mother's occupation_01___3": 168, "10___NUMERIC___Mother's occupation_01___4": 169, "10___NUMERIC___Mother's occupation_01___5": 170, "10___NUMERIC___Mother's occupation_01___7": 171, "10___NUMERIC___Mother's occupation_01___9": 172, "10___NUMERIC___Mother's occupation_02___0": 173, "10___NUMERIC___Mother's occupation_02___1": 174, "10___NUMERIC___Mother's occupation_02___2": 175, "10___NUMERIC___Mother's occupation_02___3": 176, "10___NUMERIC___Mother's occupation_02___4": 177, "10___NUMERIC___Mother's occupation_02___5": 178, "10___NUMERIC___Mother's occupation_02___6": 179, "10___NUMERIC___Mother's occupation_02___7": 180, "10___NUMERIC___Mother's occupation_02___8": 181, "10___NUMERIC___Mother's occupation_02___9": 182, "11___NUMERIC___Father's occupation_00___0": 183, "11___NUMERIC___Father's occupation_00___1": 184, "11___NUMERIC___Father's occupation_01___0": 185, "11___NUMERIC___Father's occupation_01___1": 186, "11___NUMERIC___Father's occupation_01___2": 187, "11___NUMERIC___Father's occupation_01___3": 188, "11___NUMERIC___Father's occupation_01___4": 189, "11___NUMERIC___Father's occupation_01___5": 190, "11___NUMERIC___Father's occupation_01___6": 191, "11___NUMERIC___Father's occupation_01___7": 192, "11___NUMERIC___Father's occupation_01___8": 193, "11___NUMERIC___Father's occupation_01___9": 194, "11___NUMERIC___Father's occupation_02___0": 195, "11___NUMERIC___Father's occupation_02___1": 196, "11___NUMERIC___Father's occupation_02___2": 197, "11___NUMERIC___Father's occupation_02___3": 198, "11___NUMERIC___Father's occupation_02___4": 199, "11___NUMERIC___Father's occupation_02___5": 200, "11___NUMERIC___Father's occupation_02___6": 201, "11___NUMERIC___Father's occupation_02___7": 202, "11___NUMERIC___Father's occupation_02___8": 203, "11___NUMERIC___Father's occupation_02___9": 204, "12___NUMERIC___Admission grade_00___0": 205, "12___NUMERIC___Admission grade_00___1": 206, "12___NUMERIC___Admission grade_01___0": 207, "12___NUMERIC___Admission grade_01___1": 208, "12___NUMERIC___Admission grade_01___2": 209, "12___NUMERIC___Admission grade_01___3": 210, "12___NUMERIC___Admission grade_01___4": 211, "12___NUMERIC___Admission grade_01___5": 212, "12___NUMERIC___Admission grade_01___6": 213, "12___NUMERIC___Admission grade_01___7": 214, "12___NUMERIC___Admission grade_01___8": 215, "12___NUMERIC___Admission grade_01___9": 216, "12___NUMERIC___Admission grade_02___0": 217, "12___NUMERIC___Admission grade_02___1": 218, "12___NUMERIC___Admission grade_02___2": 219, "12___NUMERIC___Admission grade_02___3": 220, "12___NUMERIC___Admission grade_02___4": 221, "12___NUMERIC___Admission grade_02___5": 222, "12___NUMERIC___Admission grade_02___6": 223, "12___NUMERIC___Admission grade_02___7": 224, "12___NUMERIC___Admission grade_02___8": 225, "12___NUMERIC___Admission grade_02___9": 226, "12___NUMERIC___Admission grade_03___.": 227, "12___NUMERIC___Admission grade_04___0": 228, "12___NUMERIC___Admission grade_04___1": 229, "12___NUMERIC___Admission grade_04___2": 230, "12___NUMERIC___Admission grade_04___3": 231, "12___NUMERIC___Admission grade_04___4": 232, "12___NUMERIC___Admission grade_04___5": 233, "12___NUMERIC___Admission grade_04___6": 234, "12___NUMERIC___Admission grade_04___7": 235, "12___NUMERIC___Admission grade_04___8": 236, "12___NUMERIC___Admission grade_04___9": 237, "13___CATEGORICAL___Displaced___0": 238, "13___CATEGORICAL___Displaced___1": 239, "14___CATEGORICAL___Educational special needs___0": 240, "14___CATEGORICAL___Educational special needs___1": 241, "15___CATEGORICAL___Debtor___0": 242, "15___CATEGORICAL___Debtor___1": 243, "16___CATEGORICAL___Tuition fees up to date___0": 244, "16___CATEGORICAL___Tuition fees up to date___1": 245, "17___CATEGORICAL___Gender___0": 246, "17___CATEGORICAL___Gender___1": 247, "18___CATEGORICAL___Scholarship holder___0": 248, "18___CATEGORICAL___Scholarship holder___1": 249, "19___NUMERIC___Age at enrollment_00___1": 250, "19___NUMERIC___Age at enrollment_00___2": 251, "19___NUMERIC___Age at enrollment_00___3": 252, "19___NUMERIC___Age at enrollment_00___4": 253, "19___NUMERIC___Age at enrollment_00___5": 254, "19___NUMERIC___Age at enrollment_00___6": 255, "19___NUMERIC___Age at enrollment_00___7": 256, "19___NUMERIC___Age at enrollment_01___0": 257, "19___NUMERIC___Age at enrollment_01___1": 258, "19___NUMERIC___Age at enrollment_01___2": 259, "19___NUMERIC___Age at enrollment_01___3": 260, "19___NUMERIC___Age at enrollment_01___4": 261, "19___NUMERIC___Age at enrollment_01___5": 262, "19___NUMERIC___Age at enrollment_01___6": 263, "19___NUMERIC___Age at enrollment_01___7": 264, "19___NUMERIC___Age at enrollment_01___8": 265, "19___NUMERIC___Age at enrollment_01___9": 266, "20___CATEGORICAL___International___0": 267, "20___CATEGORICAL___International___1": 268, "21___NUMERIC___Curricular units 1st sem (credited)_00___0": 269, "21___NUMERIC___Curricular units 1st sem (credited)_00___1": 270, "21___NUMERIC___Curricular units 1st sem (credited)_00___2": 271, "21___NUMERIC___Curricular units 1st sem (credited)_01___0": 272, "21___NUMERIC___Curricular units 1st sem (credited)_01___1": 273, "21___NUMERIC___Curricular units 1st sem (credited)_01___2": 274, "21___NUMERIC___Curricular units 1st sem (credited)_01___3": 275, "21___NUMERIC___Curricular units 1st sem (credited)_01___4": 276, "21___NUMERIC___Curricular units 1st sem (credited)_01___5": 277, "21___NUMERIC___Curricular units 1st sem (credited)_01___6": 278, "21___NUMERIC___Curricular units 1st sem (credited)_01___7": 279, "21___NUMERIC___Curricular units 1st sem (credited)_01___8": 280, "21___NUMERIC___Curricular units 1st sem (credited)_01___9": 281, "22___NUMERIC___Curricular units 1st sem (enrolled)_00___0": 282, "22___NUMERIC___Curricular units 1st sem (enrolled)_00___1": 283, "22___NUMERIC___Curricular units 1st sem (enrolled)_00___2": 284, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___0": 285, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___1": 286, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___2": 287, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___3": 288, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___4": 289, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___5": 290, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___6": 291, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___7": 292, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___8": 293, "22___NUMERIC___Curricular units 1st sem (enrolled)_01___9": 294, "23___NUMERIC___Curricular units 1st sem (evaluations)_00___0": 295, "23___NUMERIC___Curricular units 1st sem (evaluations)_00___1": 296, "23___NUMERIC___Curricular units 1st sem (evaluations)_00___2": 297, "23___NUMERIC___Curricular units 1st sem (evaluations)_00___3": 298, "23___NUMERIC___Curricular units 1st sem (evaluations)_00___4": 299, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___0": 300, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___1": 301, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___2": 302, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___3": 303, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___4": 304, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___5": 305, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___6": 306, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___7": 307, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___8": 308, "23___NUMERIC___Curricular units 1st sem (evaluations)_01___9": 309, "24___NUMERIC___Curricular units 1st sem (approved)_00___0": 310, "24___NUMERIC___Curricular units 1st sem (approved)_00___1": 311, "24___NUMERIC___Curricular units 1st sem (approved)_00___2": 312, "24___NUMERIC___Curricular units 1st sem (approved)_01___0": 313, "24___NUMERIC___Curricular units 1st sem (approved)_01___1": 314, "24___NUMERIC___Curricular units 1st sem (approved)_01___2": 315, "24___NUMERIC___Curricular units 1st sem (approved)_01___3": 316, "24___NUMERIC___Curricular units 1st sem (approved)_01___4": 317, "24___NUMERIC___Curricular units 1st sem (approved)_01___5": 318, "24___NUMERIC___Curricular units 1st sem (approved)_01___6": 319, "24___NUMERIC___Curricular units 1st sem (approved)_01___7": 320, "24___NUMERIC___Curricular units 1st sem (approved)_01___8": 321, "24___NUMERIC___Curricular units 1st sem (approved)_01___9": 322, "25___NUMERIC___Curricular units 1st sem (grade)_00___0": 323, "25___NUMERIC___Curricular units 1st sem (grade)_00___1": 324, "25___NUMERIC___Curricular units 1st sem (grade)_01___0": 325, "25___NUMERIC___Curricular units 1st sem (grade)_01___1": 326, "25___NUMERIC___Curricular units 1st sem (grade)_01___2": 327, "25___NUMERIC___Curricular units 1st sem (grade)_01___3": 328, "25___NUMERIC___Curricular units 1st sem (grade)_01___4": 329, "25___NUMERIC___Curricular units 1st sem (grade)_01___5": 330, "25___NUMERIC___Curricular units 1st sem (grade)_01___6": 331, "25___NUMERIC___Curricular units 1st sem (grade)_01___7": 332, "25___NUMERIC___Curricular units 1st sem (grade)_01___8": 333, "25___NUMERIC___Curricular units 1st sem (grade)_01___9": 334, "25___NUMERIC___Curricular units 1st sem (grade)_02___.": 335, "25___NUMERIC___Curricular units 1st sem (grade)_03___0": 336, "25___NUMERIC___Curricular units 1st sem (grade)_03___1": 337, "25___NUMERIC___Curricular units 1st sem (grade)_03___2": 338, "25___NUMERIC___Curricular units 1st sem (grade)_03___3": 339, "25___NUMERIC___Curricular units 1st sem (grade)_03___4": 340, "25___NUMERIC___Curricular units 1st sem (grade)_03___5": 341, "25___NUMERIC___Curricular units 1st sem (grade)_03___6": 342, "25___NUMERIC___Curricular units 1st sem (grade)_03___7": 343, "25___NUMERIC___Curricular units 1st sem (grade)_03___8": 344, "25___NUMERIC___Curricular units 1st sem (grade)_03___9": 345, "25___NUMERIC___Curricular units 1st sem (grade)_04___0": 346, "25___NUMERIC___Curricular units 1st sem (grade)_04___1": 347, "25___NUMERIC___Curricular units 1st sem (grade)_04___2": 348, "25___NUMERIC___Curricular units 1st sem (grade)_04___3": 349, "25___NUMERIC___Curricular units 1st sem (grade)_04___4": 350, "25___NUMERIC___Curricular units 1st sem (grade)_04___5": 351, "25___NUMERIC___Curricular units 1st sem (grade)_04___6": 352, "25___NUMERIC___Curricular units 1st sem (grade)_04___7": 353, "25___NUMERIC___Curricular units 1st sem (grade)_04___8": 354, "25___NUMERIC___Curricular units 1st sem (grade)_04___9": 355, "25___NUMERIC___Curricular units 1st sem (grade)_05___0": 356, "25___NUMERIC___Curricular units 1st sem (grade)_05___1": 357, "25___NUMERIC___Curricular units 1st sem (grade)_05___2": 358, "25___NUMERIC___Curricular units 1st sem (grade)_05___3": 359, "25___NUMERIC___Curricular units 1st sem (grade)_05___4": 360, "25___NUMERIC___Curricular units 1st sem (grade)_05___5": 361, "25___NUMERIC___Curricular units 1st sem (grade)_05___6": 362, "25___NUMERIC___Curricular units 1st sem (grade)_05___7": 363, "25___NUMERIC___Curricular units 1st sem (grade)_05___8": 364, "25___NUMERIC___Curricular units 1st sem (grade)_05___9": 365, "25___NUMERIC___Curricular units 1st sem (grade)_06___0": 366, "25___NUMERIC___Curricular units 1st sem (grade)_06___1": 367, "25___NUMERIC___Curricular units 1st sem (grade)_06___2": 368, "25___NUMERIC___Curricular units 1st sem (grade)_06___3": 369, "25___NUMERIC___Curricular units 1st sem (grade)_06___4": 370, "25___NUMERIC___Curricular units 1st sem (grade)_06___5": 371, "25___NUMERIC___Curricular units 1st sem (grade)_06___6": 372, "25___NUMERIC___Curricular units 1st sem (grade)_06___7": 373, "25___NUMERIC___Curricular units 1st sem (grade)_06___8": 374, "25___NUMERIC___Curricular units 1st sem (grade)_06___9": 375, "26___NUMERIC___Curricular units 1st sem (without evaluations)_00___0": 376, "26___NUMERIC___Curricular units 1st sem (without evaluations)_00___1": 377, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___0": 378, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___1": 379, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___2": 380, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___3": 381, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___4": 382, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___5": 383, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___6": 384, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___7": 385, "26___NUMERIC___Curricular units 1st sem (without evaluations)_01___8": 386, "27___NUMERIC___Curricular units 2nd sem (credited)_00___0": 387, "27___NUMERIC___Curricular units 2nd sem (credited)_00___1": 388, "27___NUMERIC___Curricular units 2nd sem (credited)_01___0": 389, "27___NUMERIC___Curricular units 2nd sem (credited)_01___1": 390, "27___NUMERIC___Curricular units 2nd sem (credited)_01___2": 391, "27___NUMERIC___Curricular units 2nd sem (credited)_01___3": 392, "27___NUMERIC___Curricular units 2nd sem (credited)_01___4": 393, "27___NUMERIC___Curricular units 2nd sem (credited)_01___5": 394, "27___NUMERIC___Curricular units 2nd sem (credited)_01___6": 395, "27___NUMERIC___Curricular units 2nd sem (credited)_01___7": 396, "27___NUMERIC___Curricular units 2nd sem (credited)_01___8": 397, "27___NUMERIC___Curricular units 2nd sem (credited)_01___9": 398, "28___NUMERIC___Curricular units 2nd sem (enrolled)_00___0": 399, "28___NUMERIC___Curricular units 2nd sem (enrolled)_00___1": 400, "28___NUMERIC___Curricular units 2nd sem (enrolled)_00___2": 401, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___0": 402, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___1": 403, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___2": 404, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___3": 405, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___4": 406, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___5": 407, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___6": 408, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___7": 409, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___8": 410, "28___NUMERIC___Curricular units 2nd sem (enrolled)_01___9": 411, "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___0": 412, "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___1": 413, "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___2": 414, "29___NUMERIC___Curricular units 2nd sem (evaluations)_00___3": 415, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___0": 416, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___1": 417, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___2": 418, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___3": 419, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___4": 420, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___5": 421, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___6": 422, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___7": 423, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___8": 424, "29___NUMERIC___Curricular units 2nd sem (evaluations)_01___9": 425, "30___NUMERIC___Curricular units 2nd sem (approved)_00___0": 426, "30___NUMERIC___Curricular units 2nd sem (approved)_00___1": 427, "30___NUMERIC___Curricular units 2nd sem (approved)_00___2": 428, "30___NUMERIC___Curricular units 2nd sem (approved)_01___0": 429, "30___NUMERIC___Curricular units 2nd sem (approved)_01___1": 430, "30___NUMERIC___Curricular units 2nd sem (approved)_01___2": 431, "30___NUMERIC___Curricular units 2nd sem (approved)_01___3": 432, "30___NUMERIC___Curricular units 2nd sem (approved)_01___4": 433, "30___NUMERIC___Curricular units 2nd sem (approved)_01___5": 434, "30___NUMERIC___Curricular units 2nd sem (approved)_01___6": 435, "30___NUMERIC___Curricular units 2nd sem (approved)_01___7": 436, "30___NUMERIC___Curricular units 2nd sem (approved)_01___8": 437, "30___NUMERIC___Curricular units 2nd sem (approved)_01___9": 438, "31___NUMERIC___Curricular units 2nd sem (grade)_00___0": 439, "31___NUMERIC___Curricular units 2nd sem (grade)_00___1": 440, "31___NUMERIC___Curricular units 2nd sem (grade)_01___0": 441, "31___NUMERIC___Curricular units 2nd sem (grade)_01___1": 442, "31___NUMERIC___Curricular units 2nd sem (grade)_01___2": 443, "31___NUMERIC___Curricular units 2nd sem (grade)_01___3": 444, "31___NUMERIC___Curricular units 2nd sem (grade)_01___4": 445, "31___NUMERIC___Curricular units 2nd sem (grade)_01___5": 446, "31___NUMERIC___Curricular units 2nd sem (grade)_01___6": 447, "31___NUMERIC___Curricular units 2nd sem (grade)_01___7": 448, "31___NUMERIC___Curricular units 2nd sem (grade)_01___8": 449, "31___NUMERIC___Curricular units 2nd sem (grade)_02___.": 450, "31___NUMERIC___Curricular units 2nd sem (grade)_03___0": 451, "31___NUMERIC___Curricular units 2nd sem (grade)_03___1": 452, "31___NUMERIC___Curricular units 2nd sem (grade)_03___2": 453, "31___NUMERIC___Curricular units 2nd sem (grade)_03___3": 454, "31___NUMERIC___Curricular units 2nd sem (grade)_03___4": 455, "31___NUMERIC___Curricular units 2nd sem (grade)_03___5": 456, "31___NUMERIC___Curricular units 2nd sem (grade)_03___6": 457, "31___NUMERIC___Curricular units 2nd sem (grade)_03___7": 458, "31___NUMERIC___Curricular units 2nd sem (grade)_03___8": 459, "31___NUMERIC___Curricular units 2nd sem (grade)_03___9": 460, "31___NUMERIC___Curricular units 2nd sem (grade)_04___0": 461, "31___NUMERIC___Curricular units 2nd sem (grade)_04___1": 462, "31___NUMERIC___Curricular units 2nd sem (grade)_04___2": 463, "31___NUMERIC___Curricular units 2nd sem (grade)_04___3": 464, "31___NUMERIC___Curricular units 2nd sem (grade)_04___4": 465, "31___NUMERIC___Curricular units 2nd sem (grade)_04___5": 466, "31___NUMERIC___Curricular units 2nd sem (grade)_04___6": 467, "31___NUMERIC___Curricular units 2nd sem (grade)_04___7": 468, "31___NUMERIC___Curricular units 2nd sem (grade)_04___8": 469, "31___NUMERIC___Curricular units 2nd sem (grade)_04___9": 470, "31___NUMERIC___Curricular units 2nd sem (grade)_05___0": 471, "31___NUMERIC___Curricular units 2nd sem (grade)_05___1": 472, "31___NUMERIC___Curricular units 2nd sem (grade)_05___2": 473, "31___NUMERIC___Curricular units 2nd sem (grade)_05___3": 474, "31___NUMERIC___Curricular units 2nd sem (grade)_05___4": 475, "31___NUMERIC___Curricular units 2nd sem (grade)_05___5": 476, "31___NUMERIC___Curricular units 2nd sem (grade)_05___6": 477, "31___NUMERIC___Curricular units 2nd sem (grade)_05___7": 478, "31___NUMERIC___Curricular units 2nd sem (grade)_05___8": 479, "31___NUMERIC___Curricular units 2nd sem (grade)_05___9": 480, "31___NUMERIC___Curricular units 2nd sem (grade)_06___0": 481, "31___NUMERIC___Curricular units 2nd sem (grade)_06___1": 482, "31___NUMERIC___Curricular units 2nd sem (grade)_06___2": 483, "31___NUMERIC___Curricular units 2nd sem (grade)_06___3": 484, "31___NUMERIC___Curricular units 2nd sem (grade)_06___4": 485, "31___NUMERIC___Curricular units 2nd sem (grade)_06___5": 486, "31___NUMERIC___Curricular units 2nd sem (grade)_06___6": 487, "31___NUMERIC___Curricular units 2nd sem (grade)_06___7": 488, "31___NUMERIC___Curricular units 2nd sem (grade)_06___8": 489, "31___NUMERIC___Curricular units 2nd sem (grade)_06___9": 490, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_00___0": 491, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_00___1": 492, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___0": 493, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___1": 494, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___2": 495, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___3": 496, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___4": 497, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___5": 498, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___6": 499, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___7": 500, "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01___8": 501, "33___NUMERIC___Unemployment rate_00___0": 502, "33___NUMERIC___Unemployment rate_00___1": 503, "33___NUMERIC___Unemployment rate_01___0": 504, "33___NUMERIC___Unemployment rate_01___1": 505, "33___NUMERIC___Unemployment rate_01___2": 506, "33___NUMERIC___Unemployment rate_01___3": 507, "33___NUMERIC___Unemployment rate_01___5": 508, "33___NUMERIC___Unemployment rate_01___6": 509, "33___NUMERIC___Unemployment rate_01___7": 510, "33___NUMERIC___Unemployment rate_01___8": 511, "33___NUMERIC___Unemployment rate_01___9": 512, "33___NUMERIC___Unemployment rate_02___.": 513, "33___NUMERIC___Unemployment rate_03___1": 514, "33___NUMERIC___Unemployment rate_03___2": 515, "33___NUMERIC___Unemployment rate_03___4": 516, "33___NUMERIC___Unemployment rate_03___5": 517, "33___NUMERIC___Unemployment rate_03___6": 518, "33___NUMERIC___Unemployment rate_03___7": 519, "33___NUMERIC___Unemployment rate_03___8": 520, "33___NUMERIC___Unemployment rate_03___9": 521, "34___NUMERIC___Inflation rate_00___-": 522, "34___NUMERIC___Inflation rate_00___0": 523, "34___NUMERIC___Inflation rate_01___0": 524, "34___NUMERIC___Inflation rate_01___1": 525, "34___NUMERIC___Inflation rate_01___2": 526, "34___NUMERIC___Inflation rate_01___3": 527, "34___NUMERIC___Inflation rate_02___.": 528, "34___NUMERIC___Inflation rate_03___3": 529, "34___NUMERIC___Inflation rate_03___4": 530, "34___NUMERIC___Inflation rate_03___5": 531, "34___NUMERIC___Inflation rate_03___6": 532, "34___NUMERIC___Inflation rate_03___7": 533, "34___NUMERIC___Inflation rate_03___8": 534, "35___NUMERIC___GDP_00___-": 535, "35___NUMERIC___GDP_00___0": 536, "35___NUMERIC___GDP_01___0": 537, "35___NUMERIC___GDP_01___1": 538, "35___NUMERIC___GDP_01___2": 539, "35___NUMERIC___GDP_01___3": 540, "35___NUMERIC___GDP_01___4": 541, "35___NUMERIC___GDP_02___.": 542, "35___NUMERIC___GDP_03___0": 543, "35___NUMERIC___GDP_03___1": 544, "35___NUMERIC___GDP_03___3": 545, "35___NUMERIC___GDP_03___5": 546, "35___NUMERIC___GDP_03___7": 547, "35___NUMERIC___GDP_03___9": 548, "35___NUMERIC___GDP_04___0": 549, "35___NUMERIC___GDP_04___1": 550, "35___NUMERIC___GDP_04___2": 551, "35___NUMERIC___GDP_04___4": 552, "35___NUMERIC___GDP_04___6": 553, "35___NUMERIC___GDP_04___9": 554, "36___CATEGORICAL___Target___Dropout": 555, "36___CATEGORICAL___Target___Enrolled": 556, "36___CATEGORICAL___Target___Graduate": 557}, "column_token_ids": {"00___NUMERIC___Marital status_00": [11, 12, 13, 14, 15, 16], "01___NUMERIC___Application mode_00": [17, 18, 19, 20, 21, 22], "01___NUMERIC___Application mode_01": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "02___NUMERIC___Application order_00": [33, 34, 35, 36, 37, 38, 39, 40], "03___NUMERIC___Course_00": [41, 42, 43], "03___NUMERIC___Course_01": [44, 45, 46, 47, 48, 49, 50, 51], "03___NUMERIC___Course_02": [52, 53, 54, 55, 56, 57, 58, 59], "03___NUMERIC___Course_03": [60, 61, 62, 63, 64, 65, 66, 67, 68], "04___CATEGORICAL___Daytime/evening attendance": [69, 70], "05___NUMERIC___Previous qualification_00": [71, 72, 73, 74], "05___NUMERIC___Previous qualification_01": [75, 76, 77, 78, 79, 80, 81, 82, 83], "06___NUMERIC___Previous qualification (grade)_00": [84, 85], "06___NUMERIC___Previous qualification (grade)_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "06___NUMERIC___Previous qualification (grade)_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "06___NUMERIC___Previous qualification (grade)_03": [106], "06___NUMERIC___Previous qualification (grade)_04": [107, 108, 109, 110, 111, 112, 113, 114], "07___NUMERIC___Nacionality_00": [115, 116], "07___NUMERIC___Nacionality_01": [117, 118, 119, 120, 121, 122], "07___NUMERIC___Nacionality_02": [123, 124, 125, 126, 127, 128, 129, 130, 131, 132], "08___NUMERIC___Mother's qualification_00": [133, 134, 135, 136, 137], "08___NUMERIC___Mother's qualification_01": [138, 139, 140, 141, 142, 143, 144, 145, 146, 147], "09___NUMERIC___Father's qualification_00": [148, 149, 150, 151, 152], "09___NUMERIC___Father's qualification_01": [153, 154, 155, 156, 157, 158, 159, 160, 161, 162], "10___NUMERIC___Mother's occupation_00": [163, 164], "10___NUMERIC___Mother's occupation_01": [165, 166, 167, 168, 169, 170, 171, 172], "10___NUMERIC___Mother's occupation_02": [173, 174, 175, 176, 177, 178, 179, 180, 181, 182], "11___NUMERIC___Father's occupation_00": [183, 184], "11___NUMERIC___Father's occupation_01": [185, 186, 187, 188, 189, 190, 191, 192, 193, 194], "11___NUMERIC___Father's occupation_02": [195, 196, 197, 198, 199, 200, 201, 202, 203, 204], "12___NUMERIC___Admission grade_00": [205, 206], "12___NUMERIC___Admission grade_01": [207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "12___NUMERIC___Admission grade_02": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226], "12___NUMERIC___Admission grade_03": [227], "12___NUMERIC___Admission grade_04": [228, 229, 230, 231, 232, 233, 234, 235, 236, 237], "13___CATEGORICAL___Displaced": [238, 239], "14___CATEGORICAL___Educational special needs": [240, 241], "15___CATEGORICAL___Debtor": [242, 243], "16___CATEGORICAL___Tuition fees up to date": [244, 245], "17___CATEGORICAL___Gender": [246, 247], "18___CATEGORICAL___Scholarship holder": [248, 249], "19___NUMERIC___Age at enrollment_00": [250, 251, 252, 253, 254, 255, 256], "19___NUMERIC___Age at enrollment_01": [257, 258, 259, 260, 261, 262, 263, 264, 265, 266], "20___CATEGORICAL___International": [267, 268], "21___NUMERIC___Curricular units 1st sem (credited)_00": [269, 270, 271], "21___NUMERIC___Curricular units 1st sem (credited)_01": [272, 273, 274, 275, 276, 277, 278, 279, 280, 281], "22___NUMERIC___Curricular units 1st sem (enrolled)_00": [282, 283, 284], "22___NUMERIC___Curricular units 1st sem (enrolled)_01": [285, 286, 287, 288, 289, 290, 291, 292, 293, 294], "23___NUMERIC___Curricular units 1st sem (evaluations)_00": [295, 296, 297, 298, 299], "23___NUMERIC___Curricular units 1st sem (evaluations)_01": [300, 301, 302, 303, 304, 305, 306, 307, 308, 309], "24___NUMERIC___Curricular units 1st sem (approved)_00": [310, 311, 312], "24___NUMERIC___Curricular units 1st sem (approved)_01": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322], "25___NUMERIC___Curricular units 1st sem (grade)_00": [323, 324], "25___NUMERIC___Curricular units 1st sem (grade)_01": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334], "25___NUMERIC___Curricular units 1st sem (grade)_02": [335], "25___NUMERIC___Curricular units 1st sem (grade)_03": [336, 337, 338, 339, 340, 341, 342, 343, 344, 345], "25___NUMERIC___Curricular units 1st sem (grade)_04": [346, 347, 348, 349, 350, 351, 352, 353, 354, 355], "25___NUMERIC___Curricular units 1st sem (grade)_05": [356, 357, 358, 359, 360, 361, 362, 363, 364, 365], "25___NUMERIC___Curricular units 1st sem (grade)_06": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375], "26___NUMERIC___Curricular units 1st sem (without evaluations)_00": [376, 377], "26___NUMERIC___Curricular units 1st sem (without evaluations)_01": [378, 379, 380, 381, 382, 383, 384, 385, 386], "27___NUMERIC___Curricular units 2nd sem (credited)_00": [387, 388], "27___NUMERIC___Curricular units 2nd sem (credited)_01": [389, 390, 391, 392, 393, 394, 395, 396, 397, 398], "28___NUMERIC___Curricular units 2nd sem (enrolled)_00": [399, 400, 401], "28___NUMERIC___Curricular units 2nd sem (enrolled)_01": [402, 403, 404, 405, 406, 407, 408, 409, 410, 411], "29___NUMERIC___Curricular units 2nd sem (evaluations)_00": [412, 413, 414, 415], "29___NUMERIC___Curricular units 2nd sem (evaluations)_01": [416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "30___NUMERIC___Curricular units 2nd sem (approved)_00": [426, 427, 428], "30___NUMERIC___Curricular units 2nd sem (approved)_01": [429, 430, 431, 432, 433, 434, 435, 436, 437, 438], "31___NUMERIC___Curricular units 2nd sem (grade)_00": [439, 440], "31___NUMERIC___Curricular units 2nd sem (grade)_01": [441, 442, 443, 444, 445, 446, 447, 448, 449], "31___NUMERIC___Curricular units 2nd sem (grade)_02": [450], "31___NUMERIC___Curricular units 2nd sem (grade)_03": [451, 452, 453, 454, 455, 456, 457, 458, 459, 460], "31___NUMERIC___Curricular units 2nd sem (grade)_04": [461, 462, 463, 464, 465, 466, 467, 468, 469, 470], "31___NUMERIC___Curricular units 2nd sem (grade)_05": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480], "31___NUMERIC___Curricular units 2nd sem (grade)_06": [481, 482, 483, 484, 485, 486, 487, 488, 489, 490], "32___NUMERIC___Curricular units 2nd sem (without evaluations)_00": [491, 492], "32___NUMERIC___Curricular units 2nd sem (without evaluations)_01": [493, 494, 495, 496, 497, 498, 499, 500, 501], "33___NUMERIC___Unemployment rate_00": [502, 503], "33___NUMERIC___Unemployment rate_01": [504, 505, 506, 507, 508, 509, 510, 511, 512], "33___NUMERIC___Unemployment rate_02": [513], "33___NUMERIC___Unemployment rate_03": [514, 515, 516, 517, 518, 519, 520, 521], "34___NUMERIC___Inflation rate_00": [522, 523], "34___NUMERIC___Inflation rate_01": [524, 525, 526, 527], "34___NUMERIC___Inflation rate_02": [528], "34___NUMERIC___Inflation rate_03": [529, 530, 531, 532, 533, 534], "35___NUMERIC___GDP_00": [535, 536], "35___NUMERIC___GDP_01": [537, 538, 539, 540, 541], "35___NUMERIC___GDP_02": [542], "35___NUMERIC___GDP_03": [543, 544, 545, 546, 547, 548], "35___NUMERIC___GDP_04": [549, 550, 551, 552, 553, 554], "36___CATEGORICAL___Target": [555, 556, 557]}}, "tabular_max_length": 93, "relational_max_length": null, "tabular_col_size": 3539, "relational_col_size": null, "col_transform_data": {"Marital status": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "Application mode": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Application order": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "Course": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "Previous qualification": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Previous qualification (grade)": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "Nacionality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "Mother's qualification": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Father's qualification": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Mother's occupation": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "Father's occupation": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "Admission grade": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "Age at enrollment": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 1st sem (credited)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 1st sem (enrolled)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 1st sem (evaluations)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 1st sem (approved)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 1st sem (grade)": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "Curricular units 1st sem (without evaluations)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 2nd sem (credited)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 2nd sem (enrolled)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 2nd sem (evaluations)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 2nd sem (approved)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Curricular units 2nd sem (grade)": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "Curricular units 2nd sem (without evaluations)": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Unemployment rate": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 4, "numeric_nparts": 1}, "Inflation rate": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 4, "numeric_nparts": 1}, "GDP": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22], "2": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "3": [33, 34, 35, 36, 37, 38, 39, 40], "4": [41, 42, 43], "5": [44, 45, 46, 47, 48, 49, 50, 51], "6": [52, 53, 54, 55, 56, 57, 58, 59], "7": [60, 61, 62, 63, 64, 65, 66, 67, 68], "8": [69, 70], "9": [71, 72, 73, 74], "10": [75, 76, 77, 78, 79, 80, 81, 82, 83], "11": [84, 85], "12": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "13": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "14": [106], "15": [107, 108, 109, 110, 111, 112, 113, 114], "16": [115, 116], "17": [117, 118, 119, 120, 121, 122], "18": [123, 124, 125, 126, 127, 128, 129, 130, 131, 132], "19": [133, 134, 135, 136, 137], "20": [138, 139, 140, 141, 142, 143, 144, 145, 146, 147], "21": [148, 149, 150, 151, 152], "22": [153, 154, 155, 156, 157, 158, 159, 160, 161, 162], "23": [163, 164], "24": [165, 166, 167, 168, 169, 170, 171, 172], "25": [173, 174, 175, 176, 177, 178, 179, 180, 181, 182], "26": [183, 184], "27": [185, 186, 187, 188, 189, 190, 191, 192, 193, 194], "28": [195, 196, 197, 198, 199, 200, 201, 202, 203, 204], "29": [205, 206], "30": [207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "31": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226], "32": [227], "33": [228, 229, 230, 231, 232, 233, 234, 235, 236, 237], "34": [238, 239], "35": [240, 241], "36": [242, 243], "37": [244, 245], "38": [246, 247], "39": [248, 249], "40": [250, 251, 252, 253, 254, 255, 256], "41": [257, 258, 259, 260, 261, 262, 263, 264, 265, 266], "42": [267, 268], "43": [269, 270, 271], "44": [272, 273, 274, 275, 276, 277, 278, 279, 280, 281], "45": [282, 283, 284], "46": [285, 286, 287, 288, 289, 290, 291, 292, 293, 294], "47": [295, 296, 297, 298, 299], "48": [300, 301, 302, 303, 304, 305, 306, 307, 308, 309], "49": [310, 311, 312], "50": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322], "51": [323, 324], "52": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334], "53": [335], "54": [336, 337, 338, 339, 340, 341, 342, 343, 344, 345], "55": [346, 347, 348, 349, 350, 351, 352, 353, 354, 355], "56": [356, 357, 358, 359, 360, 361, 362, 363, 364, 365], "57": [366, 367, 368, 369, 370, 371, 372, 373, 374, 375], "58": [376, 377], "59": [378, 379, 380, 381, 382, 383, 384, 385, 386], "60": [387, 388], "61": [389, 390, 391, 392, 393, 394, 395, 396, 397, 398], "62": [399, 400, 401], "63": [402, 403, 404, 405, 406, 407, 408, 409, 410, 411], "64": [412, 413, 414, 415], "65": [416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "66": [426, 427, 428], "67": [429, 430, 431, 432, 433, 434, 435, 436, 437, 438], "68": [439, 440], "69": [441, 442, 443, 444, 445, 446, 447, 448, 449], "70": [450], "71": [451, 452, 453, 454, 455, 456, 457, 458, 459, 460], "72": [461, 462, 463, 464, 465, 466, 467, 468, 469, 470], "73": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480], "74": [481, 482, 483, 484, 485, 486, 487, 488, 489, 490], "75": [491, 492], "76": [493, 494, 495, 496, 497, 498, 499, 500, 501], "77": [502, 503], "78": [504, 505, 506, 507, 508, 509, 510, 511, 512], "79": [513], "80": [514, 515, 516, 517, 518, 519, 520, 521], "81": [522, 523], "82": [524, 525, 526, 527], "83": [528], "84": [529, 530, 531, 532, 533, 534], "85": [535, 536], "86": [537, 538, 539, 540, 541], "87": [542], "88": [543, 544, 545, 546, 547, 548], "89": [549, 550, 551, 552, 553, 554], "90": [555, 556, 557]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017748064808139433984", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs/id000017748064808139433984/rtf_model.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs/id000017748064808139433984/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..df3501d742441d448d733017c28840a627094c36 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs/id000017748064808139433984/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d9b6b82306cd9d68954598625127fdd2ff4f2b55b7ab4a942dc3fc709b8a08 +size 175004131 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7950a20deddf0b2b710e7a018e44063dba5b104 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/realtabformer_features.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/realtabformer_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-1000-20260330_014804.csv b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-1000-20260330_014804.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8e527512446662fc210b943573e8c2422fc709d --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-1000-20260330_014804.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb0fc04e18dd5fc75f4dde08e0cc478b736d66885c581d8ce25032b9ecec50d +size 112725 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-3539-20260418_111310.csv b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-3539-20260418_111310.csv new file mode 100644 index 0000000000000000000000000000000000000000..635694a82b239217192e588bf0f80fd7120c5768 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-3539-20260418_111310.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd8f12f323e8b39fbbb1aa1e6cb501a114d5c70870aa29e22128fc781c21a5e +size 397051 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..c952bf6a171500dde4885769d5a7be409adca0fd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/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": 558 +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/generation_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/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/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/model.safetensors b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e993070176dc6585dcecf0fb51bf2abd123dc4cf --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388a77567f3e14d09542d9f551a6f61796c4505025211c5de9f36784850f6f02 +size 174982600 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/optimizer.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..9dfa9e025129a89f7a47c89a268e77dc140b5cd4 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1de207fac5f0136c7d9d42350e5ad7d893ceeea13eb20fc86712df1577b100c +size 350014283 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/rng_state.pth b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..907282bb05aa40409f55eb62af2d4c8958508115 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85072c38647f72c712b5712c52ed544b5721ddb35941b79d6a1c0f2927a21b0 +size 14645 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/scaler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3cf291b40a22168e754dbe8db6b788f75435b9ae --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319c651f5bce84421b047800c24dbf65d857b1cb89dface637e60ba67d130c0d +size 1383 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/scheduler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0b9988d29f028e03883fdc85a00fed9123493ca2 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc152afed2b08747e6ba38064fd8558f1f0668cf0699ba4a4aa5a7d928078cd5 +size 1465 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/trainer_state.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5490a9b8d414d62e7073b18e0db1848d78ef94f3 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/trainer_state.json @@ -0,0 +1,790 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.2979683972912, + "eval_steps": 100, + "global_step": 10800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.9029345372460497, + "grad_norm": 0.7101529836654663, + "learning_rate": 4.955405405405405e-05, + "loss": 1.692232666015625, + "step": 100 + }, + { + "epoch": 1.8036117381489842, + "grad_norm": 0.5825457572937012, + "learning_rate": 4.91036036036036e-05, + "loss": 0.6571139526367188, + "step": 200 + }, + { + "epoch": 2.704288939051919, + "grad_norm": 0.5998010635375977, + "learning_rate": 4.865315315315316e-05, + "loss": 0.572731704711914, + "step": 300 + }, + { + "epoch": 3.604966139954853, + "grad_norm": 0.5911508202552795, + "learning_rate": 4.8202702702702704e-05, + "loss": 0.5455382537841796, + "step": 400 + }, + { + "epoch": 4.505643340857787, + "grad_norm": 0.5691034197807312, + "learning_rate": 4.7752252252252255e-05, + "loss": 0.5281015396118164, + "step": 500 + }, + { + "epoch": 5.4063205417607225, + "grad_norm": 0.5880727767944336, + "learning_rate": 4.7301801801801806e-05, + "loss": 0.5146820449829101, + "step": 600 + }, + { + "epoch": 6.306997742663657, + "grad_norm": 0.5902809500694275, + "learning_rate": 4.685135135135135e-05, + "loss": 0.5027880477905273, + "step": 700 + }, + { + "epoch": 7.207674943566591, + "grad_norm": 0.6322414875030518, + "learning_rate": 4.64009009009009e-05, + "loss": 0.49580284118652346, + "step": 800 + }, + { + "epoch": 8.108352144469526, + "grad_norm": 0.5528641939163208, + "learning_rate": 4.595045045045046e-05, + "loss": 0.49028945922851563, + "step": 900 + }, + { + "epoch": 9.009029345372461, + "grad_norm": 0.5793948173522949, + "learning_rate": 4.55e-05, + "loss": 0.48525371551513674, + "step": 1000 + }, + { + "epoch": 9.91196388261851, + "grad_norm": 0.5765132308006287, + "learning_rate": 4.504954954954955e-05, + "loss": 0.4773061752319336, + "step": 1100 + }, + { + "epoch": 10.812641083521445, + "grad_norm": 0.6041397452354431, + "learning_rate": 4.45990990990991e-05, + "loss": 0.4708379364013672, + "step": 1200 + }, + { + "epoch": 11.713318284424378, + "grad_norm": 0.5950121283531189, + "learning_rate": 4.4148648648648647e-05, + "loss": 0.4690429306030273, + "step": 1300 + }, + { + "epoch": 12.613995485327314, + "grad_norm": 0.5916767716407776, + "learning_rate": 4.36981981981982e-05, + "loss": 0.462205810546875, + "step": 1400 + }, + { + "epoch": 13.514672686230249, + "grad_norm": 0.5803223252296448, + "learning_rate": 4.3247747747747755e-05, + "loss": 0.4584015655517578, + "step": 1500 + }, + { + "epoch": 14.415349887133182, + "grad_norm": 0.5735377073287964, + "learning_rate": 4.27972972972973e-05, + "loss": 0.45363746643066405, + "step": 1600 + }, + { + "epoch": 15.316027088036117, + "grad_norm": 0.5723473429679871, + "learning_rate": 4.234684684684685e-05, + "loss": 0.4506369400024414, + "step": 1700 + }, + { + "epoch": 16.216704288939052, + "grad_norm": 0.5657737851142883, + "learning_rate": 4.18963963963964e-05, + "loss": 0.44744483947753905, + "step": 1800 + }, + { + "epoch": 17.117381489841986, + "grad_norm": 0.5428962707519531, + "learning_rate": 4.1445945945945944e-05, + "loss": 0.44267566680908205, + "step": 1900 + }, + { + "epoch": 18.018058690744923, + "grad_norm": 0.6139283180236816, + "learning_rate": 4.0995495495495494e-05, + "loss": 0.4398773193359375, + "step": 2000 + }, + { + "epoch": 18.92099322799097, + "grad_norm": 0.5393434166908264, + "learning_rate": 4.054504504504505e-05, + "loss": 0.43377147674560546, + "step": 2100 + }, + { + "epoch": 19.821670428893906, + "grad_norm": 0.5807977318763733, + "learning_rate": 4.0094594594594595e-05, + "loss": 0.43059558868408204, + "step": 2200 + }, + { + "epoch": 20.72234762979684, + "grad_norm": 0.5822982788085938, + "learning_rate": 3.9644144144144146e-05, + "loss": 0.4262446975708008, + "step": 2300 + }, + { + "epoch": 21.623024830699773, + "grad_norm": 0.6040003299713135, + "learning_rate": 3.91936936936937e-05, + "loss": 0.4234455490112305, + "step": 2400 + }, + { + "epoch": 22.52370203160271, + "grad_norm": 0.6180558204650879, + "learning_rate": 3.874324324324324e-05, + "loss": 0.4176918411254883, + "step": 2500 + }, + { + "epoch": 23.424379232505643, + "grad_norm": 0.6245187520980835, + "learning_rate": 3.829279279279279e-05, + "loss": 0.4133774948120117, + "step": 2600 + }, + { + "epoch": 24.325056433408577, + "grad_norm": 0.6694397330284119, + "learning_rate": 3.784234234234235e-05, + "loss": 0.41039291381835935, + "step": 2700 + }, + { + "epoch": 25.225733634311513, + "grad_norm": 0.6744610071182251, + "learning_rate": 3.739189189189189e-05, + "loss": 0.40439399719238284, + "step": 2800 + }, + { + "epoch": 26.126410835214447, + "grad_norm": 0.6629764437675476, + "learning_rate": 3.694144144144144e-05, + "loss": 0.401536750793457, + "step": 2900 + }, + { + "epoch": 27.02708803611738, + "grad_norm": 0.6398245096206665, + "learning_rate": 3.6490990990990994e-05, + "loss": 0.3963093566894531, + "step": 3000 + }, + { + "epoch": 27.93002257336343, + "grad_norm": 0.6760854125022888, + "learning_rate": 3.604054054054054e-05, + "loss": 0.3903382873535156, + "step": 3100 + }, + { + "epoch": 28.830699774266364, + "grad_norm": 0.7078990936279297, + "learning_rate": 3.559009009009009e-05, + "loss": 0.385062141418457, + "step": 3200 + }, + { + "epoch": 29.7313769751693, + "grad_norm": 0.7518747448921204, + "learning_rate": 3.5139639639639646e-05, + "loss": 0.378619384765625, + "step": 3300 + }, + { + "epoch": 30.632054176072234, + "grad_norm": 0.7628916501998901, + "learning_rate": 3.468918918918919e-05, + "loss": 0.373223762512207, + "step": 3400 + }, + { + "epoch": 31.532731376975168, + "grad_norm": 0.739010214805603, + "learning_rate": 3.423873873873874e-05, + "loss": 0.36767356872558593, + "step": 3500 + }, + { + "epoch": 32.433408577878104, + "grad_norm": 0.6916473507881165, + "learning_rate": 3.378828828828829e-05, + "loss": 0.3617561721801758, + "step": 3600 + }, + { + "epoch": 33.33408577878104, + "grad_norm": 0.7642673850059509, + "learning_rate": 3.3337837837837834e-05, + "loss": 0.35553871154785155, + "step": 3700 + }, + { + "epoch": 34.23476297968397, + "grad_norm": 0.7590261697769165, + "learning_rate": 3.288738738738739e-05, + "loss": 0.3502037811279297, + "step": 3800 + }, + { + "epoch": 35.135440180586905, + "grad_norm": 0.7054361701011658, + "learning_rate": 3.243693693693694e-05, + "loss": 0.3426921844482422, + "step": 3900 + }, + { + "epoch": 36.036117381489845, + "grad_norm": 0.7512856125831604, + "learning_rate": 3.1986486486486486e-05, + "loss": 0.33641414642333983, + "step": 4000 + }, + { + "epoch": 36.93905191873589, + "grad_norm": 0.8908946514129639, + "learning_rate": 3.153603603603604e-05, + "loss": 0.3283998107910156, + "step": 4100 + }, + { + "epoch": 37.839729119638825, + "grad_norm": 0.8154875636100769, + "learning_rate": 3.108558558558559e-05, + "loss": 0.3213259506225586, + "step": 4200 + }, + { + "epoch": 38.74040632054176, + "grad_norm": 0.8380379676818848, + "learning_rate": 3.063513513513513e-05, + "loss": 0.31306919097900393, + "step": 4300 + }, + { + "epoch": 39.64108352144469, + "grad_norm": 0.8252752423286438, + "learning_rate": 3.018468468468469e-05, + "loss": 0.3073639488220215, + "step": 4400 + }, + { + "epoch": 40.54176072234763, + "grad_norm": 0.9085137844085693, + "learning_rate": 2.9734234234234236e-05, + "loss": 0.3001600456237793, + "step": 4500 + }, + { + "epoch": 41.442437923250566, + "grad_norm": 0.8658757209777832, + "learning_rate": 2.9283783783783787e-05, + "loss": 0.29396560668945315, + "step": 4600 + }, + { + "epoch": 42.3431151241535, + "grad_norm": 0.8093195557594299, + "learning_rate": 2.8833333333333334e-05, + "loss": 0.28757701873779296, + "step": 4700 + }, + { + "epoch": 43.24379232505643, + "grad_norm": 0.7976832985877991, + "learning_rate": 2.8382882882882885e-05, + "loss": 0.2814314270019531, + "step": 4800 + }, + { + "epoch": 44.144469525959366, + "grad_norm": 0.8538079857826233, + "learning_rate": 2.7932432432432432e-05, + "loss": 0.2742281723022461, + "step": 4900 + }, + { + "epoch": 45.0451467268623, + "grad_norm": 0.855580747127533, + "learning_rate": 2.7481981981981986e-05, + "loss": 0.2675522994995117, + "step": 5000 + }, + { + "epoch": 45.94808126410835, + "grad_norm": 0.8964878916740417, + "learning_rate": 2.7031531531531533e-05, + "loss": 0.26104148864746096, + "step": 5100 + }, + { + "epoch": 46.84875846501129, + "grad_norm": 0.9050287008285522, + "learning_rate": 2.6581081081081084e-05, + "loss": 0.25440666198730466, + "step": 5200 + }, + { + "epoch": 47.74943566591422, + "grad_norm": 0.9355533123016357, + "learning_rate": 2.613063063063063e-05, + "loss": 0.24863595962524415, + "step": 5300 + }, + { + "epoch": 48.65011286681715, + "grad_norm": 0.9033967852592468, + "learning_rate": 2.568018018018018e-05, + "loss": 0.24237123489379883, + "step": 5400 + }, + { + "epoch": 49.550790067720094, + "grad_norm": 0.9311243295669556, + "learning_rate": 2.522972972972973e-05, + "loss": 0.23914791107177735, + "step": 5500 + }, + { + "epoch": 50.45146726862303, + "grad_norm": 0.9304994940757751, + "learning_rate": 2.477927927927928e-05, + "loss": 0.2321404457092285, + "step": 5600 + }, + { + "epoch": 51.35214446952596, + "grad_norm": 0.847550094127655, + "learning_rate": 2.432882882882883e-05, + "loss": 0.22843591690063478, + "step": 5700 + }, + { + "epoch": 52.252821670428894, + "grad_norm": 0.8993908166885376, + "learning_rate": 2.387837837837838e-05, + "loss": 0.2236848258972168, + "step": 5800 + }, + { + "epoch": 53.15349887133183, + "grad_norm": 0.8454537987709045, + "learning_rate": 2.3427927927927928e-05, + "loss": 0.21860357284545898, + "step": 5900 + }, + { + "epoch": 54.05417607223476, + "grad_norm": 0.9163772463798523, + "learning_rate": 2.297747747747748e-05, + "loss": 0.21527904510498047, + "step": 6000 + }, + { + "epoch": 54.957110609480814, + "grad_norm": 0.9593232274055481, + "learning_rate": 2.252702702702703e-05, + "loss": 0.2099004554748535, + "step": 6100 + }, + { + "epoch": 55.85778781038375, + "grad_norm": 0.9488871097564697, + "learning_rate": 2.2076576576576576e-05, + "loss": 0.2048540687561035, + "step": 6200 + }, + { + "epoch": 56.75846501128668, + "grad_norm": 0.9115195870399475, + "learning_rate": 2.1626126126126127e-05, + "loss": 0.20162824630737305, + "step": 6300 + }, + { + "epoch": 57.659142212189614, + "grad_norm": 0.8790065050125122, + "learning_rate": 2.1175675675675678e-05, + "loss": 0.19816001892089843, + "step": 6400 + }, + { + "epoch": 58.55981941309255, + "grad_norm": 0.8536332845687866, + "learning_rate": 2.0725225225225225e-05, + "loss": 0.19469743728637695, + "step": 6500 + }, + { + "epoch": 59.46049661399549, + "grad_norm": 0.8732705116271973, + "learning_rate": 2.0274774774774776e-05, + "loss": 0.19105638504028322, + "step": 6600 + }, + { + "epoch": 60.36117381489842, + "grad_norm": 0.8837640881538391, + "learning_rate": 1.9824324324324326e-05, + "loss": 0.1880354118347168, + "step": 6700 + }, + { + "epoch": 61.261851015801355, + "grad_norm": 0.8144468069076538, + "learning_rate": 1.9373873873873873e-05, + "loss": 0.1855927848815918, + "step": 6800 + }, + { + "epoch": 62.16252821670429, + "grad_norm": 0.8792384266853333, + "learning_rate": 1.8923423423423424e-05, + "loss": 0.18369064331054688, + "step": 6900 + }, + { + "epoch": 63.06320541760722, + "grad_norm": 0.8073577880859375, + "learning_rate": 1.8472972972972975e-05, + "loss": 0.18010915756225587, + "step": 7000 + }, + { + "epoch": 63.966139954853276, + "grad_norm": 0.8626881837844849, + "learning_rate": 1.8022522522522522e-05, + "loss": 0.17718856811523437, + "step": 7100 + }, + { + "epoch": 64.86681715575621, + "grad_norm": 0.8884615898132324, + "learning_rate": 1.7572072072072073e-05, + "loss": 0.17479589462280273, + "step": 7200 + }, + { + "epoch": 65.76749435665914, + "grad_norm": 0.8588799238204956, + "learning_rate": 1.7121621621621623e-05, + "loss": 0.17206171035766601, + "step": 7300 + }, + { + "epoch": 66.66817155756208, + "grad_norm": 0.8529822826385498, + "learning_rate": 1.667117117117117e-05, + "loss": 0.16997116088867187, + "step": 7400 + }, + { + "epoch": 67.56884875846501, + "grad_norm": 0.857876181602478, + "learning_rate": 1.622072072072072e-05, + "loss": 0.16807559967041016, + "step": 7500 + }, + { + "epoch": 68.46952595936794, + "grad_norm": 0.8409956097602844, + "learning_rate": 1.577027027027027e-05, + "loss": 0.16600030899047852, + "step": 7600 + }, + { + "epoch": 69.37020316027088, + "grad_norm": 0.852760910987854, + "learning_rate": 1.531981981981982e-05, + "loss": 0.16438615798950196, + "step": 7700 + }, + { + "epoch": 70.27088036117381, + "grad_norm": 0.8459377288818359, + "learning_rate": 1.4869369369369371e-05, + "loss": 0.16228899002075195, + "step": 7800 + }, + { + "epoch": 71.17155756207674, + "grad_norm": 0.8343397974967957, + "learning_rate": 1.441891891891892e-05, + "loss": 0.16045280456542968, + "step": 7900 + }, + { + "epoch": 72.07223476297969, + "grad_norm": 0.8942051529884338, + "learning_rate": 1.3968468468468467e-05, + "loss": 0.15871651649475096, + "step": 8000 + }, + { + "epoch": 72.97516930022573, + "grad_norm": 0.9784395098686218, + "learning_rate": 1.351801801801802e-05, + "loss": 0.15678136825561523, + "step": 8100 + }, + { + "epoch": 73.87584650112866, + "grad_norm": 0.8617171049118042, + "learning_rate": 1.3067567567567569e-05, + "loss": 0.1548241424560547, + "step": 8200 + }, + { + "epoch": 74.7765237020316, + "grad_norm": 0.7932390570640564, + "learning_rate": 1.2617117117117116e-05, + "loss": 0.15381698608398436, + "step": 8300 + }, + { + "epoch": 75.67720090293454, + "grad_norm": 0.7702974081039429, + "learning_rate": 1.2166666666666668e-05, + "loss": 0.15224995613098144, + "step": 8400 + }, + { + "epoch": 76.57787810383748, + "grad_norm": 0.8658645749092102, + "learning_rate": 1.1716216216216217e-05, + "loss": 0.15124171257019042, + "step": 8500 + }, + { + "epoch": 77.47855530474041, + "grad_norm": 0.8349391222000122, + "learning_rate": 1.1265765765765766e-05, + "loss": 0.1498565196990967, + "step": 8600 + }, + { + "epoch": 78.37923250564334, + "grad_norm": 0.8226608037948608, + "learning_rate": 1.0815315315315317e-05, + "loss": 0.14874308586120605, + "step": 8700 + }, + { + "epoch": 79.27990970654628, + "grad_norm": 0.8730639219284058, + "learning_rate": 1.0364864864864866e-05, + "loss": 0.14670371055603026, + "step": 8800 + }, + { + "epoch": 80.18058690744921, + "grad_norm": 0.7831152081489563, + "learning_rate": 9.914414414414415e-06, + "loss": 0.14648072242736818, + "step": 8900 + }, + { + "epoch": 81.08126410835214, + "grad_norm": 0.7942720055580139, + "learning_rate": 9.463963963963965e-06, + "loss": 0.14472357749938966, + "step": 9000 + }, + { + "epoch": 81.9841986455982, + "grad_norm": 0.8477607369422913, + "learning_rate": 9.013513513513514e-06, + "loss": 0.14392640113830565, + "step": 9100 + }, + { + "epoch": 82.88487584650113, + "grad_norm": 0.911325991153717, + "learning_rate": 8.563063063063063e-06, + "loss": 0.14334957122802736, + "step": 9200 + }, + { + "epoch": 83.78555304740406, + "grad_norm": 0.8723970651626587, + "learning_rate": 8.112612612612614e-06, + "loss": 0.14194762229919433, + "step": 9300 + }, + { + "epoch": 84.686230248307, + "grad_norm": 0.834684431552887, + "learning_rate": 7.662162162162163e-06, + "loss": 0.14132658004760743, + "step": 9400 + }, + { + "epoch": 85.58690744920993, + "grad_norm": 0.8034214377403259, + "learning_rate": 7.2117117117117115e-06, + "loss": 0.13956727027893068, + "step": 9500 + }, + { + "epoch": 86.48758465011286, + "grad_norm": 0.798268735408783, + "learning_rate": 6.761261261261262e-06, + "loss": 0.139612398147583, + "step": 9600 + }, + { + "epoch": 87.3882618510158, + "grad_norm": 0.8256174325942993, + "learning_rate": 6.31081081081081e-06, + "loss": 0.13857213973999025, + "step": 9700 + }, + { + "epoch": 88.28893905191873, + "grad_norm": 0.7702272534370422, + "learning_rate": 5.860360360360361e-06, + "loss": 0.1381959819793701, + "step": 9800 + }, + { + "epoch": 89.18961625282166, + "grad_norm": 0.7400526404380798, + "learning_rate": 5.409909909909911e-06, + "loss": 0.13726057052612306, + "step": 9900 + }, + { + "epoch": 90.0902934537246, + "grad_norm": 0.7787278294563293, + "learning_rate": 4.95945945945946e-06, + "loss": 0.13640686988830567, + "step": 10000 + }, + { + "epoch": 90.99322799097065, + "grad_norm": 0.7977456450462341, + "learning_rate": 4.509009009009009e-06, + "loss": 0.1359243583679199, + "step": 10100 + }, + { + "epoch": 91.89390519187359, + "grad_norm": 0.7868166565895081, + "learning_rate": 4.058558558558559e-06, + "loss": 0.1351595115661621, + "step": 10200 + }, + { + "epoch": 92.79458239277652, + "grad_norm": 0.7406633496284485, + "learning_rate": 3.608108108108108e-06, + "loss": 0.13441814422607423, + "step": 10300 + }, + { + "epoch": 93.69525959367945, + "grad_norm": 0.7887991666793823, + "learning_rate": 3.1576576576576574e-06, + "loss": 0.13428014755249024, + "step": 10400 + }, + { + "epoch": 94.5959367945824, + "grad_norm": 0.6816275715827942, + "learning_rate": 2.7072072072072076e-06, + "loss": 0.13383679389953612, + "step": 10500 + }, + { + "epoch": 95.49661399548533, + "grad_norm": 0.7175427675247192, + "learning_rate": 2.2567567567567566e-06, + "loss": 0.13299258232116698, + "step": 10600 + }, + { + "epoch": 96.39729119638827, + "grad_norm": 0.781178891658783, + "learning_rate": 1.8063063063063064e-06, + "loss": 0.1331423282623291, + "step": 10700 + }, + { + "epoch": 97.2979683972912, + "grad_norm": 0.8200775384902954, + "learning_rate": 1.355855855855856e-06, + "loss": 0.13251815795898436, + "step": 10800 + } + ], + "logging_steps": 100, + "max_steps": 11100, + "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": 8171526901948416.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/training_args.bin b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/config.json new file mode 100644 index 0000000000000000000000000000000000000000..c952bf6a171500dde4885769d5a7be409adca0fd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/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": 558 +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/generation_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/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/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/model.safetensors b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5a81df9d8c536b680ee1edea0a6b335919b590e3 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc836d29380dfbb53a41a40cd5c248a0f070ff1c2ed9a28e3f009637b403ab6a +size 174982600 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/optimizer.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d6ec20b4d6340660e7bd4dd6ac99aefcdaacaa71 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b151c14ef41002a5aaba146d5ac3c8c73b464cfdc0ac783010269f5c7a6006 +size 350014283 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/rng_state.pth b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..cf6ada95c5230c229e1eada547c16c5a6277b6a2 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17a3dd83e36f276a39c3e616d02b8198ddb3069608ed163c0a23dabdcde6d6b +size 14645 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/scaler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cec61f1f644d489fb68581302fb4d7a4ac49a0a8 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a8452acf070658daae606442531f2a0a32da395e0ae2f5985495fc2a2cfdb7 +size 1383 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/scheduler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..28925681adb5e42dce262cbed61fb000d5955731 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9084c8de02148625643e76cf74d281d1a21558468661ca9206f7d944ea68a3 +size 1465 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/trainer_state.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e58f5eb2761ca2dd9337410679088fb36258b459 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/trainer_state.json @@ -0,0 +1,790 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 10878, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.9029345372460497, + "grad_norm": 0.7101529836654663, + "learning_rate": 4.955405405405405e-05, + "loss": 1.692232666015625, + "step": 100 + }, + { + "epoch": 1.8036117381489842, + "grad_norm": 0.5825457572937012, + "learning_rate": 4.91036036036036e-05, + "loss": 0.6571139526367188, + "step": 200 + }, + { + "epoch": 2.704288939051919, + "grad_norm": 0.5998010635375977, + "learning_rate": 4.865315315315316e-05, + "loss": 0.572731704711914, + "step": 300 + }, + { + "epoch": 3.604966139954853, + "grad_norm": 0.5911508202552795, + "learning_rate": 4.8202702702702704e-05, + "loss": 0.5455382537841796, + "step": 400 + }, + { + "epoch": 4.505643340857787, + "grad_norm": 0.5691034197807312, + "learning_rate": 4.7752252252252255e-05, + "loss": 0.5281015396118164, + "step": 500 + }, + { + "epoch": 5.4063205417607225, + "grad_norm": 0.5880727767944336, + "learning_rate": 4.7301801801801806e-05, + "loss": 0.5146820449829101, + "step": 600 + }, + { + "epoch": 6.306997742663657, + "grad_norm": 0.5902809500694275, + "learning_rate": 4.685135135135135e-05, + "loss": 0.5027880477905273, + "step": 700 + }, + { + "epoch": 7.207674943566591, + "grad_norm": 0.6322414875030518, + "learning_rate": 4.64009009009009e-05, + "loss": 0.49580284118652346, + "step": 800 + }, + { + "epoch": 8.108352144469526, + "grad_norm": 0.5528641939163208, + "learning_rate": 4.595045045045046e-05, + "loss": 0.49028945922851563, + "step": 900 + }, + { + "epoch": 9.009029345372461, + "grad_norm": 0.5793948173522949, + "learning_rate": 4.55e-05, + "loss": 0.48525371551513674, + "step": 1000 + }, + { + "epoch": 9.91196388261851, + "grad_norm": 0.5765132308006287, + "learning_rate": 4.504954954954955e-05, + "loss": 0.4773061752319336, + "step": 1100 + }, + { + "epoch": 10.812641083521445, + "grad_norm": 0.6041397452354431, + "learning_rate": 4.45990990990991e-05, + "loss": 0.4708379364013672, + "step": 1200 + }, + { + "epoch": 11.713318284424378, + "grad_norm": 0.5950121283531189, + "learning_rate": 4.4148648648648647e-05, + "loss": 0.4690429306030273, + "step": 1300 + }, + { + "epoch": 12.613995485327314, + "grad_norm": 0.5916767716407776, + "learning_rate": 4.36981981981982e-05, + "loss": 0.462205810546875, + "step": 1400 + }, + { + "epoch": 13.514672686230249, + "grad_norm": 0.5803223252296448, + "learning_rate": 4.3247747747747755e-05, + "loss": 0.4584015655517578, + "step": 1500 + }, + { + "epoch": 14.415349887133182, + "grad_norm": 0.5735377073287964, + "learning_rate": 4.27972972972973e-05, + "loss": 0.45363746643066405, + "step": 1600 + }, + { + "epoch": 15.316027088036117, + "grad_norm": 0.5723473429679871, + "learning_rate": 4.234684684684685e-05, + "loss": 0.4506369400024414, + "step": 1700 + }, + { + "epoch": 16.216704288939052, + "grad_norm": 0.5657737851142883, + "learning_rate": 4.18963963963964e-05, + "loss": 0.44744483947753905, + "step": 1800 + }, + { + "epoch": 17.117381489841986, + "grad_norm": 0.5428962707519531, + "learning_rate": 4.1445945945945944e-05, + "loss": 0.44267566680908205, + "step": 1900 + }, + { + "epoch": 18.018058690744923, + "grad_norm": 0.6139283180236816, + "learning_rate": 4.0995495495495494e-05, + "loss": 0.4398773193359375, + "step": 2000 + }, + { + "epoch": 18.92099322799097, + "grad_norm": 0.5393434166908264, + "learning_rate": 4.054504504504505e-05, + "loss": 0.43377147674560546, + "step": 2100 + }, + { + "epoch": 19.821670428893906, + "grad_norm": 0.5807977318763733, + "learning_rate": 4.0094594594594595e-05, + "loss": 0.43059558868408204, + "step": 2200 + }, + { + "epoch": 20.72234762979684, + "grad_norm": 0.5822982788085938, + "learning_rate": 3.9644144144144146e-05, + "loss": 0.4262446975708008, + "step": 2300 + }, + { + "epoch": 21.623024830699773, + "grad_norm": 0.6040003299713135, + "learning_rate": 3.91936936936937e-05, + "loss": 0.4234455490112305, + "step": 2400 + }, + { + "epoch": 22.52370203160271, + "grad_norm": 0.6180558204650879, + "learning_rate": 3.874324324324324e-05, + "loss": 0.4176918411254883, + "step": 2500 + }, + { + "epoch": 23.424379232505643, + "grad_norm": 0.6245187520980835, + "learning_rate": 3.829279279279279e-05, + "loss": 0.4133774948120117, + "step": 2600 + }, + { + "epoch": 24.325056433408577, + "grad_norm": 0.6694397330284119, + "learning_rate": 3.784234234234235e-05, + "loss": 0.41039291381835935, + "step": 2700 + }, + { + "epoch": 25.225733634311513, + "grad_norm": 0.6744610071182251, + "learning_rate": 3.739189189189189e-05, + "loss": 0.40439399719238284, + "step": 2800 + }, + { + "epoch": 26.126410835214447, + "grad_norm": 0.6629764437675476, + "learning_rate": 3.694144144144144e-05, + "loss": 0.401536750793457, + "step": 2900 + }, + { + "epoch": 27.02708803611738, + "grad_norm": 0.6398245096206665, + "learning_rate": 3.6490990990990994e-05, + "loss": 0.3963093566894531, + "step": 3000 + }, + { + "epoch": 27.93002257336343, + "grad_norm": 0.6760854125022888, + "learning_rate": 3.604054054054054e-05, + "loss": 0.3903382873535156, + "step": 3100 + }, + { + "epoch": 28.830699774266364, + "grad_norm": 0.7078990936279297, + "learning_rate": 3.559009009009009e-05, + "loss": 0.385062141418457, + "step": 3200 + }, + { + "epoch": 29.7313769751693, + "grad_norm": 0.7518747448921204, + "learning_rate": 3.5139639639639646e-05, + "loss": 0.378619384765625, + "step": 3300 + }, + { + "epoch": 30.632054176072234, + "grad_norm": 0.7628916501998901, + "learning_rate": 3.468918918918919e-05, + "loss": 0.373223762512207, + "step": 3400 + }, + { + "epoch": 31.532731376975168, + "grad_norm": 0.739010214805603, + "learning_rate": 3.423873873873874e-05, + "loss": 0.36767356872558593, + "step": 3500 + }, + { + "epoch": 32.433408577878104, + "grad_norm": 0.6916473507881165, + "learning_rate": 3.378828828828829e-05, + "loss": 0.3617561721801758, + "step": 3600 + }, + { + "epoch": 33.33408577878104, + "grad_norm": 0.7642673850059509, + "learning_rate": 3.3337837837837834e-05, + "loss": 0.35553871154785155, + "step": 3700 + }, + { + "epoch": 34.23476297968397, + "grad_norm": 0.7590261697769165, + "learning_rate": 3.288738738738739e-05, + "loss": 0.3502037811279297, + "step": 3800 + }, + { + "epoch": 35.135440180586905, + "grad_norm": 0.7054361701011658, + "learning_rate": 3.243693693693694e-05, + "loss": 0.3426921844482422, + "step": 3900 + }, + { + "epoch": 36.036117381489845, + "grad_norm": 0.7512856125831604, + "learning_rate": 3.1986486486486486e-05, + "loss": 0.33641414642333983, + "step": 4000 + }, + { + "epoch": 36.93905191873589, + "grad_norm": 0.8908946514129639, + "learning_rate": 3.153603603603604e-05, + "loss": 0.3283998107910156, + "step": 4100 + }, + { + "epoch": 37.839729119638825, + "grad_norm": 0.8154875636100769, + "learning_rate": 3.108558558558559e-05, + "loss": 0.3213259506225586, + "step": 4200 + }, + { + "epoch": 38.74040632054176, + "grad_norm": 0.8380379676818848, + "learning_rate": 3.063513513513513e-05, + "loss": 0.31306919097900393, + "step": 4300 + }, + { + "epoch": 39.64108352144469, + "grad_norm": 0.8252752423286438, + "learning_rate": 3.018468468468469e-05, + "loss": 0.3073639488220215, + "step": 4400 + }, + { + "epoch": 40.54176072234763, + "grad_norm": 0.9085137844085693, + "learning_rate": 2.9734234234234236e-05, + "loss": 0.3001600456237793, + "step": 4500 + }, + { + "epoch": 41.442437923250566, + "grad_norm": 0.8658757209777832, + "learning_rate": 2.9283783783783787e-05, + "loss": 0.29396560668945315, + "step": 4600 + }, + { + "epoch": 42.3431151241535, + "grad_norm": 0.8093195557594299, + "learning_rate": 2.8833333333333334e-05, + "loss": 0.28757701873779296, + "step": 4700 + }, + { + "epoch": 43.24379232505643, + "grad_norm": 0.7976832985877991, + "learning_rate": 2.8382882882882885e-05, + "loss": 0.2814314270019531, + "step": 4800 + }, + { + "epoch": 44.144469525959366, + "grad_norm": 0.8538079857826233, + "learning_rate": 2.7932432432432432e-05, + "loss": 0.2742281723022461, + "step": 4900 + }, + { + "epoch": 45.0451467268623, + "grad_norm": 0.855580747127533, + "learning_rate": 2.7481981981981986e-05, + "loss": 0.2675522994995117, + "step": 5000 + }, + { + "epoch": 45.94808126410835, + "grad_norm": 0.8964878916740417, + "learning_rate": 2.7031531531531533e-05, + "loss": 0.26104148864746096, + "step": 5100 + }, + { + "epoch": 46.84875846501129, + "grad_norm": 0.9050287008285522, + "learning_rate": 2.6581081081081084e-05, + "loss": 0.25440666198730466, + "step": 5200 + }, + { + "epoch": 47.74943566591422, + "grad_norm": 0.9355533123016357, + "learning_rate": 2.613063063063063e-05, + "loss": 0.24863595962524415, + "step": 5300 + }, + { + "epoch": 48.65011286681715, + "grad_norm": 0.9033967852592468, + "learning_rate": 2.568018018018018e-05, + "loss": 0.24237123489379883, + "step": 5400 + }, + { + "epoch": 49.550790067720094, + "grad_norm": 0.9311243295669556, + "learning_rate": 2.522972972972973e-05, + "loss": 0.23914791107177735, + "step": 5500 + }, + { + "epoch": 50.45146726862303, + "grad_norm": 0.9304994940757751, + "learning_rate": 2.477927927927928e-05, + "loss": 0.2321404457092285, + "step": 5600 + }, + { + "epoch": 51.35214446952596, + "grad_norm": 0.847550094127655, + "learning_rate": 2.432882882882883e-05, + "loss": 0.22843591690063478, + "step": 5700 + }, + { + "epoch": 52.252821670428894, + "grad_norm": 0.8993908166885376, + "learning_rate": 2.387837837837838e-05, + "loss": 0.2236848258972168, + "step": 5800 + }, + { + "epoch": 53.15349887133183, + "grad_norm": 0.8454537987709045, + "learning_rate": 2.3427927927927928e-05, + "loss": 0.21860357284545898, + "step": 5900 + }, + { + "epoch": 54.05417607223476, + "grad_norm": 0.9163772463798523, + "learning_rate": 2.297747747747748e-05, + "loss": 0.21527904510498047, + "step": 6000 + }, + { + "epoch": 54.957110609480814, + "grad_norm": 0.9593232274055481, + "learning_rate": 2.252702702702703e-05, + "loss": 0.2099004554748535, + "step": 6100 + }, + { + "epoch": 55.85778781038375, + "grad_norm": 0.9488871097564697, + "learning_rate": 2.2076576576576576e-05, + "loss": 0.2048540687561035, + "step": 6200 + }, + { + "epoch": 56.75846501128668, + "grad_norm": 0.9115195870399475, + "learning_rate": 2.1626126126126127e-05, + "loss": 0.20162824630737305, + "step": 6300 + }, + { + "epoch": 57.659142212189614, + "grad_norm": 0.8790065050125122, + "learning_rate": 2.1175675675675678e-05, + "loss": 0.19816001892089843, + "step": 6400 + }, + { + "epoch": 58.55981941309255, + "grad_norm": 0.8536332845687866, + "learning_rate": 2.0725225225225225e-05, + "loss": 0.19469743728637695, + "step": 6500 + }, + { + "epoch": 59.46049661399549, + "grad_norm": 0.8732705116271973, + "learning_rate": 2.0274774774774776e-05, + "loss": 0.19105638504028322, + "step": 6600 + }, + { + "epoch": 60.36117381489842, + "grad_norm": 0.8837640881538391, + "learning_rate": 1.9824324324324326e-05, + "loss": 0.1880354118347168, + "step": 6700 + }, + { + "epoch": 61.261851015801355, + "grad_norm": 0.8144468069076538, + "learning_rate": 1.9373873873873873e-05, + "loss": 0.1855927848815918, + "step": 6800 + }, + { + "epoch": 62.16252821670429, + "grad_norm": 0.8792384266853333, + "learning_rate": 1.8923423423423424e-05, + "loss": 0.18369064331054688, + "step": 6900 + }, + { + "epoch": 63.06320541760722, + "grad_norm": 0.8073577880859375, + "learning_rate": 1.8472972972972975e-05, + "loss": 0.18010915756225587, + "step": 7000 + }, + { + "epoch": 63.966139954853276, + "grad_norm": 0.8626881837844849, + "learning_rate": 1.8022522522522522e-05, + "loss": 0.17718856811523437, + "step": 7100 + }, + { + "epoch": 64.86681715575621, + "grad_norm": 0.8884615898132324, + "learning_rate": 1.7572072072072073e-05, + "loss": 0.17479589462280273, + "step": 7200 + }, + { + "epoch": 65.76749435665914, + "grad_norm": 0.8588799238204956, + "learning_rate": 1.7121621621621623e-05, + "loss": 0.17206171035766601, + "step": 7300 + }, + { + "epoch": 66.66817155756208, + "grad_norm": 0.8529822826385498, + "learning_rate": 1.667117117117117e-05, + "loss": 0.16997116088867187, + "step": 7400 + }, + { + "epoch": 67.56884875846501, + "grad_norm": 0.857876181602478, + "learning_rate": 1.622072072072072e-05, + "loss": 0.16807559967041016, + "step": 7500 + }, + { + "epoch": 68.46952595936794, + "grad_norm": 0.8409956097602844, + "learning_rate": 1.577027027027027e-05, + "loss": 0.16600030899047852, + "step": 7600 + }, + { + "epoch": 69.37020316027088, + "grad_norm": 0.852760910987854, + "learning_rate": 1.531981981981982e-05, + "loss": 0.16438615798950196, + "step": 7700 + }, + { + "epoch": 70.27088036117381, + "grad_norm": 0.8459377288818359, + "learning_rate": 1.4869369369369371e-05, + "loss": 0.16228899002075195, + "step": 7800 + }, + { + "epoch": 71.17155756207674, + "grad_norm": 0.8343397974967957, + "learning_rate": 1.441891891891892e-05, + "loss": 0.16045280456542968, + "step": 7900 + }, + { + "epoch": 72.07223476297969, + "grad_norm": 0.8942051529884338, + "learning_rate": 1.3968468468468467e-05, + "loss": 0.15871651649475096, + "step": 8000 + }, + { + "epoch": 72.97516930022573, + "grad_norm": 0.9784395098686218, + "learning_rate": 1.351801801801802e-05, + "loss": 0.15678136825561523, + "step": 8100 + }, + { + "epoch": 73.87584650112866, + "grad_norm": 0.8617171049118042, + "learning_rate": 1.3067567567567569e-05, + "loss": 0.1548241424560547, + "step": 8200 + }, + { + "epoch": 74.7765237020316, + "grad_norm": 0.7932390570640564, + "learning_rate": 1.2617117117117116e-05, + "loss": 0.15381698608398436, + "step": 8300 + }, + { + "epoch": 75.67720090293454, + "grad_norm": 0.7702974081039429, + "learning_rate": 1.2166666666666668e-05, + "loss": 0.15224995613098144, + "step": 8400 + }, + { + "epoch": 76.57787810383748, + "grad_norm": 0.8658645749092102, + "learning_rate": 1.1716216216216217e-05, + "loss": 0.15124171257019042, + "step": 8500 + }, + { + "epoch": 77.47855530474041, + "grad_norm": 0.8349391222000122, + "learning_rate": 1.1265765765765766e-05, + "loss": 0.1498565196990967, + "step": 8600 + }, + { + "epoch": 78.37923250564334, + "grad_norm": 0.8226608037948608, + "learning_rate": 1.0815315315315317e-05, + "loss": 0.14874308586120605, + "step": 8700 + }, + { + "epoch": 79.27990970654628, + "grad_norm": 0.8730639219284058, + "learning_rate": 1.0364864864864866e-05, + "loss": 0.14670371055603026, + "step": 8800 + }, + { + "epoch": 80.18058690744921, + "grad_norm": 0.7831152081489563, + "learning_rate": 9.914414414414415e-06, + "loss": 0.14648072242736818, + "step": 8900 + }, + { + "epoch": 81.08126410835214, + "grad_norm": 0.7942720055580139, + "learning_rate": 9.463963963963965e-06, + "loss": 0.14472357749938966, + "step": 9000 + }, + { + "epoch": 81.9841986455982, + "grad_norm": 0.8477607369422913, + "learning_rate": 9.013513513513514e-06, + "loss": 0.14392640113830565, + "step": 9100 + }, + { + "epoch": 82.88487584650113, + "grad_norm": 0.911325991153717, + "learning_rate": 8.563063063063063e-06, + "loss": 0.14334957122802736, + "step": 9200 + }, + { + "epoch": 83.78555304740406, + "grad_norm": 0.8723970651626587, + "learning_rate": 8.112612612612614e-06, + "loss": 0.14194762229919433, + "step": 9300 + }, + { + "epoch": 84.686230248307, + "grad_norm": 0.834684431552887, + "learning_rate": 7.662162162162163e-06, + "loss": 0.14132658004760743, + "step": 9400 + }, + { + "epoch": 85.58690744920993, + "grad_norm": 0.8034214377403259, + "learning_rate": 7.2117117117117115e-06, + "loss": 0.13956727027893068, + "step": 9500 + }, + { + "epoch": 86.48758465011286, + "grad_norm": 0.798268735408783, + "learning_rate": 6.761261261261262e-06, + "loss": 0.139612398147583, + "step": 9600 + }, + { + "epoch": 87.3882618510158, + "grad_norm": 0.8256174325942993, + "learning_rate": 6.31081081081081e-06, + "loss": 0.13857213973999025, + "step": 9700 + }, + { + "epoch": 88.28893905191873, + "grad_norm": 0.7702272534370422, + "learning_rate": 5.860360360360361e-06, + "loss": 0.1381959819793701, + "step": 9800 + }, + { + "epoch": 89.18961625282166, + "grad_norm": 0.7400526404380798, + "learning_rate": 5.409909909909911e-06, + "loss": 0.13726057052612306, + "step": 9900 + }, + { + "epoch": 90.0902934537246, + "grad_norm": 0.7787278294563293, + "learning_rate": 4.95945945945946e-06, + "loss": 0.13640686988830567, + "step": 10000 + }, + { + "epoch": 90.99322799097065, + "grad_norm": 0.7977456450462341, + "learning_rate": 4.509009009009009e-06, + "loss": 0.1359243583679199, + "step": 10100 + }, + { + "epoch": 91.89390519187359, + "grad_norm": 0.7868166565895081, + "learning_rate": 4.058558558558559e-06, + "loss": 0.1351595115661621, + "step": 10200 + }, + { + "epoch": 92.79458239277652, + "grad_norm": 0.7406633496284485, + "learning_rate": 3.608108108108108e-06, + "loss": 0.13441814422607423, + "step": 10300 + }, + { + "epoch": 93.69525959367945, + "grad_norm": 0.7887991666793823, + "learning_rate": 3.1576576576576574e-06, + "loss": 0.13428014755249024, + "step": 10400 + }, + { + "epoch": 94.5959367945824, + "grad_norm": 0.6816275715827942, + "learning_rate": 2.7072072072072076e-06, + "loss": 0.13383679389953612, + "step": 10500 + }, + { + "epoch": 95.49661399548533, + "grad_norm": 0.7175427675247192, + "learning_rate": 2.2567567567567566e-06, + "loss": 0.13299258232116698, + "step": 10600 + }, + { + "epoch": 96.39729119638827, + "grad_norm": 0.781178891658783, + "learning_rate": 1.8063063063063064e-06, + "loss": 0.1331423282623291, + "step": 10700 + }, + { + "epoch": 97.2979683972912, + "grad_norm": 0.8200775384902954, + "learning_rate": 1.355855855855856e-06, + "loss": 0.13251815795898436, + "step": 10800 + } + ], + "logging_steps": 100, + "max_steps": 11100, + "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": 8230451105415168.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/training_args.bin b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10878/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..c952bf6a171500dde4885769d5a7be409adca0fd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/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": 558 +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/generation_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/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/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/model.safetensors b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3debf95413526b13ddd9c2f1240058c3dec57b75 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306ebe13cac92ab70a75c1ad237371e03b972d43f9ca453b23825963c3ae0077 +size 174982600 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/optimizer.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b4875b34021e2454190b84518120013c4af295f1 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8eae2c32ab483591af527bb38d6cbcbbca2657d9d35ecc51783296077c0b655 +size 350014283 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/rng_state.pth b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..106b94f4758712375732b5bdceceb6e6e57a8be8 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b37dbf5bbb94e5e582bf29b95f9a9ac0f5aebb3c3c9d61927edf30235f790e6 +size 14645 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/scaler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c7321e310c76288bae33e15f1ce28efc7256ed40 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e74a20061812ebaf034c761408665be07ab783fc3d4c0c7bfb461d87201ff3 +size 1383 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/scheduler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c2c2756801005c9aa190e126f2e2d6f5bbf8b0b7 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfea981bb7c3cbdf0bac94c6058b928b6ad0ecd86813823ab15e8c76d10a070 +size 1465 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/trainer_state.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..ff1c5a84a6e30984710fb14322cec42e32272dc4 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/trainer_state.json @@ -0,0 +1,797 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.19864559819413, + "eval_steps": 100, + "global_step": 10900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.9029345372460497, + "grad_norm": 0.7101529836654663, + "learning_rate": 4.955405405405405e-05, + "loss": 1.692232666015625, + "step": 100 + }, + { + "epoch": 1.8036117381489842, + "grad_norm": 0.5825457572937012, + "learning_rate": 4.91036036036036e-05, + "loss": 0.6571139526367188, + "step": 200 + }, + { + "epoch": 2.704288939051919, + "grad_norm": 0.5998010635375977, + "learning_rate": 4.865315315315316e-05, + "loss": 0.572731704711914, + "step": 300 + }, + { + "epoch": 3.604966139954853, + "grad_norm": 0.5911508202552795, + "learning_rate": 4.8202702702702704e-05, + "loss": 0.5455382537841796, + "step": 400 + }, + { + "epoch": 4.505643340857787, + "grad_norm": 0.5691034197807312, + "learning_rate": 4.7752252252252255e-05, + "loss": 0.5281015396118164, + "step": 500 + }, + { + "epoch": 5.4063205417607225, + "grad_norm": 0.5880727767944336, + "learning_rate": 4.7301801801801806e-05, + "loss": 0.5146820449829101, + "step": 600 + }, + { + "epoch": 6.306997742663657, + "grad_norm": 0.5902809500694275, + "learning_rate": 4.685135135135135e-05, + "loss": 0.5027880477905273, + "step": 700 + }, + { + "epoch": 7.207674943566591, + "grad_norm": 0.6322414875030518, + "learning_rate": 4.64009009009009e-05, + "loss": 0.49580284118652346, + "step": 800 + }, + { + "epoch": 8.108352144469526, + "grad_norm": 0.5528641939163208, + "learning_rate": 4.595045045045046e-05, + "loss": 0.49028945922851563, + "step": 900 + }, + { + "epoch": 9.009029345372461, + "grad_norm": 0.5793948173522949, + "learning_rate": 4.55e-05, + "loss": 0.48525371551513674, + "step": 1000 + }, + { + "epoch": 9.91196388261851, + "grad_norm": 0.5765132308006287, + "learning_rate": 4.504954954954955e-05, + "loss": 0.4773061752319336, + "step": 1100 + }, + { + "epoch": 10.812641083521445, + "grad_norm": 0.6041397452354431, + "learning_rate": 4.45990990990991e-05, + "loss": 0.4708379364013672, + "step": 1200 + }, + { + "epoch": 11.713318284424378, + "grad_norm": 0.5950121283531189, + "learning_rate": 4.4148648648648647e-05, + "loss": 0.4690429306030273, + "step": 1300 + }, + { + "epoch": 12.613995485327314, + "grad_norm": 0.5916767716407776, + "learning_rate": 4.36981981981982e-05, + "loss": 0.462205810546875, + "step": 1400 + }, + { + "epoch": 13.514672686230249, + "grad_norm": 0.5803223252296448, + "learning_rate": 4.3247747747747755e-05, + "loss": 0.4584015655517578, + "step": 1500 + }, + { + "epoch": 14.415349887133182, + "grad_norm": 0.5735377073287964, + "learning_rate": 4.27972972972973e-05, + "loss": 0.45363746643066405, + "step": 1600 + }, + { + "epoch": 15.316027088036117, + "grad_norm": 0.5723473429679871, + "learning_rate": 4.234684684684685e-05, + "loss": 0.4506369400024414, + "step": 1700 + }, + { + "epoch": 16.216704288939052, + "grad_norm": 0.5657737851142883, + "learning_rate": 4.18963963963964e-05, + "loss": 0.44744483947753905, + "step": 1800 + }, + { + "epoch": 17.117381489841986, + "grad_norm": 0.5428962707519531, + "learning_rate": 4.1445945945945944e-05, + "loss": 0.44267566680908205, + "step": 1900 + }, + { + "epoch": 18.018058690744923, + "grad_norm": 0.6139283180236816, + "learning_rate": 4.0995495495495494e-05, + "loss": 0.4398773193359375, + "step": 2000 + }, + { + "epoch": 18.92099322799097, + "grad_norm": 0.5393434166908264, + "learning_rate": 4.054504504504505e-05, + "loss": 0.43377147674560546, + "step": 2100 + }, + { + "epoch": 19.821670428893906, + "grad_norm": 0.5807977318763733, + "learning_rate": 4.0094594594594595e-05, + "loss": 0.43059558868408204, + "step": 2200 + }, + { + "epoch": 20.72234762979684, + "grad_norm": 0.5822982788085938, + "learning_rate": 3.9644144144144146e-05, + "loss": 0.4262446975708008, + "step": 2300 + }, + { + "epoch": 21.623024830699773, + "grad_norm": 0.6040003299713135, + "learning_rate": 3.91936936936937e-05, + "loss": 0.4234455490112305, + "step": 2400 + }, + { + "epoch": 22.52370203160271, + "grad_norm": 0.6180558204650879, + "learning_rate": 3.874324324324324e-05, + "loss": 0.4176918411254883, + "step": 2500 + }, + { + "epoch": 23.424379232505643, + "grad_norm": 0.6245187520980835, + "learning_rate": 3.829279279279279e-05, + "loss": 0.4133774948120117, + "step": 2600 + }, + { + "epoch": 24.325056433408577, + "grad_norm": 0.6694397330284119, + "learning_rate": 3.784234234234235e-05, + "loss": 0.41039291381835935, + "step": 2700 + }, + { + "epoch": 25.225733634311513, + "grad_norm": 0.6744610071182251, + "learning_rate": 3.739189189189189e-05, + "loss": 0.40439399719238284, + "step": 2800 + }, + { + "epoch": 26.126410835214447, + "grad_norm": 0.6629764437675476, + "learning_rate": 3.694144144144144e-05, + "loss": 0.401536750793457, + "step": 2900 + }, + { + "epoch": 27.02708803611738, + "grad_norm": 0.6398245096206665, + "learning_rate": 3.6490990990990994e-05, + "loss": 0.3963093566894531, + "step": 3000 + }, + { + "epoch": 27.93002257336343, + "grad_norm": 0.6760854125022888, + "learning_rate": 3.604054054054054e-05, + "loss": 0.3903382873535156, + "step": 3100 + }, + { + "epoch": 28.830699774266364, + "grad_norm": 0.7078990936279297, + "learning_rate": 3.559009009009009e-05, + "loss": 0.385062141418457, + "step": 3200 + }, + { + "epoch": 29.7313769751693, + "grad_norm": 0.7518747448921204, + "learning_rate": 3.5139639639639646e-05, + "loss": 0.378619384765625, + "step": 3300 + }, + { + "epoch": 30.632054176072234, + "grad_norm": 0.7628916501998901, + "learning_rate": 3.468918918918919e-05, + "loss": 0.373223762512207, + "step": 3400 + }, + { + "epoch": 31.532731376975168, + "grad_norm": 0.739010214805603, + "learning_rate": 3.423873873873874e-05, + "loss": 0.36767356872558593, + "step": 3500 + }, + { + "epoch": 32.433408577878104, + "grad_norm": 0.6916473507881165, + "learning_rate": 3.378828828828829e-05, + "loss": 0.3617561721801758, + "step": 3600 + }, + { + "epoch": 33.33408577878104, + "grad_norm": 0.7642673850059509, + "learning_rate": 3.3337837837837834e-05, + "loss": 0.35553871154785155, + "step": 3700 + }, + { + "epoch": 34.23476297968397, + "grad_norm": 0.7590261697769165, + "learning_rate": 3.288738738738739e-05, + "loss": 0.3502037811279297, + "step": 3800 + }, + { + "epoch": 35.135440180586905, + "grad_norm": 0.7054361701011658, + "learning_rate": 3.243693693693694e-05, + "loss": 0.3426921844482422, + "step": 3900 + }, + { + "epoch": 36.036117381489845, + "grad_norm": 0.7512856125831604, + "learning_rate": 3.1986486486486486e-05, + "loss": 0.33641414642333983, + "step": 4000 + }, + { + "epoch": 36.93905191873589, + "grad_norm": 0.8908946514129639, + "learning_rate": 3.153603603603604e-05, + "loss": 0.3283998107910156, + "step": 4100 + }, + { + "epoch": 37.839729119638825, + "grad_norm": 0.8154875636100769, + "learning_rate": 3.108558558558559e-05, + "loss": 0.3213259506225586, + "step": 4200 + }, + { + "epoch": 38.74040632054176, + "grad_norm": 0.8380379676818848, + "learning_rate": 3.063513513513513e-05, + "loss": 0.31306919097900393, + "step": 4300 + }, + { + "epoch": 39.64108352144469, + "grad_norm": 0.8252752423286438, + "learning_rate": 3.018468468468469e-05, + "loss": 0.3073639488220215, + "step": 4400 + }, + { + "epoch": 40.54176072234763, + "grad_norm": 0.9085137844085693, + "learning_rate": 2.9734234234234236e-05, + "loss": 0.3001600456237793, + "step": 4500 + }, + { + "epoch": 41.442437923250566, + "grad_norm": 0.8658757209777832, + "learning_rate": 2.9283783783783787e-05, + "loss": 0.29396560668945315, + "step": 4600 + }, + { + "epoch": 42.3431151241535, + "grad_norm": 0.8093195557594299, + "learning_rate": 2.8833333333333334e-05, + "loss": 0.28757701873779296, + "step": 4700 + }, + { + "epoch": 43.24379232505643, + "grad_norm": 0.7976832985877991, + "learning_rate": 2.8382882882882885e-05, + "loss": 0.2814314270019531, + "step": 4800 + }, + { + "epoch": 44.144469525959366, + "grad_norm": 0.8538079857826233, + "learning_rate": 2.7932432432432432e-05, + "loss": 0.2742281723022461, + "step": 4900 + }, + { + "epoch": 45.0451467268623, + "grad_norm": 0.855580747127533, + "learning_rate": 2.7481981981981986e-05, + "loss": 0.2675522994995117, + "step": 5000 + }, + { + "epoch": 45.94808126410835, + "grad_norm": 0.8964878916740417, + "learning_rate": 2.7031531531531533e-05, + "loss": 0.26104148864746096, + "step": 5100 + }, + { + "epoch": 46.84875846501129, + "grad_norm": 0.9050287008285522, + "learning_rate": 2.6581081081081084e-05, + "loss": 0.25440666198730466, + "step": 5200 + }, + { + "epoch": 47.74943566591422, + "grad_norm": 0.9355533123016357, + "learning_rate": 2.613063063063063e-05, + "loss": 0.24863595962524415, + "step": 5300 + }, + { + "epoch": 48.65011286681715, + "grad_norm": 0.9033967852592468, + "learning_rate": 2.568018018018018e-05, + "loss": 0.24237123489379883, + "step": 5400 + }, + { + "epoch": 49.550790067720094, + "grad_norm": 0.9311243295669556, + "learning_rate": 2.522972972972973e-05, + "loss": 0.23914791107177735, + "step": 5500 + }, + { + "epoch": 50.45146726862303, + "grad_norm": 0.9304994940757751, + "learning_rate": 2.477927927927928e-05, + "loss": 0.2321404457092285, + "step": 5600 + }, + { + "epoch": 51.35214446952596, + "grad_norm": 0.847550094127655, + "learning_rate": 2.432882882882883e-05, + "loss": 0.22843591690063478, + "step": 5700 + }, + { + "epoch": 52.252821670428894, + "grad_norm": 0.8993908166885376, + "learning_rate": 2.387837837837838e-05, + "loss": 0.2236848258972168, + "step": 5800 + }, + { + "epoch": 53.15349887133183, + "grad_norm": 0.8454537987709045, + "learning_rate": 2.3427927927927928e-05, + "loss": 0.21860357284545898, + "step": 5900 + }, + { + "epoch": 54.05417607223476, + "grad_norm": 0.9163772463798523, + "learning_rate": 2.297747747747748e-05, + "loss": 0.21527904510498047, + "step": 6000 + }, + { + "epoch": 54.957110609480814, + "grad_norm": 0.9593232274055481, + "learning_rate": 2.252702702702703e-05, + "loss": 0.2099004554748535, + "step": 6100 + }, + { + "epoch": 55.85778781038375, + "grad_norm": 0.9488871097564697, + "learning_rate": 2.2076576576576576e-05, + "loss": 0.2048540687561035, + "step": 6200 + }, + { + "epoch": 56.75846501128668, + "grad_norm": 0.9115195870399475, + "learning_rate": 2.1626126126126127e-05, + "loss": 0.20162824630737305, + "step": 6300 + }, + { + "epoch": 57.659142212189614, + "grad_norm": 0.8790065050125122, + "learning_rate": 2.1175675675675678e-05, + "loss": 0.19816001892089843, + "step": 6400 + }, + { + "epoch": 58.55981941309255, + "grad_norm": 0.8536332845687866, + "learning_rate": 2.0725225225225225e-05, + "loss": 0.19469743728637695, + "step": 6500 + }, + { + "epoch": 59.46049661399549, + "grad_norm": 0.8732705116271973, + "learning_rate": 2.0274774774774776e-05, + "loss": 0.19105638504028322, + "step": 6600 + }, + { + "epoch": 60.36117381489842, + "grad_norm": 0.8837640881538391, + "learning_rate": 1.9824324324324326e-05, + "loss": 0.1880354118347168, + "step": 6700 + }, + { + "epoch": 61.261851015801355, + "grad_norm": 0.8144468069076538, + "learning_rate": 1.9373873873873873e-05, + "loss": 0.1855927848815918, + "step": 6800 + }, + { + "epoch": 62.16252821670429, + "grad_norm": 0.8792384266853333, + "learning_rate": 1.8923423423423424e-05, + "loss": 0.18369064331054688, + "step": 6900 + }, + { + "epoch": 63.06320541760722, + "grad_norm": 0.8073577880859375, + "learning_rate": 1.8472972972972975e-05, + "loss": 0.18010915756225587, + "step": 7000 + }, + { + "epoch": 63.966139954853276, + "grad_norm": 0.8626881837844849, + "learning_rate": 1.8022522522522522e-05, + "loss": 0.17718856811523437, + "step": 7100 + }, + { + "epoch": 64.86681715575621, + "grad_norm": 0.8884615898132324, + "learning_rate": 1.7572072072072073e-05, + "loss": 0.17479589462280273, + "step": 7200 + }, + { + "epoch": 65.76749435665914, + "grad_norm": 0.8588799238204956, + "learning_rate": 1.7121621621621623e-05, + "loss": 0.17206171035766601, + "step": 7300 + }, + { + "epoch": 66.66817155756208, + "grad_norm": 0.8529822826385498, + "learning_rate": 1.667117117117117e-05, + "loss": 0.16997116088867187, + "step": 7400 + }, + { + "epoch": 67.56884875846501, + "grad_norm": 0.857876181602478, + "learning_rate": 1.622072072072072e-05, + "loss": 0.16807559967041016, + "step": 7500 + }, + { + "epoch": 68.46952595936794, + "grad_norm": 0.8409956097602844, + "learning_rate": 1.577027027027027e-05, + "loss": 0.16600030899047852, + "step": 7600 + }, + { + "epoch": 69.37020316027088, + "grad_norm": 0.852760910987854, + "learning_rate": 1.531981981981982e-05, + "loss": 0.16438615798950196, + "step": 7700 + }, + { + "epoch": 70.27088036117381, + "grad_norm": 0.8459377288818359, + "learning_rate": 1.4869369369369371e-05, + "loss": 0.16228899002075195, + "step": 7800 + }, + { + "epoch": 71.17155756207674, + "grad_norm": 0.8343397974967957, + "learning_rate": 1.441891891891892e-05, + "loss": 0.16045280456542968, + "step": 7900 + }, + { + "epoch": 72.07223476297969, + "grad_norm": 0.8942051529884338, + "learning_rate": 1.3968468468468467e-05, + "loss": 0.15871651649475096, + "step": 8000 + }, + { + "epoch": 72.97516930022573, + "grad_norm": 0.9784395098686218, + "learning_rate": 1.351801801801802e-05, + "loss": 0.15678136825561523, + "step": 8100 + }, + { + "epoch": 73.87584650112866, + "grad_norm": 0.8617171049118042, + "learning_rate": 1.3067567567567569e-05, + "loss": 0.1548241424560547, + "step": 8200 + }, + { + "epoch": 74.7765237020316, + "grad_norm": 0.7932390570640564, + "learning_rate": 1.2617117117117116e-05, + "loss": 0.15381698608398436, + "step": 8300 + }, + { + "epoch": 75.67720090293454, + "grad_norm": 0.7702974081039429, + "learning_rate": 1.2166666666666668e-05, + "loss": 0.15224995613098144, + "step": 8400 + }, + { + "epoch": 76.57787810383748, + "grad_norm": 0.8658645749092102, + "learning_rate": 1.1716216216216217e-05, + "loss": 0.15124171257019042, + "step": 8500 + }, + { + "epoch": 77.47855530474041, + "grad_norm": 0.8349391222000122, + "learning_rate": 1.1265765765765766e-05, + "loss": 0.1498565196990967, + "step": 8600 + }, + { + "epoch": 78.37923250564334, + "grad_norm": 0.8226608037948608, + "learning_rate": 1.0815315315315317e-05, + "loss": 0.14874308586120605, + "step": 8700 + }, + { + "epoch": 79.27990970654628, + "grad_norm": 0.8730639219284058, + "learning_rate": 1.0364864864864866e-05, + "loss": 0.14670371055603026, + "step": 8800 + }, + { + "epoch": 80.18058690744921, + "grad_norm": 0.7831152081489563, + "learning_rate": 9.914414414414415e-06, + "loss": 0.14648072242736818, + "step": 8900 + }, + { + "epoch": 81.08126410835214, + "grad_norm": 0.7942720055580139, + "learning_rate": 9.463963963963965e-06, + "loss": 0.14472357749938966, + "step": 9000 + }, + { + "epoch": 81.9841986455982, + "grad_norm": 0.8477607369422913, + "learning_rate": 9.013513513513514e-06, + "loss": 0.14392640113830565, + "step": 9100 + }, + { + "epoch": 82.88487584650113, + "grad_norm": 0.911325991153717, + "learning_rate": 8.563063063063063e-06, + "loss": 0.14334957122802736, + "step": 9200 + }, + { + "epoch": 83.78555304740406, + "grad_norm": 0.8723970651626587, + "learning_rate": 8.112612612612614e-06, + "loss": 0.14194762229919433, + "step": 9300 + }, + { + "epoch": 84.686230248307, + "grad_norm": 0.834684431552887, + "learning_rate": 7.662162162162163e-06, + "loss": 0.14132658004760743, + "step": 9400 + }, + { + "epoch": 85.58690744920993, + "grad_norm": 0.8034214377403259, + "learning_rate": 7.2117117117117115e-06, + "loss": 0.13956727027893068, + "step": 9500 + }, + { + "epoch": 86.48758465011286, + "grad_norm": 0.798268735408783, + "learning_rate": 6.761261261261262e-06, + "loss": 0.139612398147583, + "step": 9600 + }, + { + "epoch": 87.3882618510158, + "grad_norm": 0.8256174325942993, + "learning_rate": 6.31081081081081e-06, + "loss": 0.13857213973999025, + "step": 9700 + }, + { + "epoch": 88.28893905191873, + "grad_norm": 0.7702272534370422, + "learning_rate": 5.860360360360361e-06, + "loss": 0.1381959819793701, + "step": 9800 + }, + { + "epoch": 89.18961625282166, + "grad_norm": 0.7400526404380798, + "learning_rate": 5.409909909909911e-06, + "loss": 0.13726057052612306, + "step": 9900 + }, + { + "epoch": 90.0902934537246, + "grad_norm": 0.7787278294563293, + "learning_rate": 4.95945945945946e-06, + "loss": 0.13640686988830567, + "step": 10000 + }, + { + "epoch": 90.99322799097065, + "grad_norm": 0.7977456450462341, + "learning_rate": 4.509009009009009e-06, + "loss": 0.1359243583679199, + "step": 10100 + }, + { + "epoch": 91.89390519187359, + "grad_norm": 0.7868166565895081, + "learning_rate": 4.058558558558559e-06, + "loss": 0.1351595115661621, + "step": 10200 + }, + { + "epoch": 92.79458239277652, + "grad_norm": 0.7406633496284485, + "learning_rate": 3.608108108108108e-06, + "loss": 0.13441814422607423, + "step": 10300 + }, + { + "epoch": 93.69525959367945, + "grad_norm": 0.7887991666793823, + "learning_rate": 3.1576576576576574e-06, + "loss": 0.13428014755249024, + "step": 10400 + }, + { + "epoch": 94.5959367945824, + "grad_norm": 0.6816275715827942, + "learning_rate": 2.7072072072072076e-06, + "loss": 0.13383679389953612, + "step": 10500 + }, + { + "epoch": 95.49661399548533, + "grad_norm": 0.7175427675247192, + "learning_rate": 2.2567567567567566e-06, + "loss": 0.13299258232116698, + "step": 10600 + }, + { + "epoch": 96.39729119638827, + "grad_norm": 0.781178891658783, + "learning_rate": 1.8063063063063064e-06, + "loss": 0.1331423282623291, + "step": 10700 + }, + { + "epoch": 97.2979683972912, + "grad_norm": 0.8200775384902954, + "learning_rate": 1.355855855855856e-06, + "loss": 0.13251815795898436, + "step": 10800 + }, + { + "epoch": 98.19864559819413, + "grad_norm": 0.8281791806221008, + "learning_rate": 9.054054054054054e-07, + "loss": 0.1319393253326416, + "step": 10900 + } + ], + "logging_steps": 100, + "max_steps": 11100, + "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": 8247157766406144.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/training_args.bin b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/config.json new file mode 100644 index 0000000000000000000000000000000000000000..c952bf6a171500dde4885769d5a7be409adca0fd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/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": 558 +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/generation_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/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/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/model.safetensors b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6c0fef2283b4a33b15e730a4d44374d9609e4400 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12bb31797b7633a80c10c40f17cd5b0ab30e3bed804281ca32c0086445386a50 +size 174982600 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/optimizer.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..025a66f17577ad1f30d69ed6c97885dcc5352e8e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80b422404c19886c594869976e76bf3aedd4fb4363bfd92bb2c5661d5b9e143 +size 350014283 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/rng_state.pth b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..78a8b868689ca71b79278bec30a6af0e0f50ade8 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60606f863342aff55fbae9d7fa2aa2c7dc6fc5c9af5647f569d9c1c278b3345f +size 14645 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/scaler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..98f718fce8ae319e774c872cce84835607d74036 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9f06c91fa0277d54f3a8cef977a04aac6de38a7c8c2099c284f1f066ccc25d +size 1383 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/scheduler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4ffc9359112983ae332352fdd77120b37b2ac0ec --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb6a20e221c94e3afa7c758f2cfa9f74a816941a5527ac63e7d514955e46c90 +size 1465 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/trainer_state.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a3936e846514f059509c5ab78eb59497477e2713 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/trainer_state.json @@ -0,0 +1,797 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 10989, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.9029345372460497, + "grad_norm": 0.7101529836654663, + "learning_rate": 4.955405405405405e-05, + "loss": 1.692232666015625, + "step": 100 + }, + { + "epoch": 1.8036117381489842, + "grad_norm": 0.5825457572937012, + "learning_rate": 4.91036036036036e-05, + "loss": 0.6571139526367188, + "step": 200 + }, + { + "epoch": 2.704288939051919, + "grad_norm": 0.5998010635375977, + "learning_rate": 4.865315315315316e-05, + "loss": 0.572731704711914, + "step": 300 + }, + { + "epoch": 3.604966139954853, + "grad_norm": 0.5911508202552795, + "learning_rate": 4.8202702702702704e-05, + "loss": 0.5455382537841796, + "step": 400 + }, + { + "epoch": 4.505643340857787, + "grad_norm": 0.5691034197807312, + "learning_rate": 4.7752252252252255e-05, + "loss": 0.5281015396118164, + "step": 500 + }, + { + "epoch": 5.4063205417607225, + "grad_norm": 0.5880727767944336, + "learning_rate": 4.7301801801801806e-05, + "loss": 0.5146820449829101, + "step": 600 + }, + { + "epoch": 6.306997742663657, + "grad_norm": 0.5902809500694275, + "learning_rate": 4.685135135135135e-05, + "loss": 0.5027880477905273, + "step": 700 + }, + { + "epoch": 7.207674943566591, + "grad_norm": 0.6322414875030518, + "learning_rate": 4.64009009009009e-05, + "loss": 0.49580284118652346, + "step": 800 + }, + { + "epoch": 8.108352144469526, + "grad_norm": 0.5528641939163208, + "learning_rate": 4.595045045045046e-05, + "loss": 0.49028945922851563, + "step": 900 + }, + { + "epoch": 9.009029345372461, + "grad_norm": 0.5793948173522949, + "learning_rate": 4.55e-05, + "loss": 0.48525371551513674, + "step": 1000 + }, + { + "epoch": 9.91196388261851, + "grad_norm": 0.5765132308006287, + "learning_rate": 4.504954954954955e-05, + "loss": 0.4773061752319336, + "step": 1100 + }, + { + "epoch": 10.812641083521445, + "grad_norm": 0.6041397452354431, + "learning_rate": 4.45990990990991e-05, + "loss": 0.4708379364013672, + "step": 1200 + }, + { + "epoch": 11.713318284424378, + "grad_norm": 0.5950121283531189, + "learning_rate": 4.4148648648648647e-05, + "loss": 0.4690429306030273, + "step": 1300 + }, + { + "epoch": 12.613995485327314, + "grad_norm": 0.5916767716407776, + "learning_rate": 4.36981981981982e-05, + "loss": 0.462205810546875, + "step": 1400 + }, + { + "epoch": 13.514672686230249, + "grad_norm": 0.5803223252296448, + "learning_rate": 4.3247747747747755e-05, + "loss": 0.4584015655517578, + "step": 1500 + }, + { + "epoch": 14.415349887133182, + "grad_norm": 0.5735377073287964, + "learning_rate": 4.27972972972973e-05, + "loss": 0.45363746643066405, + "step": 1600 + }, + { + "epoch": 15.316027088036117, + "grad_norm": 0.5723473429679871, + "learning_rate": 4.234684684684685e-05, + "loss": 0.4506369400024414, + "step": 1700 + }, + { + "epoch": 16.216704288939052, + "grad_norm": 0.5657737851142883, + "learning_rate": 4.18963963963964e-05, + "loss": 0.44744483947753905, + "step": 1800 + }, + { + "epoch": 17.117381489841986, + "grad_norm": 0.5428962707519531, + "learning_rate": 4.1445945945945944e-05, + "loss": 0.44267566680908205, + "step": 1900 + }, + { + "epoch": 18.018058690744923, + "grad_norm": 0.6139283180236816, + "learning_rate": 4.0995495495495494e-05, + "loss": 0.4398773193359375, + "step": 2000 + }, + { + "epoch": 18.92099322799097, + "grad_norm": 0.5393434166908264, + "learning_rate": 4.054504504504505e-05, + "loss": 0.43377147674560546, + "step": 2100 + }, + { + "epoch": 19.821670428893906, + "grad_norm": 0.5807977318763733, + "learning_rate": 4.0094594594594595e-05, + "loss": 0.43059558868408204, + "step": 2200 + }, + { + "epoch": 20.72234762979684, + "grad_norm": 0.5822982788085938, + "learning_rate": 3.9644144144144146e-05, + "loss": 0.4262446975708008, + "step": 2300 + }, + { + "epoch": 21.623024830699773, + "grad_norm": 0.6040003299713135, + "learning_rate": 3.91936936936937e-05, + "loss": 0.4234455490112305, + "step": 2400 + }, + { + "epoch": 22.52370203160271, + "grad_norm": 0.6180558204650879, + "learning_rate": 3.874324324324324e-05, + "loss": 0.4176918411254883, + "step": 2500 + }, + { + "epoch": 23.424379232505643, + "grad_norm": 0.6245187520980835, + "learning_rate": 3.829279279279279e-05, + "loss": 0.4133774948120117, + "step": 2600 + }, + { + "epoch": 24.325056433408577, + "grad_norm": 0.6694397330284119, + "learning_rate": 3.784234234234235e-05, + "loss": 0.41039291381835935, + "step": 2700 + }, + { + "epoch": 25.225733634311513, + "grad_norm": 0.6744610071182251, + "learning_rate": 3.739189189189189e-05, + "loss": 0.40439399719238284, + "step": 2800 + }, + { + "epoch": 26.126410835214447, + "grad_norm": 0.6629764437675476, + "learning_rate": 3.694144144144144e-05, + "loss": 0.401536750793457, + "step": 2900 + }, + { + "epoch": 27.02708803611738, + "grad_norm": 0.6398245096206665, + "learning_rate": 3.6490990990990994e-05, + "loss": 0.3963093566894531, + "step": 3000 + }, + { + "epoch": 27.93002257336343, + "grad_norm": 0.6760854125022888, + "learning_rate": 3.604054054054054e-05, + "loss": 0.3903382873535156, + "step": 3100 + }, + { + "epoch": 28.830699774266364, + "grad_norm": 0.7078990936279297, + "learning_rate": 3.559009009009009e-05, + "loss": 0.385062141418457, + "step": 3200 + }, + { + "epoch": 29.7313769751693, + "grad_norm": 0.7518747448921204, + "learning_rate": 3.5139639639639646e-05, + "loss": 0.378619384765625, + "step": 3300 + }, + { + "epoch": 30.632054176072234, + "grad_norm": 0.7628916501998901, + "learning_rate": 3.468918918918919e-05, + "loss": 0.373223762512207, + "step": 3400 + }, + { + "epoch": 31.532731376975168, + "grad_norm": 0.739010214805603, + "learning_rate": 3.423873873873874e-05, + "loss": 0.36767356872558593, + "step": 3500 + }, + { + "epoch": 32.433408577878104, + "grad_norm": 0.6916473507881165, + "learning_rate": 3.378828828828829e-05, + "loss": 0.3617561721801758, + "step": 3600 + }, + { + "epoch": 33.33408577878104, + "grad_norm": 0.7642673850059509, + "learning_rate": 3.3337837837837834e-05, + "loss": 0.35553871154785155, + "step": 3700 + }, + { + "epoch": 34.23476297968397, + "grad_norm": 0.7590261697769165, + "learning_rate": 3.288738738738739e-05, + "loss": 0.3502037811279297, + "step": 3800 + }, + { + "epoch": 35.135440180586905, + "grad_norm": 0.7054361701011658, + "learning_rate": 3.243693693693694e-05, + "loss": 0.3426921844482422, + "step": 3900 + }, + { + "epoch": 36.036117381489845, + "grad_norm": 0.7512856125831604, + "learning_rate": 3.1986486486486486e-05, + "loss": 0.33641414642333983, + "step": 4000 + }, + { + "epoch": 36.93905191873589, + "grad_norm": 0.8908946514129639, + "learning_rate": 3.153603603603604e-05, + "loss": 0.3283998107910156, + "step": 4100 + }, + { + "epoch": 37.839729119638825, + "grad_norm": 0.8154875636100769, + "learning_rate": 3.108558558558559e-05, + "loss": 0.3213259506225586, + "step": 4200 + }, + { + "epoch": 38.74040632054176, + "grad_norm": 0.8380379676818848, + "learning_rate": 3.063513513513513e-05, + "loss": 0.31306919097900393, + "step": 4300 + }, + { + "epoch": 39.64108352144469, + "grad_norm": 0.8252752423286438, + "learning_rate": 3.018468468468469e-05, + "loss": 0.3073639488220215, + "step": 4400 + }, + { + "epoch": 40.54176072234763, + "grad_norm": 0.9085137844085693, + "learning_rate": 2.9734234234234236e-05, + "loss": 0.3001600456237793, + "step": 4500 + }, + { + "epoch": 41.442437923250566, + "grad_norm": 0.8658757209777832, + "learning_rate": 2.9283783783783787e-05, + "loss": 0.29396560668945315, + "step": 4600 + }, + { + "epoch": 42.3431151241535, + "grad_norm": 0.8093195557594299, + "learning_rate": 2.8833333333333334e-05, + "loss": 0.28757701873779296, + "step": 4700 + }, + { + "epoch": 43.24379232505643, + "grad_norm": 0.7976832985877991, + "learning_rate": 2.8382882882882885e-05, + "loss": 0.2814314270019531, + "step": 4800 + }, + { + "epoch": 44.144469525959366, + "grad_norm": 0.8538079857826233, + "learning_rate": 2.7932432432432432e-05, + "loss": 0.2742281723022461, + "step": 4900 + }, + { + "epoch": 45.0451467268623, + "grad_norm": 0.855580747127533, + "learning_rate": 2.7481981981981986e-05, + "loss": 0.2675522994995117, + "step": 5000 + }, + { + "epoch": 45.94808126410835, + "grad_norm": 0.8964878916740417, + "learning_rate": 2.7031531531531533e-05, + "loss": 0.26104148864746096, + "step": 5100 + }, + { + "epoch": 46.84875846501129, + "grad_norm": 0.9050287008285522, + "learning_rate": 2.6581081081081084e-05, + "loss": 0.25440666198730466, + "step": 5200 + }, + { + "epoch": 47.74943566591422, + "grad_norm": 0.9355533123016357, + "learning_rate": 2.613063063063063e-05, + "loss": 0.24863595962524415, + "step": 5300 + }, + { + "epoch": 48.65011286681715, + "grad_norm": 0.9033967852592468, + "learning_rate": 2.568018018018018e-05, + "loss": 0.24237123489379883, + "step": 5400 + }, + { + "epoch": 49.550790067720094, + "grad_norm": 0.9311243295669556, + "learning_rate": 2.522972972972973e-05, + "loss": 0.23914791107177735, + "step": 5500 + }, + { + "epoch": 50.45146726862303, + "grad_norm": 0.9304994940757751, + "learning_rate": 2.477927927927928e-05, + "loss": 0.2321404457092285, + "step": 5600 + }, + { + "epoch": 51.35214446952596, + "grad_norm": 0.847550094127655, + "learning_rate": 2.432882882882883e-05, + "loss": 0.22843591690063478, + "step": 5700 + }, + { + "epoch": 52.252821670428894, + "grad_norm": 0.8993908166885376, + "learning_rate": 2.387837837837838e-05, + "loss": 0.2236848258972168, + "step": 5800 + }, + { + "epoch": 53.15349887133183, + "grad_norm": 0.8454537987709045, + "learning_rate": 2.3427927927927928e-05, + "loss": 0.21860357284545898, + "step": 5900 + }, + { + "epoch": 54.05417607223476, + "grad_norm": 0.9163772463798523, + "learning_rate": 2.297747747747748e-05, + "loss": 0.21527904510498047, + "step": 6000 + }, + { + "epoch": 54.957110609480814, + "grad_norm": 0.9593232274055481, + "learning_rate": 2.252702702702703e-05, + "loss": 0.2099004554748535, + "step": 6100 + }, + { + "epoch": 55.85778781038375, + "grad_norm": 0.9488871097564697, + "learning_rate": 2.2076576576576576e-05, + "loss": 0.2048540687561035, + "step": 6200 + }, + { + "epoch": 56.75846501128668, + "grad_norm": 0.9115195870399475, + "learning_rate": 2.1626126126126127e-05, + "loss": 0.20162824630737305, + "step": 6300 + }, + { + "epoch": 57.659142212189614, + "grad_norm": 0.8790065050125122, + "learning_rate": 2.1175675675675678e-05, + "loss": 0.19816001892089843, + "step": 6400 + }, + { + "epoch": 58.55981941309255, + "grad_norm": 0.8536332845687866, + "learning_rate": 2.0725225225225225e-05, + "loss": 0.19469743728637695, + "step": 6500 + }, + { + "epoch": 59.46049661399549, + "grad_norm": 0.8732705116271973, + "learning_rate": 2.0274774774774776e-05, + "loss": 0.19105638504028322, + "step": 6600 + }, + { + "epoch": 60.36117381489842, + "grad_norm": 0.8837640881538391, + "learning_rate": 1.9824324324324326e-05, + "loss": 0.1880354118347168, + "step": 6700 + }, + { + "epoch": 61.261851015801355, + "grad_norm": 0.8144468069076538, + "learning_rate": 1.9373873873873873e-05, + "loss": 0.1855927848815918, + "step": 6800 + }, + { + "epoch": 62.16252821670429, + "grad_norm": 0.8792384266853333, + "learning_rate": 1.8923423423423424e-05, + "loss": 0.18369064331054688, + "step": 6900 + }, + { + "epoch": 63.06320541760722, + "grad_norm": 0.8073577880859375, + "learning_rate": 1.8472972972972975e-05, + "loss": 0.18010915756225587, + "step": 7000 + }, + { + "epoch": 63.966139954853276, + "grad_norm": 0.8626881837844849, + "learning_rate": 1.8022522522522522e-05, + "loss": 0.17718856811523437, + "step": 7100 + }, + { + "epoch": 64.86681715575621, + "grad_norm": 0.8884615898132324, + "learning_rate": 1.7572072072072073e-05, + "loss": 0.17479589462280273, + "step": 7200 + }, + { + "epoch": 65.76749435665914, + "grad_norm": 0.8588799238204956, + "learning_rate": 1.7121621621621623e-05, + "loss": 0.17206171035766601, + "step": 7300 + }, + { + "epoch": 66.66817155756208, + "grad_norm": 0.8529822826385498, + "learning_rate": 1.667117117117117e-05, + "loss": 0.16997116088867187, + "step": 7400 + }, + { + "epoch": 67.56884875846501, + "grad_norm": 0.857876181602478, + "learning_rate": 1.622072072072072e-05, + "loss": 0.16807559967041016, + "step": 7500 + }, + { + "epoch": 68.46952595936794, + "grad_norm": 0.8409956097602844, + "learning_rate": 1.577027027027027e-05, + "loss": 0.16600030899047852, + "step": 7600 + }, + { + "epoch": 69.37020316027088, + "grad_norm": 0.852760910987854, + "learning_rate": 1.531981981981982e-05, + "loss": 0.16438615798950196, + "step": 7700 + }, + { + "epoch": 70.27088036117381, + "grad_norm": 0.8459377288818359, + "learning_rate": 1.4869369369369371e-05, + "loss": 0.16228899002075195, + "step": 7800 + }, + { + "epoch": 71.17155756207674, + "grad_norm": 0.8343397974967957, + "learning_rate": 1.441891891891892e-05, + "loss": 0.16045280456542968, + "step": 7900 + }, + { + "epoch": 72.07223476297969, + "grad_norm": 0.8942051529884338, + "learning_rate": 1.3968468468468467e-05, + "loss": 0.15871651649475096, + "step": 8000 + }, + { + "epoch": 72.97516930022573, + "grad_norm": 0.9784395098686218, + "learning_rate": 1.351801801801802e-05, + "loss": 0.15678136825561523, + "step": 8100 + }, + { + "epoch": 73.87584650112866, + "grad_norm": 0.8617171049118042, + "learning_rate": 1.3067567567567569e-05, + "loss": 0.1548241424560547, + "step": 8200 + }, + { + "epoch": 74.7765237020316, + "grad_norm": 0.7932390570640564, + "learning_rate": 1.2617117117117116e-05, + "loss": 0.15381698608398436, + "step": 8300 + }, + { + "epoch": 75.67720090293454, + "grad_norm": 0.7702974081039429, + "learning_rate": 1.2166666666666668e-05, + "loss": 0.15224995613098144, + "step": 8400 + }, + { + "epoch": 76.57787810383748, + "grad_norm": 0.8658645749092102, + "learning_rate": 1.1716216216216217e-05, + "loss": 0.15124171257019042, + "step": 8500 + }, + { + "epoch": 77.47855530474041, + "grad_norm": 0.8349391222000122, + "learning_rate": 1.1265765765765766e-05, + "loss": 0.1498565196990967, + "step": 8600 + }, + { + "epoch": 78.37923250564334, + "grad_norm": 0.8226608037948608, + "learning_rate": 1.0815315315315317e-05, + "loss": 0.14874308586120605, + "step": 8700 + }, + { + "epoch": 79.27990970654628, + "grad_norm": 0.8730639219284058, + "learning_rate": 1.0364864864864866e-05, + "loss": 0.14670371055603026, + "step": 8800 + }, + { + "epoch": 80.18058690744921, + "grad_norm": 0.7831152081489563, + "learning_rate": 9.914414414414415e-06, + "loss": 0.14648072242736818, + "step": 8900 + }, + { + "epoch": 81.08126410835214, + "grad_norm": 0.7942720055580139, + "learning_rate": 9.463963963963965e-06, + "loss": 0.14472357749938966, + "step": 9000 + }, + { + "epoch": 81.9841986455982, + "grad_norm": 0.8477607369422913, + "learning_rate": 9.013513513513514e-06, + "loss": 0.14392640113830565, + "step": 9100 + }, + { + "epoch": 82.88487584650113, + "grad_norm": 0.911325991153717, + "learning_rate": 8.563063063063063e-06, + "loss": 0.14334957122802736, + "step": 9200 + }, + { + "epoch": 83.78555304740406, + "grad_norm": 0.8723970651626587, + "learning_rate": 8.112612612612614e-06, + "loss": 0.14194762229919433, + "step": 9300 + }, + { + "epoch": 84.686230248307, + "grad_norm": 0.834684431552887, + "learning_rate": 7.662162162162163e-06, + "loss": 0.14132658004760743, + "step": 9400 + }, + { + "epoch": 85.58690744920993, + "grad_norm": 0.8034214377403259, + "learning_rate": 7.2117117117117115e-06, + "loss": 0.13956727027893068, + "step": 9500 + }, + { + "epoch": 86.48758465011286, + "grad_norm": 0.798268735408783, + "learning_rate": 6.761261261261262e-06, + "loss": 0.139612398147583, + "step": 9600 + }, + { + "epoch": 87.3882618510158, + "grad_norm": 0.8256174325942993, + "learning_rate": 6.31081081081081e-06, + "loss": 0.13857213973999025, + "step": 9700 + }, + { + "epoch": 88.28893905191873, + "grad_norm": 0.7702272534370422, + "learning_rate": 5.860360360360361e-06, + "loss": 0.1381959819793701, + "step": 9800 + }, + { + "epoch": 89.18961625282166, + "grad_norm": 0.7400526404380798, + "learning_rate": 5.409909909909911e-06, + "loss": 0.13726057052612306, + "step": 9900 + }, + { + "epoch": 90.0902934537246, + "grad_norm": 0.7787278294563293, + "learning_rate": 4.95945945945946e-06, + "loss": 0.13640686988830567, + "step": 10000 + }, + { + "epoch": 90.99322799097065, + "grad_norm": 0.7977456450462341, + "learning_rate": 4.509009009009009e-06, + "loss": 0.1359243583679199, + "step": 10100 + }, + { + "epoch": 91.89390519187359, + "grad_norm": 0.7868166565895081, + "learning_rate": 4.058558558558559e-06, + "loss": 0.1351595115661621, + "step": 10200 + }, + { + "epoch": 92.79458239277652, + "grad_norm": 0.7406633496284485, + "learning_rate": 3.608108108108108e-06, + "loss": 0.13441814422607423, + "step": 10300 + }, + { + "epoch": 93.69525959367945, + "grad_norm": 0.7887991666793823, + "learning_rate": 3.1576576576576574e-06, + "loss": 0.13428014755249024, + "step": 10400 + }, + { + "epoch": 94.5959367945824, + "grad_norm": 0.6816275715827942, + "learning_rate": 2.7072072072072076e-06, + "loss": 0.13383679389953612, + "step": 10500 + }, + { + "epoch": 95.49661399548533, + "grad_norm": 0.7175427675247192, + "learning_rate": 2.2567567567567566e-06, + "loss": 0.13299258232116698, + "step": 10600 + }, + { + "epoch": 96.39729119638827, + "grad_norm": 0.781178891658783, + "learning_rate": 1.8063063063063064e-06, + "loss": 0.1331423282623291, + "step": 10700 + }, + { + "epoch": 97.2979683972912, + "grad_norm": 0.8200775384902954, + "learning_rate": 1.355855855855856e-06, + "loss": 0.13251815795898436, + "step": 10800 + }, + { + "epoch": 98.19864559819413, + "grad_norm": 0.8281791806221008, + "learning_rate": 9.054054054054054e-07, + "loss": 0.1319393253326416, + "step": 10900 + } + ], + "logging_steps": 100, + "max_steps": 11100, + "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": 8314435300368384.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/training_args.bin b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-10989/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..c952bf6a171500dde4885769d5a7be409adca0fd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/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": 558 +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/generation_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/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/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/model.safetensors b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5909e8cdb05c6aa513c1ccc4d5243963c5365a43 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d82cfe51e9ffbab025251f435cbe2a804ad76f0809fd35cd2e4e46fe3b34150c +size 174982600 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/optimizer.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..5122ffd578017ac18a1c30802a82310ea7366438 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f555dae08734ba577e320d00475ec2e80fc062f6b1d723f0f15042e47485bff +size 350014283 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/rng_state.pth b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..41b9bb71a00db3dce5251fab64c7813596c30837 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18cc2be4558dfd7327f3005457fd8e6061bba9b9c28f924bce67bfc634d8706 +size 14645 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/scaler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..23ba0d06eb70729711a2f3b29b27d040b2926318 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01903b6f628f65f68918eac51237e59dd0d0b2affabd2cd100779d9eb7ee7430 +size 1383 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/scheduler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4e9a64c6ff5be33782a95a4307c11ea3348840dd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c132fdabc2cf3948fed01c8ddaef051c7c75841963753c9b70f5f327cb0b1bcc +size 1465 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/trainer_state.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..09c115134e5456c357d0f797c0f8b68c79387d06 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/trainer_state.json @@ -0,0 +1,804 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.09932279909707, + "eval_steps": 100, + "global_step": 11000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.9029345372460497, + "grad_norm": 0.7101529836654663, + "learning_rate": 4.955405405405405e-05, + "loss": 1.692232666015625, + "step": 100 + }, + { + "epoch": 1.8036117381489842, + "grad_norm": 0.5825457572937012, + "learning_rate": 4.91036036036036e-05, + "loss": 0.6571139526367188, + "step": 200 + }, + { + "epoch": 2.704288939051919, + "grad_norm": 0.5998010635375977, + "learning_rate": 4.865315315315316e-05, + "loss": 0.572731704711914, + "step": 300 + }, + { + "epoch": 3.604966139954853, + "grad_norm": 0.5911508202552795, + "learning_rate": 4.8202702702702704e-05, + "loss": 0.5455382537841796, + "step": 400 + }, + { + "epoch": 4.505643340857787, + "grad_norm": 0.5691034197807312, + "learning_rate": 4.7752252252252255e-05, + "loss": 0.5281015396118164, + "step": 500 + }, + { + "epoch": 5.4063205417607225, + "grad_norm": 0.5880727767944336, + "learning_rate": 4.7301801801801806e-05, + "loss": 0.5146820449829101, + "step": 600 + }, + { + "epoch": 6.306997742663657, + "grad_norm": 0.5902809500694275, + "learning_rate": 4.685135135135135e-05, + "loss": 0.5027880477905273, + "step": 700 + }, + { + "epoch": 7.207674943566591, + "grad_norm": 0.6322414875030518, + "learning_rate": 4.64009009009009e-05, + "loss": 0.49580284118652346, + "step": 800 + }, + { + "epoch": 8.108352144469526, + "grad_norm": 0.5528641939163208, + "learning_rate": 4.595045045045046e-05, + "loss": 0.49028945922851563, + "step": 900 + }, + { + "epoch": 9.009029345372461, + "grad_norm": 0.5793948173522949, + "learning_rate": 4.55e-05, + "loss": 0.48525371551513674, + "step": 1000 + }, + { + "epoch": 9.91196388261851, + "grad_norm": 0.5765132308006287, + "learning_rate": 4.504954954954955e-05, + "loss": 0.4773061752319336, + "step": 1100 + }, + { + "epoch": 10.812641083521445, + "grad_norm": 0.6041397452354431, + "learning_rate": 4.45990990990991e-05, + "loss": 0.4708379364013672, + "step": 1200 + }, + { + "epoch": 11.713318284424378, + "grad_norm": 0.5950121283531189, + "learning_rate": 4.4148648648648647e-05, + "loss": 0.4690429306030273, + "step": 1300 + }, + { + "epoch": 12.613995485327314, + "grad_norm": 0.5916767716407776, + "learning_rate": 4.36981981981982e-05, + "loss": 0.462205810546875, + "step": 1400 + }, + { + "epoch": 13.514672686230249, + "grad_norm": 0.5803223252296448, + "learning_rate": 4.3247747747747755e-05, + "loss": 0.4584015655517578, + "step": 1500 + }, + { + "epoch": 14.415349887133182, + "grad_norm": 0.5735377073287964, + "learning_rate": 4.27972972972973e-05, + "loss": 0.45363746643066405, + "step": 1600 + }, + { + "epoch": 15.316027088036117, + "grad_norm": 0.5723473429679871, + "learning_rate": 4.234684684684685e-05, + "loss": 0.4506369400024414, + "step": 1700 + }, + { + "epoch": 16.216704288939052, + "grad_norm": 0.5657737851142883, + "learning_rate": 4.18963963963964e-05, + "loss": 0.44744483947753905, + "step": 1800 + }, + { + "epoch": 17.117381489841986, + "grad_norm": 0.5428962707519531, + "learning_rate": 4.1445945945945944e-05, + "loss": 0.44267566680908205, + "step": 1900 + }, + { + "epoch": 18.018058690744923, + "grad_norm": 0.6139283180236816, + "learning_rate": 4.0995495495495494e-05, + "loss": 0.4398773193359375, + "step": 2000 + }, + { + "epoch": 18.92099322799097, + "grad_norm": 0.5393434166908264, + "learning_rate": 4.054504504504505e-05, + "loss": 0.43377147674560546, + "step": 2100 + }, + { + "epoch": 19.821670428893906, + "grad_norm": 0.5807977318763733, + "learning_rate": 4.0094594594594595e-05, + "loss": 0.43059558868408204, + "step": 2200 + }, + { + "epoch": 20.72234762979684, + "grad_norm": 0.5822982788085938, + "learning_rate": 3.9644144144144146e-05, + "loss": 0.4262446975708008, + "step": 2300 + }, + { + "epoch": 21.623024830699773, + "grad_norm": 0.6040003299713135, + "learning_rate": 3.91936936936937e-05, + "loss": 0.4234455490112305, + "step": 2400 + }, + { + "epoch": 22.52370203160271, + "grad_norm": 0.6180558204650879, + "learning_rate": 3.874324324324324e-05, + "loss": 0.4176918411254883, + "step": 2500 + }, + { + "epoch": 23.424379232505643, + "grad_norm": 0.6245187520980835, + "learning_rate": 3.829279279279279e-05, + "loss": 0.4133774948120117, + "step": 2600 + }, + { + "epoch": 24.325056433408577, + "grad_norm": 0.6694397330284119, + "learning_rate": 3.784234234234235e-05, + "loss": 0.41039291381835935, + "step": 2700 + }, + { + "epoch": 25.225733634311513, + "grad_norm": 0.6744610071182251, + "learning_rate": 3.739189189189189e-05, + "loss": 0.40439399719238284, + "step": 2800 + }, + { + "epoch": 26.126410835214447, + "grad_norm": 0.6629764437675476, + "learning_rate": 3.694144144144144e-05, + "loss": 0.401536750793457, + "step": 2900 + }, + { + "epoch": 27.02708803611738, + "grad_norm": 0.6398245096206665, + "learning_rate": 3.6490990990990994e-05, + "loss": 0.3963093566894531, + "step": 3000 + }, + { + "epoch": 27.93002257336343, + "grad_norm": 0.6760854125022888, + "learning_rate": 3.604054054054054e-05, + "loss": 0.3903382873535156, + "step": 3100 + }, + { + "epoch": 28.830699774266364, + "grad_norm": 0.7078990936279297, + "learning_rate": 3.559009009009009e-05, + "loss": 0.385062141418457, + "step": 3200 + }, + { + "epoch": 29.7313769751693, + "grad_norm": 0.7518747448921204, + "learning_rate": 3.5139639639639646e-05, + "loss": 0.378619384765625, + "step": 3300 + }, + { + "epoch": 30.632054176072234, + "grad_norm": 0.7628916501998901, + "learning_rate": 3.468918918918919e-05, + "loss": 0.373223762512207, + "step": 3400 + }, + { + "epoch": 31.532731376975168, + "grad_norm": 0.739010214805603, + "learning_rate": 3.423873873873874e-05, + "loss": 0.36767356872558593, + "step": 3500 + }, + { + "epoch": 32.433408577878104, + "grad_norm": 0.6916473507881165, + "learning_rate": 3.378828828828829e-05, + "loss": 0.3617561721801758, + "step": 3600 + }, + { + "epoch": 33.33408577878104, + "grad_norm": 0.7642673850059509, + "learning_rate": 3.3337837837837834e-05, + "loss": 0.35553871154785155, + "step": 3700 + }, + { + "epoch": 34.23476297968397, + "grad_norm": 0.7590261697769165, + "learning_rate": 3.288738738738739e-05, + "loss": 0.3502037811279297, + "step": 3800 + }, + { + "epoch": 35.135440180586905, + "grad_norm": 0.7054361701011658, + "learning_rate": 3.243693693693694e-05, + "loss": 0.3426921844482422, + "step": 3900 + }, + { + "epoch": 36.036117381489845, + "grad_norm": 0.7512856125831604, + "learning_rate": 3.1986486486486486e-05, + "loss": 0.33641414642333983, + "step": 4000 + }, + { + "epoch": 36.93905191873589, + "grad_norm": 0.8908946514129639, + "learning_rate": 3.153603603603604e-05, + "loss": 0.3283998107910156, + "step": 4100 + }, + { + "epoch": 37.839729119638825, + "grad_norm": 0.8154875636100769, + "learning_rate": 3.108558558558559e-05, + "loss": 0.3213259506225586, + "step": 4200 + }, + { + "epoch": 38.74040632054176, + "grad_norm": 0.8380379676818848, + "learning_rate": 3.063513513513513e-05, + "loss": 0.31306919097900393, + "step": 4300 + }, + { + "epoch": 39.64108352144469, + "grad_norm": 0.8252752423286438, + "learning_rate": 3.018468468468469e-05, + "loss": 0.3073639488220215, + "step": 4400 + }, + { + "epoch": 40.54176072234763, + "grad_norm": 0.9085137844085693, + "learning_rate": 2.9734234234234236e-05, + "loss": 0.3001600456237793, + "step": 4500 + }, + { + "epoch": 41.442437923250566, + "grad_norm": 0.8658757209777832, + "learning_rate": 2.9283783783783787e-05, + "loss": 0.29396560668945315, + "step": 4600 + }, + { + "epoch": 42.3431151241535, + "grad_norm": 0.8093195557594299, + "learning_rate": 2.8833333333333334e-05, + "loss": 0.28757701873779296, + "step": 4700 + }, + { + "epoch": 43.24379232505643, + "grad_norm": 0.7976832985877991, + "learning_rate": 2.8382882882882885e-05, + "loss": 0.2814314270019531, + "step": 4800 + }, + { + "epoch": 44.144469525959366, + "grad_norm": 0.8538079857826233, + "learning_rate": 2.7932432432432432e-05, + "loss": 0.2742281723022461, + "step": 4900 + }, + { + "epoch": 45.0451467268623, + "grad_norm": 0.855580747127533, + "learning_rate": 2.7481981981981986e-05, + "loss": 0.2675522994995117, + "step": 5000 + }, + { + "epoch": 45.94808126410835, + "grad_norm": 0.8964878916740417, + "learning_rate": 2.7031531531531533e-05, + "loss": 0.26104148864746096, + "step": 5100 + }, + { + "epoch": 46.84875846501129, + "grad_norm": 0.9050287008285522, + "learning_rate": 2.6581081081081084e-05, + "loss": 0.25440666198730466, + "step": 5200 + }, + { + "epoch": 47.74943566591422, + "grad_norm": 0.9355533123016357, + "learning_rate": 2.613063063063063e-05, + "loss": 0.24863595962524415, + "step": 5300 + }, + { + "epoch": 48.65011286681715, + "grad_norm": 0.9033967852592468, + "learning_rate": 2.568018018018018e-05, + "loss": 0.24237123489379883, + "step": 5400 + }, + { + "epoch": 49.550790067720094, + "grad_norm": 0.9311243295669556, + "learning_rate": 2.522972972972973e-05, + "loss": 0.23914791107177735, + "step": 5500 + }, + { + "epoch": 50.45146726862303, + "grad_norm": 0.9304994940757751, + "learning_rate": 2.477927927927928e-05, + "loss": 0.2321404457092285, + "step": 5600 + }, + { + "epoch": 51.35214446952596, + "grad_norm": 0.847550094127655, + "learning_rate": 2.432882882882883e-05, + "loss": 0.22843591690063478, + "step": 5700 + }, + { + "epoch": 52.252821670428894, + "grad_norm": 0.8993908166885376, + "learning_rate": 2.387837837837838e-05, + "loss": 0.2236848258972168, + "step": 5800 + }, + { + "epoch": 53.15349887133183, + "grad_norm": 0.8454537987709045, + "learning_rate": 2.3427927927927928e-05, + "loss": 0.21860357284545898, + "step": 5900 + }, + { + "epoch": 54.05417607223476, + "grad_norm": 0.9163772463798523, + "learning_rate": 2.297747747747748e-05, + "loss": 0.21527904510498047, + "step": 6000 + }, + { + "epoch": 54.957110609480814, + "grad_norm": 0.9593232274055481, + "learning_rate": 2.252702702702703e-05, + "loss": 0.2099004554748535, + "step": 6100 + }, + { + "epoch": 55.85778781038375, + "grad_norm": 0.9488871097564697, + "learning_rate": 2.2076576576576576e-05, + "loss": 0.2048540687561035, + "step": 6200 + }, + { + "epoch": 56.75846501128668, + "grad_norm": 0.9115195870399475, + "learning_rate": 2.1626126126126127e-05, + "loss": 0.20162824630737305, + "step": 6300 + }, + { + "epoch": 57.659142212189614, + "grad_norm": 0.8790065050125122, + "learning_rate": 2.1175675675675678e-05, + "loss": 0.19816001892089843, + "step": 6400 + }, + { + "epoch": 58.55981941309255, + "grad_norm": 0.8536332845687866, + "learning_rate": 2.0725225225225225e-05, + "loss": 0.19469743728637695, + "step": 6500 + }, + { + "epoch": 59.46049661399549, + "grad_norm": 0.8732705116271973, + "learning_rate": 2.0274774774774776e-05, + "loss": 0.19105638504028322, + "step": 6600 + }, + { + "epoch": 60.36117381489842, + "grad_norm": 0.8837640881538391, + "learning_rate": 1.9824324324324326e-05, + "loss": 0.1880354118347168, + "step": 6700 + }, + { + "epoch": 61.261851015801355, + "grad_norm": 0.8144468069076538, + "learning_rate": 1.9373873873873873e-05, + "loss": 0.1855927848815918, + "step": 6800 + }, + { + "epoch": 62.16252821670429, + "grad_norm": 0.8792384266853333, + "learning_rate": 1.8923423423423424e-05, + "loss": 0.18369064331054688, + "step": 6900 + }, + { + "epoch": 63.06320541760722, + "grad_norm": 0.8073577880859375, + "learning_rate": 1.8472972972972975e-05, + "loss": 0.18010915756225587, + "step": 7000 + }, + { + "epoch": 63.966139954853276, + "grad_norm": 0.8626881837844849, + "learning_rate": 1.8022522522522522e-05, + "loss": 0.17718856811523437, + "step": 7100 + }, + { + "epoch": 64.86681715575621, + "grad_norm": 0.8884615898132324, + "learning_rate": 1.7572072072072073e-05, + "loss": 0.17479589462280273, + "step": 7200 + }, + { + "epoch": 65.76749435665914, + "grad_norm": 0.8588799238204956, + "learning_rate": 1.7121621621621623e-05, + "loss": 0.17206171035766601, + "step": 7300 + }, + { + "epoch": 66.66817155756208, + "grad_norm": 0.8529822826385498, + "learning_rate": 1.667117117117117e-05, + "loss": 0.16997116088867187, + "step": 7400 + }, + { + "epoch": 67.56884875846501, + "grad_norm": 0.857876181602478, + "learning_rate": 1.622072072072072e-05, + "loss": 0.16807559967041016, + "step": 7500 + }, + { + "epoch": 68.46952595936794, + "grad_norm": 0.8409956097602844, + "learning_rate": 1.577027027027027e-05, + "loss": 0.16600030899047852, + "step": 7600 + }, + { + "epoch": 69.37020316027088, + "grad_norm": 0.852760910987854, + "learning_rate": 1.531981981981982e-05, + "loss": 0.16438615798950196, + "step": 7700 + }, + { + "epoch": 70.27088036117381, + "grad_norm": 0.8459377288818359, + "learning_rate": 1.4869369369369371e-05, + "loss": 0.16228899002075195, + "step": 7800 + }, + { + "epoch": 71.17155756207674, + "grad_norm": 0.8343397974967957, + "learning_rate": 1.441891891891892e-05, + "loss": 0.16045280456542968, + "step": 7900 + }, + { + "epoch": 72.07223476297969, + "grad_norm": 0.8942051529884338, + "learning_rate": 1.3968468468468467e-05, + "loss": 0.15871651649475096, + "step": 8000 + }, + { + "epoch": 72.97516930022573, + "grad_norm": 0.9784395098686218, + "learning_rate": 1.351801801801802e-05, + "loss": 0.15678136825561523, + "step": 8100 + }, + { + "epoch": 73.87584650112866, + "grad_norm": 0.8617171049118042, + "learning_rate": 1.3067567567567569e-05, + "loss": 0.1548241424560547, + "step": 8200 + }, + { + "epoch": 74.7765237020316, + "grad_norm": 0.7932390570640564, + "learning_rate": 1.2617117117117116e-05, + "loss": 0.15381698608398436, + "step": 8300 + }, + { + "epoch": 75.67720090293454, + "grad_norm": 0.7702974081039429, + "learning_rate": 1.2166666666666668e-05, + "loss": 0.15224995613098144, + "step": 8400 + }, + { + "epoch": 76.57787810383748, + "grad_norm": 0.8658645749092102, + "learning_rate": 1.1716216216216217e-05, + "loss": 0.15124171257019042, + "step": 8500 + }, + { + "epoch": 77.47855530474041, + "grad_norm": 0.8349391222000122, + "learning_rate": 1.1265765765765766e-05, + "loss": 0.1498565196990967, + "step": 8600 + }, + { + "epoch": 78.37923250564334, + "grad_norm": 0.8226608037948608, + "learning_rate": 1.0815315315315317e-05, + "loss": 0.14874308586120605, + "step": 8700 + }, + { + "epoch": 79.27990970654628, + "grad_norm": 0.8730639219284058, + "learning_rate": 1.0364864864864866e-05, + "loss": 0.14670371055603026, + "step": 8800 + }, + { + "epoch": 80.18058690744921, + "grad_norm": 0.7831152081489563, + "learning_rate": 9.914414414414415e-06, + "loss": 0.14648072242736818, + "step": 8900 + }, + { + "epoch": 81.08126410835214, + "grad_norm": 0.7942720055580139, + "learning_rate": 9.463963963963965e-06, + "loss": 0.14472357749938966, + "step": 9000 + }, + { + "epoch": 81.9841986455982, + "grad_norm": 0.8477607369422913, + "learning_rate": 9.013513513513514e-06, + "loss": 0.14392640113830565, + "step": 9100 + }, + { + "epoch": 82.88487584650113, + "grad_norm": 0.911325991153717, + "learning_rate": 8.563063063063063e-06, + "loss": 0.14334957122802736, + "step": 9200 + }, + { + "epoch": 83.78555304740406, + "grad_norm": 0.8723970651626587, + "learning_rate": 8.112612612612614e-06, + "loss": 0.14194762229919433, + "step": 9300 + }, + { + "epoch": 84.686230248307, + "grad_norm": 0.834684431552887, + "learning_rate": 7.662162162162163e-06, + "loss": 0.14132658004760743, + "step": 9400 + }, + { + "epoch": 85.58690744920993, + "grad_norm": 0.8034214377403259, + "learning_rate": 7.2117117117117115e-06, + "loss": 0.13956727027893068, + "step": 9500 + }, + { + "epoch": 86.48758465011286, + "grad_norm": 0.798268735408783, + "learning_rate": 6.761261261261262e-06, + "loss": 0.139612398147583, + "step": 9600 + }, + { + "epoch": 87.3882618510158, + "grad_norm": 0.8256174325942993, + "learning_rate": 6.31081081081081e-06, + "loss": 0.13857213973999025, + "step": 9700 + }, + { + "epoch": 88.28893905191873, + "grad_norm": 0.7702272534370422, + "learning_rate": 5.860360360360361e-06, + "loss": 0.1381959819793701, + "step": 9800 + }, + { + "epoch": 89.18961625282166, + "grad_norm": 0.7400526404380798, + "learning_rate": 5.409909909909911e-06, + "loss": 0.13726057052612306, + "step": 9900 + }, + { + "epoch": 90.0902934537246, + "grad_norm": 0.7787278294563293, + "learning_rate": 4.95945945945946e-06, + "loss": 0.13640686988830567, + "step": 10000 + }, + { + "epoch": 90.99322799097065, + "grad_norm": 0.7977456450462341, + "learning_rate": 4.509009009009009e-06, + "loss": 0.1359243583679199, + "step": 10100 + }, + { + "epoch": 91.89390519187359, + "grad_norm": 0.7868166565895081, + "learning_rate": 4.058558558558559e-06, + "loss": 0.1351595115661621, + "step": 10200 + }, + { + "epoch": 92.79458239277652, + "grad_norm": 0.7406633496284485, + "learning_rate": 3.608108108108108e-06, + "loss": 0.13441814422607423, + "step": 10300 + }, + { + "epoch": 93.69525959367945, + "grad_norm": 0.7887991666793823, + "learning_rate": 3.1576576576576574e-06, + "loss": 0.13428014755249024, + "step": 10400 + }, + { + "epoch": 94.5959367945824, + "grad_norm": 0.6816275715827942, + "learning_rate": 2.7072072072072076e-06, + "loss": 0.13383679389953612, + "step": 10500 + }, + { + "epoch": 95.49661399548533, + "grad_norm": 0.7175427675247192, + "learning_rate": 2.2567567567567566e-06, + "loss": 0.13299258232116698, + "step": 10600 + }, + { + "epoch": 96.39729119638827, + "grad_norm": 0.781178891658783, + "learning_rate": 1.8063063063063064e-06, + "loss": 0.1331423282623291, + "step": 10700 + }, + { + "epoch": 97.2979683972912, + "grad_norm": 0.8200775384902954, + "learning_rate": 1.355855855855856e-06, + "loss": 0.13251815795898436, + "step": 10800 + }, + { + "epoch": 98.19864559819413, + "grad_norm": 0.8281791806221008, + "learning_rate": 9.054054054054054e-07, + "loss": 0.1319393253326416, + "step": 10900 + }, + { + "epoch": 99.09932279909707, + "grad_norm": 0.7502571940422058, + "learning_rate": 4.54954954954955e-07, + "loss": 0.132002534866333, + "step": 11000 + } + ], + "logging_steps": 100, + "max_steps": 11100, + "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": 8322788630863872.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/training_args.bin b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..c952bf6a171500dde4885769d5a7be409adca0fd --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/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": 558 +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/generation_config.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/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/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/model.safetensors b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e2dea55fecf198c5f69348253e0725dd58fe21d7 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56c0981a8e1a87e340f9de4023336e46defdbca93c2ade0e757be0ed907b2e1 +size 174982600 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/optimizer.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..c203e769829e0edf00180fac19421d97fb1478d1 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfc79739cc6473e0ca652253a187640366a06755e5b3cf321d4cddb3815019b +size 350014283 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/rng_state.pth b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7ef962c2f7dd2158f3e5e2f2ee961c163cac2af7 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf60f116110959716457824850d77b8f647d892dcc15f989c049829a04dce7b +size 14645 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/scaler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..450b831c3d60abb71a6f9b2660ee0e4260fa9274 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d797ab900007bed5515e89fc8bda633acae939482074221d1459314ee19d7562 +size 1383 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/scheduler.pt b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4828c1d3fb1e9b423a58d3f8ed7ab76db4649b3f --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0c95525674bffd771a504e476e7602b51857f6b582353f06bfc5fa2cda1efc +size 1465 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/trainer_state.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9ee0c60360c8f22282a7f4f082b686fc3ced2967 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/trainer_state.json @@ -0,0 +1,811 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 11100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.9029345372460497, + "grad_norm": 0.7101529836654663, + "learning_rate": 4.955405405405405e-05, + "loss": 1.692232666015625, + "step": 100 + }, + { + "epoch": 1.8036117381489842, + "grad_norm": 0.5825457572937012, + "learning_rate": 4.91036036036036e-05, + "loss": 0.6571139526367188, + "step": 200 + }, + { + "epoch": 2.704288939051919, + "grad_norm": 0.5998010635375977, + "learning_rate": 4.865315315315316e-05, + "loss": 0.572731704711914, + "step": 300 + }, + { + "epoch": 3.604966139954853, + "grad_norm": 0.5911508202552795, + "learning_rate": 4.8202702702702704e-05, + "loss": 0.5455382537841796, + "step": 400 + }, + { + "epoch": 4.505643340857787, + "grad_norm": 0.5691034197807312, + "learning_rate": 4.7752252252252255e-05, + "loss": 0.5281015396118164, + "step": 500 + }, + { + "epoch": 5.4063205417607225, + "grad_norm": 0.5880727767944336, + "learning_rate": 4.7301801801801806e-05, + "loss": 0.5146820449829101, + "step": 600 + }, + { + "epoch": 6.306997742663657, + "grad_norm": 0.5902809500694275, + "learning_rate": 4.685135135135135e-05, + "loss": 0.5027880477905273, + "step": 700 + }, + { + "epoch": 7.207674943566591, + "grad_norm": 0.6322414875030518, + "learning_rate": 4.64009009009009e-05, + "loss": 0.49580284118652346, + "step": 800 + }, + { + "epoch": 8.108352144469526, + "grad_norm": 0.5528641939163208, + "learning_rate": 4.595045045045046e-05, + "loss": 0.49028945922851563, + "step": 900 + }, + { + "epoch": 9.009029345372461, + "grad_norm": 0.5793948173522949, + "learning_rate": 4.55e-05, + "loss": 0.48525371551513674, + "step": 1000 + }, + { + "epoch": 9.91196388261851, + "grad_norm": 0.5765132308006287, + "learning_rate": 4.504954954954955e-05, + "loss": 0.4773061752319336, + "step": 1100 + }, + { + "epoch": 10.812641083521445, + "grad_norm": 0.6041397452354431, + "learning_rate": 4.45990990990991e-05, + "loss": 0.4708379364013672, + "step": 1200 + }, + { + "epoch": 11.713318284424378, + "grad_norm": 0.5950121283531189, + "learning_rate": 4.4148648648648647e-05, + "loss": 0.4690429306030273, + "step": 1300 + }, + { + "epoch": 12.613995485327314, + "grad_norm": 0.5916767716407776, + "learning_rate": 4.36981981981982e-05, + "loss": 0.462205810546875, + "step": 1400 + }, + { + "epoch": 13.514672686230249, + "grad_norm": 0.5803223252296448, + "learning_rate": 4.3247747747747755e-05, + "loss": 0.4584015655517578, + "step": 1500 + }, + { + "epoch": 14.415349887133182, + "grad_norm": 0.5735377073287964, + "learning_rate": 4.27972972972973e-05, + "loss": 0.45363746643066405, + "step": 1600 + }, + { + "epoch": 15.316027088036117, + "grad_norm": 0.5723473429679871, + "learning_rate": 4.234684684684685e-05, + "loss": 0.4506369400024414, + "step": 1700 + }, + { + "epoch": 16.216704288939052, + "grad_norm": 0.5657737851142883, + "learning_rate": 4.18963963963964e-05, + "loss": 0.44744483947753905, + "step": 1800 + }, + { + "epoch": 17.117381489841986, + "grad_norm": 0.5428962707519531, + "learning_rate": 4.1445945945945944e-05, + "loss": 0.44267566680908205, + "step": 1900 + }, + { + "epoch": 18.018058690744923, + "grad_norm": 0.6139283180236816, + "learning_rate": 4.0995495495495494e-05, + "loss": 0.4398773193359375, + "step": 2000 + }, + { + "epoch": 18.92099322799097, + "grad_norm": 0.5393434166908264, + "learning_rate": 4.054504504504505e-05, + "loss": 0.43377147674560546, + "step": 2100 + }, + { + "epoch": 19.821670428893906, + "grad_norm": 0.5807977318763733, + "learning_rate": 4.0094594594594595e-05, + "loss": 0.43059558868408204, + "step": 2200 + }, + { + "epoch": 20.72234762979684, + "grad_norm": 0.5822982788085938, + "learning_rate": 3.9644144144144146e-05, + "loss": 0.4262446975708008, + "step": 2300 + }, + { + "epoch": 21.623024830699773, + "grad_norm": 0.6040003299713135, + "learning_rate": 3.91936936936937e-05, + "loss": 0.4234455490112305, + "step": 2400 + }, + { + "epoch": 22.52370203160271, + "grad_norm": 0.6180558204650879, + "learning_rate": 3.874324324324324e-05, + "loss": 0.4176918411254883, + "step": 2500 + }, + { + "epoch": 23.424379232505643, + "grad_norm": 0.6245187520980835, + "learning_rate": 3.829279279279279e-05, + "loss": 0.4133774948120117, + "step": 2600 + }, + { + "epoch": 24.325056433408577, + "grad_norm": 0.6694397330284119, + "learning_rate": 3.784234234234235e-05, + "loss": 0.41039291381835935, + "step": 2700 + }, + { + "epoch": 25.225733634311513, + "grad_norm": 0.6744610071182251, + "learning_rate": 3.739189189189189e-05, + "loss": 0.40439399719238284, + "step": 2800 + }, + { + "epoch": 26.126410835214447, + "grad_norm": 0.6629764437675476, + "learning_rate": 3.694144144144144e-05, + "loss": 0.401536750793457, + "step": 2900 + }, + { + "epoch": 27.02708803611738, + "grad_norm": 0.6398245096206665, + "learning_rate": 3.6490990990990994e-05, + "loss": 0.3963093566894531, + "step": 3000 + }, + { + "epoch": 27.93002257336343, + "grad_norm": 0.6760854125022888, + "learning_rate": 3.604054054054054e-05, + "loss": 0.3903382873535156, + "step": 3100 + }, + { + "epoch": 28.830699774266364, + "grad_norm": 0.7078990936279297, + "learning_rate": 3.559009009009009e-05, + "loss": 0.385062141418457, + "step": 3200 + }, + { + "epoch": 29.7313769751693, + "grad_norm": 0.7518747448921204, + "learning_rate": 3.5139639639639646e-05, + "loss": 0.378619384765625, + "step": 3300 + }, + { + "epoch": 30.632054176072234, + "grad_norm": 0.7628916501998901, + "learning_rate": 3.468918918918919e-05, + "loss": 0.373223762512207, + "step": 3400 + }, + { + "epoch": 31.532731376975168, + "grad_norm": 0.739010214805603, + "learning_rate": 3.423873873873874e-05, + "loss": 0.36767356872558593, + "step": 3500 + }, + { + "epoch": 32.433408577878104, + "grad_norm": 0.6916473507881165, + "learning_rate": 3.378828828828829e-05, + "loss": 0.3617561721801758, + "step": 3600 + }, + { + "epoch": 33.33408577878104, + "grad_norm": 0.7642673850059509, + "learning_rate": 3.3337837837837834e-05, + "loss": 0.35553871154785155, + "step": 3700 + }, + { + "epoch": 34.23476297968397, + "grad_norm": 0.7590261697769165, + "learning_rate": 3.288738738738739e-05, + "loss": 0.3502037811279297, + "step": 3800 + }, + { + "epoch": 35.135440180586905, + "grad_norm": 0.7054361701011658, + "learning_rate": 3.243693693693694e-05, + "loss": 0.3426921844482422, + "step": 3900 + }, + { + "epoch": 36.036117381489845, + "grad_norm": 0.7512856125831604, + "learning_rate": 3.1986486486486486e-05, + "loss": 0.33641414642333983, + "step": 4000 + }, + { + "epoch": 36.93905191873589, + "grad_norm": 0.8908946514129639, + "learning_rate": 3.153603603603604e-05, + "loss": 0.3283998107910156, + "step": 4100 + }, + { + "epoch": 37.839729119638825, + "grad_norm": 0.8154875636100769, + "learning_rate": 3.108558558558559e-05, + "loss": 0.3213259506225586, + "step": 4200 + }, + { + "epoch": 38.74040632054176, + "grad_norm": 0.8380379676818848, + "learning_rate": 3.063513513513513e-05, + "loss": 0.31306919097900393, + "step": 4300 + }, + { + "epoch": 39.64108352144469, + "grad_norm": 0.8252752423286438, + "learning_rate": 3.018468468468469e-05, + "loss": 0.3073639488220215, + "step": 4400 + }, + { + "epoch": 40.54176072234763, + "grad_norm": 0.9085137844085693, + "learning_rate": 2.9734234234234236e-05, + "loss": 0.3001600456237793, + "step": 4500 + }, + { + "epoch": 41.442437923250566, + "grad_norm": 0.8658757209777832, + "learning_rate": 2.9283783783783787e-05, + "loss": 0.29396560668945315, + "step": 4600 + }, + { + "epoch": 42.3431151241535, + "grad_norm": 0.8093195557594299, + "learning_rate": 2.8833333333333334e-05, + "loss": 0.28757701873779296, + "step": 4700 + }, + { + "epoch": 43.24379232505643, + "grad_norm": 0.7976832985877991, + "learning_rate": 2.8382882882882885e-05, + "loss": 0.2814314270019531, + "step": 4800 + }, + { + "epoch": 44.144469525959366, + "grad_norm": 0.8538079857826233, + "learning_rate": 2.7932432432432432e-05, + "loss": 0.2742281723022461, + "step": 4900 + }, + { + "epoch": 45.0451467268623, + "grad_norm": 0.855580747127533, + "learning_rate": 2.7481981981981986e-05, + "loss": 0.2675522994995117, + "step": 5000 + }, + { + "epoch": 45.94808126410835, + "grad_norm": 0.8964878916740417, + "learning_rate": 2.7031531531531533e-05, + "loss": 0.26104148864746096, + "step": 5100 + }, + { + "epoch": 46.84875846501129, + "grad_norm": 0.9050287008285522, + "learning_rate": 2.6581081081081084e-05, + "loss": 0.25440666198730466, + "step": 5200 + }, + { + "epoch": 47.74943566591422, + "grad_norm": 0.9355533123016357, + "learning_rate": 2.613063063063063e-05, + "loss": 0.24863595962524415, + "step": 5300 + }, + { + "epoch": 48.65011286681715, + "grad_norm": 0.9033967852592468, + "learning_rate": 2.568018018018018e-05, + "loss": 0.24237123489379883, + "step": 5400 + }, + { + "epoch": 49.550790067720094, + "grad_norm": 0.9311243295669556, + "learning_rate": 2.522972972972973e-05, + "loss": 0.23914791107177735, + "step": 5500 + }, + { + "epoch": 50.45146726862303, + "grad_norm": 0.9304994940757751, + "learning_rate": 2.477927927927928e-05, + "loss": 0.2321404457092285, + "step": 5600 + }, + { + "epoch": 51.35214446952596, + "grad_norm": 0.847550094127655, + "learning_rate": 2.432882882882883e-05, + "loss": 0.22843591690063478, + "step": 5700 + }, + { + "epoch": 52.252821670428894, + "grad_norm": 0.8993908166885376, + "learning_rate": 2.387837837837838e-05, + "loss": 0.2236848258972168, + "step": 5800 + }, + { + "epoch": 53.15349887133183, + "grad_norm": 0.8454537987709045, + "learning_rate": 2.3427927927927928e-05, + "loss": 0.21860357284545898, + "step": 5900 + }, + { + "epoch": 54.05417607223476, + "grad_norm": 0.9163772463798523, + "learning_rate": 2.297747747747748e-05, + "loss": 0.21527904510498047, + "step": 6000 + }, + { + "epoch": 54.957110609480814, + "grad_norm": 0.9593232274055481, + "learning_rate": 2.252702702702703e-05, + "loss": 0.2099004554748535, + "step": 6100 + }, + { + "epoch": 55.85778781038375, + "grad_norm": 0.9488871097564697, + "learning_rate": 2.2076576576576576e-05, + "loss": 0.2048540687561035, + "step": 6200 + }, + { + "epoch": 56.75846501128668, + "grad_norm": 0.9115195870399475, + "learning_rate": 2.1626126126126127e-05, + "loss": 0.20162824630737305, + "step": 6300 + }, + { + "epoch": 57.659142212189614, + "grad_norm": 0.8790065050125122, + "learning_rate": 2.1175675675675678e-05, + "loss": 0.19816001892089843, + "step": 6400 + }, + { + "epoch": 58.55981941309255, + "grad_norm": 0.8536332845687866, + "learning_rate": 2.0725225225225225e-05, + "loss": 0.19469743728637695, + "step": 6500 + }, + { + "epoch": 59.46049661399549, + "grad_norm": 0.8732705116271973, + "learning_rate": 2.0274774774774776e-05, + "loss": 0.19105638504028322, + "step": 6600 + }, + { + "epoch": 60.36117381489842, + "grad_norm": 0.8837640881538391, + "learning_rate": 1.9824324324324326e-05, + "loss": 0.1880354118347168, + "step": 6700 + }, + { + "epoch": 61.261851015801355, + "grad_norm": 0.8144468069076538, + "learning_rate": 1.9373873873873873e-05, + "loss": 0.1855927848815918, + "step": 6800 + }, + { + "epoch": 62.16252821670429, + "grad_norm": 0.8792384266853333, + "learning_rate": 1.8923423423423424e-05, + "loss": 0.18369064331054688, + "step": 6900 + }, + { + "epoch": 63.06320541760722, + "grad_norm": 0.8073577880859375, + "learning_rate": 1.8472972972972975e-05, + "loss": 0.18010915756225587, + "step": 7000 + }, + { + "epoch": 63.966139954853276, + "grad_norm": 0.8626881837844849, + "learning_rate": 1.8022522522522522e-05, + "loss": 0.17718856811523437, + "step": 7100 + }, + { + "epoch": 64.86681715575621, + "grad_norm": 0.8884615898132324, + "learning_rate": 1.7572072072072073e-05, + "loss": 0.17479589462280273, + "step": 7200 + }, + { + "epoch": 65.76749435665914, + "grad_norm": 0.8588799238204956, + "learning_rate": 1.7121621621621623e-05, + "loss": 0.17206171035766601, + "step": 7300 + }, + { + "epoch": 66.66817155756208, + "grad_norm": 0.8529822826385498, + "learning_rate": 1.667117117117117e-05, + "loss": 0.16997116088867187, + "step": 7400 + }, + { + "epoch": 67.56884875846501, + "grad_norm": 0.857876181602478, + "learning_rate": 1.622072072072072e-05, + "loss": 0.16807559967041016, + "step": 7500 + }, + { + "epoch": 68.46952595936794, + "grad_norm": 0.8409956097602844, + "learning_rate": 1.577027027027027e-05, + "loss": 0.16600030899047852, + "step": 7600 + }, + { + "epoch": 69.37020316027088, + "grad_norm": 0.852760910987854, + "learning_rate": 1.531981981981982e-05, + "loss": 0.16438615798950196, + "step": 7700 + }, + { + "epoch": 70.27088036117381, + "grad_norm": 0.8459377288818359, + "learning_rate": 1.4869369369369371e-05, + "loss": 0.16228899002075195, + "step": 7800 + }, + { + "epoch": 71.17155756207674, + "grad_norm": 0.8343397974967957, + "learning_rate": 1.441891891891892e-05, + "loss": 0.16045280456542968, + "step": 7900 + }, + { + "epoch": 72.07223476297969, + "grad_norm": 0.8942051529884338, + "learning_rate": 1.3968468468468467e-05, + "loss": 0.15871651649475096, + "step": 8000 + }, + { + "epoch": 72.97516930022573, + "grad_norm": 0.9784395098686218, + "learning_rate": 1.351801801801802e-05, + "loss": 0.15678136825561523, + "step": 8100 + }, + { + "epoch": 73.87584650112866, + "grad_norm": 0.8617171049118042, + "learning_rate": 1.3067567567567569e-05, + "loss": 0.1548241424560547, + "step": 8200 + }, + { + "epoch": 74.7765237020316, + "grad_norm": 0.7932390570640564, + "learning_rate": 1.2617117117117116e-05, + "loss": 0.15381698608398436, + "step": 8300 + }, + { + "epoch": 75.67720090293454, + "grad_norm": 0.7702974081039429, + "learning_rate": 1.2166666666666668e-05, + "loss": 0.15224995613098144, + "step": 8400 + }, + { + "epoch": 76.57787810383748, + "grad_norm": 0.8658645749092102, + "learning_rate": 1.1716216216216217e-05, + "loss": 0.15124171257019042, + "step": 8500 + }, + { + "epoch": 77.47855530474041, + "grad_norm": 0.8349391222000122, + "learning_rate": 1.1265765765765766e-05, + "loss": 0.1498565196990967, + "step": 8600 + }, + { + "epoch": 78.37923250564334, + "grad_norm": 0.8226608037948608, + "learning_rate": 1.0815315315315317e-05, + "loss": 0.14874308586120605, + "step": 8700 + }, + { + "epoch": 79.27990970654628, + "grad_norm": 0.8730639219284058, + "learning_rate": 1.0364864864864866e-05, + "loss": 0.14670371055603026, + "step": 8800 + }, + { + "epoch": 80.18058690744921, + "grad_norm": 0.7831152081489563, + "learning_rate": 9.914414414414415e-06, + "loss": 0.14648072242736818, + "step": 8900 + }, + { + "epoch": 81.08126410835214, + "grad_norm": 0.7942720055580139, + "learning_rate": 9.463963963963965e-06, + "loss": 0.14472357749938966, + "step": 9000 + }, + { + "epoch": 81.9841986455982, + "grad_norm": 0.8477607369422913, + "learning_rate": 9.013513513513514e-06, + "loss": 0.14392640113830565, + "step": 9100 + }, + { + "epoch": 82.88487584650113, + "grad_norm": 0.911325991153717, + "learning_rate": 8.563063063063063e-06, + "loss": 0.14334957122802736, + "step": 9200 + }, + { + "epoch": 83.78555304740406, + "grad_norm": 0.8723970651626587, + "learning_rate": 8.112612612612614e-06, + "loss": 0.14194762229919433, + "step": 9300 + }, + { + "epoch": 84.686230248307, + "grad_norm": 0.834684431552887, + "learning_rate": 7.662162162162163e-06, + "loss": 0.14132658004760743, + "step": 9400 + }, + { + "epoch": 85.58690744920993, + "grad_norm": 0.8034214377403259, + "learning_rate": 7.2117117117117115e-06, + "loss": 0.13956727027893068, + "step": 9500 + }, + { + "epoch": 86.48758465011286, + "grad_norm": 0.798268735408783, + "learning_rate": 6.761261261261262e-06, + "loss": 0.139612398147583, + "step": 9600 + }, + { + "epoch": 87.3882618510158, + "grad_norm": 0.8256174325942993, + "learning_rate": 6.31081081081081e-06, + "loss": 0.13857213973999025, + "step": 9700 + }, + { + "epoch": 88.28893905191873, + "grad_norm": 0.7702272534370422, + "learning_rate": 5.860360360360361e-06, + "loss": 0.1381959819793701, + "step": 9800 + }, + { + "epoch": 89.18961625282166, + "grad_norm": 0.7400526404380798, + "learning_rate": 5.409909909909911e-06, + "loss": 0.13726057052612306, + "step": 9900 + }, + { + "epoch": 90.0902934537246, + "grad_norm": 0.7787278294563293, + "learning_rate": 4.95945945945946e-06, + "loss": 0.13640686988830567, + "step": 10000 + }, + { + "epoch": 90.99322799097065, + "grad_norm": 0.7977456450462341, + "learning_rate": 4.509009009009009e-06, + "loss": 0.1359243583679199, + "step": 10100 + }, + { + "epoch": 91.89390519187359, + "grad_norm": 0.7868166565895081, + "learning_rate": 4.058558558558559e-06, + "loss": 0.1351595115661621, + "step": 10200 + }, + { + "epoch": 92.79458239277652, + "grad_norm": 0.7406633496284485, + "learning_rate": 3.608108108108108e-06, + "loss": 0.13441814422607423, + "step": 10300 + }, + { + "epoch": 93.69525959367945, + "grad_norm": 0.7887991666793823, + "learning_rate": 3.1576576576576574e-06, + "loss": 0.13428014755249024, + "step": 10400 + }, + { + "epoch": 94.5959367945824, + "grad_norm": 0.6816275715827942, + "learning_rate": 2.7072072072072076e-06, + "loss": 0.13383679389953612, + "step": 10500 + }, + { + "epoch": 95.49661399548533, + "grad_norm": 0.7175427675247192, + "learning_rate": 2.2567567567567566e-06, + "loss": 0.13299258232116698, + "step": 10600 + }, + { + "epoch": 96.39729119638827, + "grad_norm": 0.781178891658783, + "learning_rate": 1.8063063063063064e-06, + "loss": 0.1331423282623291, + "step": 10700 + }, + { + "epoch": 97.2979683972912, + "grad_norm": 0.8200775384902954, + "learning_rate": 1.355855855855856e-06, + "loss": 0.13251815795898436, + "step": 10800 + }, + { + "epoch": 98.19864559819413, + "grad_norm": 0.8281791806221008, + "learning_rate": 9.054054054054054e-07, + "loss": 0.1319393253326416, + "step": 10900 + }, + { + "epoch": 99.09932279909707, + "grad_norm": 0.7502571940422058, + "learning_rate": 4.54954954954955e-07, + "loss": 0.132002534866333, + "step": 11000 + }, + { + "epoch": 100.0, + "grad_norm": 0.9290983080863953, + "learning_rate": 4.504504504504505e-09, + "loss": 0.13102058410644532, + "step": 11100 + } + ], + "logging_steps": 100, + "max_steps": 11100, + "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": 8398419495321600.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/training_args.bin b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/rtf_checkpoints/checkpoint-11100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/runtime_result.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c5598c832a9f8d007299c5cde32942a80a0617aa --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "m5", + "model": "realtabformer", + "run_id": "rtf-m5-20260330_005221", + "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/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-3539-20260418_111310.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_report.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d60881325a0c01981992cbec58982060c0d2fb6b --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/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/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..21a918d5e77c0c9215262662025096c818b8cc92 --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "realtabformer", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/train_20260330_005222.log b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/train_20260330_005222.log new file mode 100644 index 0000000000000000000000000000000000000000..987d9c8fdd4f62c19bfb3cc34b94491a07779c8f --- /dev/null +++ b/syntheticSuccess/m5/realtabformer/rtf-m5-20260330_005221/train_20260330_005222.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0446d6f95323eb5e868906c8c3400cf9e1d732b1c3521e9e4dc62d803805b099 +size 789632 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_sample.py b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..6e8cc58deac3c7d4a7ea2ad808ff5e28fc16cd23 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-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 3539 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV +work_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-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/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_train.py b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6bd0dfcd1cc4c8847c3e177c85731f0aee7d6d30 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-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/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-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/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..53eda911241faac2511f571b2a4bf000902a1e40 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 28 +device = "cuda:0" + +[model_params] +d_in = 36 +num_classes = 3 +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/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml new file mode 100644 index 0000000000000000000000000000000000000000..00ca8ba41e6309dd857986fdc9852ce4cfc34af3 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 28 +device = "cuda:0" + +[model_params] +d_in = 36 +num_classes = 3 +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 = 3539 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/X_cat_train.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..528ff12a2de8c7f3105c034c67931809936ef661 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a03fbf6df4a4eac29023c548b18d1662eebbb5b7eb090384d305990fa27da7 +size 226624 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/X_num_train.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a685e0fa3dc253b1154f19a4314f24095c2351f --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5692fb1a4675971a5c761d985237b9a5846dd3fbd274cfe101f7f949505ee7d +size 396496 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/info.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ab57d51fb5905131daac354f3079fe8418d0d479 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/info.json @@ -0,0 +1,90 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3539, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "cat_col_idx": [ + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Age at enrollment", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Daytime/evening attendance", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "International", + "Target" + ], + "num_classes": 3 +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/y_train.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9ce696bbabf38f3885ae44f1f9c4ed08b6da442d --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab031f3326755e790d2443975f7f66ce7f45ca0de47ccdcf9f6d8bfd8a6b15f +size 28440 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/gen_20260424_034106.log b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/gen_20260424_034106.log new file mode 100644 index 0000000000000000000000000000000000000000..184bf6909439e0df2795add455afddda6ddcaec8 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/gen_20260424_034106.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8084159720dca3ecae90dac850ce69d77b741680d61f6e0c681a6013e8bda450 +size 84291 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/input_snapshot.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e63af4a8a9ca4623224dbfcc37c2ef120bc056a --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_cat_train.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..0e8ffe1d979fdee94e1a89b53b755ffd813438bb --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b00db07aee94073e8d425ad67b9d82ea6c8fe83dc29e66b68634d9c32509789 +size 56965 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_cat_unnorm.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..40268e0906b41271d69207ecf343374b2c54174b --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53988bf6a0349ae710c0038eb378e3cde1c0237eeb862df90056cd5d94f7ee21 +size 226624 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_num_train.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b782999d443057ed29e19750fd6b105786b06dc3 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f4545b638d59d833f82b98972b64855ab27a78e75fc5c890880e819f51575f +size 792864 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_num_unnorm.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..cc35b7ca7a9ae92104adbb6eed7b75781ecde9e2 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dba5e6028aa831d114c1a5922905f5eb511f3255242928ae2edbfdf6d025d5b +size 792864 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/config.toml b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..00ca8ba41e6309dd857986fdc9852ce4cfc34af3 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 28 +device = "cuda:0" + +[model_params] +d_in = 36 +num_classes = 3 +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 = 3539 +batch_size = 1000 +seed = 0 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/info.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ab57d51fb5905131daac354f3079fe8418d0d479 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/info.json @@ -0,0 +1,90 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3539, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "cat_col_idx": [ + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Age at enrollment", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Daytime/evening attendance", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "International", + "Target" + ], + "num_classes": 3 +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/loss.csv b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..d819bb4a17511ac4085f4b20f4ffb2d5ef1d9d45 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e438386755dd4efb02de82e29a0940062a5aea13071aa71ba3acf4bc48bfe8ff +size 1590 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/model.pt b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..4122aabce36f879887ec4359408923f2682a5e8e --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16b513cddc4f1022daf769fc1fc37155ac83b315014f3fdacb314519e833272 +size 601814 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/model_ema.pt b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..1edd855af40e2982d20e7325db1e9f08284bcaf9 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15da255f2bfbfe3fd4b7231fa63861329a6065239cbd64124e872e64c646de32 +size 602658 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/y_train.npy b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2463693fa788b943bd0430cb6206c2b513beb656 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e743773a10073afcf2f08dfbde17180f96ea9812524f231e49f7212d9c4f65f +size 28440 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7ee9ab77ff2d0a98921bb7aa2ab873fc9c21ff4 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/runtime_result.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..42b9c66b7977f45c2677a06faa4702b9c5d10f73 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabddpm", + "run_id": "tabddpm-m5-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/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_report.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b73175257b2144861b9b26be8c24898dac599209 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-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/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_transforms_applied.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..63db39e1696c2dbaa58ac1ba90526a51bfbb6892 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabddpm", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv new file mode 100644 index 0000000000000000000000000000000000000000..e8ab2f9099af3c9a54822344f8a4e314fa961187 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6161df59302e969ac0e7d7dfa25cb65fe821fc4ba6233d67d28f6226224d673 +size 754080 diff --git a/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/train_20260424_033725.log b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/train_20260424_033725.log new file mode 100644 index 0000000000000000000000000000000000000000..abf9b2de993679060f57a36947dec2bce9a3f365 --- /dev/null +++ b/syntheticSuccess/m5/tabddpm/tabddpm-m5-20260424_033725/train_20260424_033725.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd2c67dbf47108b24d1a90e9de0b63409a9b884e2906f462cf37e4711c98ed61 +size 873 diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/_tabpfgen_generate.py b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b0b4750975b183345b1ef759525ec7c1fbe4bf91 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/_tabpfgen_generate.py @@ -0,0 +1,87 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv") +target_col = "Target" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(3539) + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +# Ensure output row count is strictly aligned with target_n. +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat([syn_df.reset_index(drop=True), extra.reset_index(drop=True)], ignore_index=True) + else: + # Defensive fallback: if generator returns empty, bootstrap from training rows. + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError(f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}") +syn_df.to_csv("/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv") diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/gen_20260422_200336.log b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/gen_20260422_200336.log new file mode 100644 index 0000000000000000000000000000000000000000..fae09de7950860a250ad9061382e3322f8ac3b5c --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/gen_20260422_200336.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fa57b6d1c42b7a1d99443ef2aa04ada11a213b6f360cb5e38c7ef1463c78c2 +size 592 diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/input_snapshot.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3113f538dabc9cfd3ea70cc3b6426de07065106b --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0f913ea8e37ba785079565c10441d4147572afc7 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/runtime_result.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a38d15370c94016482d04391e03df2c1bec7b972 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabpfgen", + "run_id": "tabpfgen-m5-20260422_200335", + "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/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_report.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b4de97cc585f253a7b81b8f83e805d35bf1ff4ac --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_transforms_applied.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..98844cf0fa9dd89394a4f4613a6fce3f04043fef --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabpfgen", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv new file mode 100644 index 0000000000000000000000000000000000000000..ff427e6802d69bee4ca9579f70793228dc325de9 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c13e90f96f15b42b02401fa7b5623c5b85b92554fe699a9843033a0b8ef905 +size 1408203 diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6151fc5241047c8d93afe128c45d3e82a9c640ba --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json", + "target_col": "Target", + "is_classification": true, + "n_rows": 3539, + "n_cols": 37 +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/train_20260422_200336.log b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/train_20260422_200336.log new file mode 100644 index 0000000000000000000000000000000000000000..f72540c52ab5ff38b7491ea29a0b2c6f5fae6284 --- /dev/null +++ b/syntheticSuccess/m5/tabpfgen/tabpfgen-m5-20260422_200335/train_20260422_200336.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f3a133d48c190c52620cfea2ad6e85f890c3d304d020ea20e15a052dcb1c82 +size 186 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_sample.py b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..3c3aed174f72ec9b097a36e255abd77a09223bc4 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648" +dataname = "tabsyn_m5" +output_csv = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.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 3539 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/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_train.py b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9d31a3720f8251ee8c73183f1f11370eddb68b3f --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_train.py @@ -0,0 +1,62 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648" +dataname = "tabsyn_m5" +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/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_test.npy b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..204df8677255fef985382f85724084c6e428043a --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448b01d0a3428efb90d0c23119abd5f09c47276d378c10e27e0359caed1c960a +size 28480 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_train.npy b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..186f3e94efc40527ea681667fc49bb54b164290a --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f176708fa84c5d6dddf34e669fd6f71d81de216fe4dc7d927906d8a03513fbd +size 254912 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_test.npy b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b6904a8cdb4cbca28e934f590ba4904dee28dedb --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59624133c968e19d1c08a83bb4e5e51891b9c7d7fc34d38da0bb4841ad2f0e18 +size 49744 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_train.npy b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..74fa9e3fa1be131c4e9bb8c77b6239b416127cf9 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351de9b96ffd0fb8512fbeaef2719fb05efd14cb02ddf0c1e89e1799cafa82fd +size 446000 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/info.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/info.json new file mode 100644 index 0000000000000000000000000000000000000000..f79fe7c325a44b645596e15fc5a3d6c637d9fbbd --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/info.json @@ -0,0 +1,356 @@ +{ + "name": "tabsyn_m5", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3981, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 19, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "cat_col_idx": [ + 4, + 13, + 14, + 15, + 16, + 17, + 18, + 20 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Daytime/evening attendance", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "Age at enrollment", + "International", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Target" + ], + "train_num": 3981, + "test_num": 443, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m5/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 28, + "5": 4, + "6": 5, + "7": 6, + "8": 7, + "9": 8, + "10": 9, + "11": 10, + "12": 11, + "13": 29, + "14": 30, + "15": 31, + "16": 32, + "17": 33, + "18": 34, + "19": 12, + "20": 35, + "21": 13, + "22": 14, + "23": 15, + "24": 16, + "25": 17, + "26": 18, + "27": 19, + "28": 20, + "29": 21, + "30": 22, + "31": 23, + "32": 24, + "33": 25, + "34": 26, + "35": 27, + "36": 36 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "28": 4, + "4": 5, + "5": 6, + "6": 7, + "7": 8, + "8": 9, + "9": 10, + "10": 11, + "11": 12, + "29": 13, + "30": 14, + "31": 15, + "32": 16, + "33": 17, + "34": 18, + "12": 19, + "35": 20, + "13": 21, + "14": 22, + "15": 23, + "16": 24, + "17": 25, + "18": 26, + "19": 27, + "20": 28, + "21": 29, + "22": 30, + "23": 31, + "24": 32, + "25": 33, + "26": 34, + "27": 35, + "36": 36 + }, + "idx_name_mapping": { + "0": "Marital status", + "1": "Application mode", + "2": "Application order", + "3": "Course", + "4": "Daytime/evening attendance", + "5": "Previous qualification", + "6": "Previous qualification (grade)", + "7": "Nacionality", + "8": "Mother's qualification", + "9": "Father's qualification", + "10": "Mother's occupation", + "11": "Father's occupation", + "12": "Admission grade", + "13": "Displaced", + "14": "Educational special needs", + "15": "Debtor", + "16": "Tuition fees up to date", + "17": "Gender", + "18": "Scholarship holder", + "19": "Age at enrollment", + "20": "International", + "21": "Curricular units 1st sem (credited)", + "22": "Curricular units 1st sem (enrolled)", + "23": "Curricular units 1st sem (evaluations)", + "24": "Curricular units 1st sem (approved)", + "25": "Curricular units 1st sem (grade)", + "26": "Curricular units 1st sem (without evaluations)", + "27": "Curricular units 2nd sem (credited)", + "28": "Curricular units 2nd sem (enrolled)", + "29": "Curricular units 2nd sem (evaluations)", + "30": "Curricular units 2nd sem (approved)", + "31": "Curricular units 2nd sem (grade)", + "32": "Curricular units 2nd sem (without evaluations)", + "33": "Unemployment rate", + "34": "Inflation rate", + "35": "GDP", + "36": "Target" + }, + "n_classes": 3, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "19": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "21": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "22": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "23": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "24": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "25": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "26": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "27": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "28": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "29": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "30": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "31": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "32": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "33": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "34": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "35": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "18": { + "sdtype": "categorical" + }, + "20": { + "sdtype": "categorical" + }, + "36": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/test.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9f0c16797a654b6b3275c5e3e02990252dc67043 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f46fa5e2369360610fabdf662241c35fe0f20b7fa8704f079a02382f08350f +size 50978 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/train.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..463aee5471e4ff3a0f39735ae1aaa5bc44145c7d --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5927126f444d8e1c1e3aaeabe01258d186730d1c9792d23025495f0493b09e +size 449149 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_test.npy b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..f1776058a7f310843e14a833fcfa80683cbdb06f --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b98f8c45c12e5b365537fa32b3f3affb1242375427ee78f00c3a6924fe9d9c +size 3672 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_train.npy b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..7e226a24225c5c1ac3fb6bf743f9a612e87cae7c --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f7d733ab17c8d399e186e4ab3cf903784f55653a4373247efe266ece5d8361 +size 31976 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/gen_20260421_034347.log b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/gen_20260421_034347.log new file mode 100644 index 0000000000000000000000000000000000000000..ded94ffc9cda7cd5a0e3d150f10add59a58a97d8 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/gen_20260421_034347.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb2e2cd6eff129d0964e39cc0c1c45ad65c92e8e7a6b3a98838d31402a61410 +size 664 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/input_snapshot.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e2ce7e794960a8676a52e40a3d04fdd0f2bf0822 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6e977f4a971aceb13630850e58be7ca75a1dc0aa --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/runtime_result.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..388a3567454d1f5e9105acd3961b777740587235 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "run_id": "tabsyn-m5-20260421_023648", + "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/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_report.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4d3adeb1d015dd6dfd7b3b58236164dbf2d2a0a8 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/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/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_transforms_applied.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e26b2fa53ab2bf7308f215b269c3d225a6e98428 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/real.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..463aee5471e4ff3a0f39735ae1aaa5bc44145c7d --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5927126f444d8e1c1e3aaeabe01258d186730d1c9792d23025495f0493b09e +size 449149 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/test.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9f0c16797a654b6b3275c5e3e02990252dc67043 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f46fa5e2369360610fabdf662241c35fe0f20b7fa8704f079a02382f08350f +size 50978 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv new file mode 100644 index 0000000000000000000000000000000000000000..1399e3de3dba758afcbe29c4a7abbce08fbbaa4a --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacfc55296e10679e036541eda20b4a2bec37ec757d061412a6a53d3de9dab1c +size 657446 diff --git a/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/train_20260421_023649.log b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/train_20260421_023649.log new file mode 100644 index 0000000000000000000000000000000000000000..bdd47874441e1201bd259db961f8ca9b61cac673 --- /dev/null +++ b/syntheticSuccess/m5/tabsyn/tabsyn-m5-20260421_023648/train_20260421_023649.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82763f9738277fe496bcbbc37835d7f4e8b1b82b91352dfee1559c498c7ae74d +size 2417333 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/_tvae_generate.py b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9b708bea5ef110187644e3ca8e52093d82931965 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/_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/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt") +total = 3539 +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/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv") diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/_tvae_train.py b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c247bd237098fddcb93cdc1171b8ca0b4b54a9bd --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/_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/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/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/m5/tvae/tvae-m5-20260419_191713/gen_20260419_192224.log b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/gen_20260419_192224.log new file mode 100644 index 0000000000000000000000000000000000000000..4db969efbd116295bf57ff5865294772ecc91f3e --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/gen_20260419_192224.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2200544984d1174adc4ed2bc0d52d8ccd3f5529d0e237a5305997e744c8efc86 +size 137 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/input_snapshot.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ce74300f3898bb985cd61774228cfc0e97cc7e52 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/models_300epochs/train_20260419_191714.log b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/models_300epochs/train_20260419_191714.log new file mode 100644 index 0000000000000000000000000000000000000000..1f09a0338cf85c885180487a896bf557048dba13 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/models_300epochs/train_20260419_191714.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c688706fd1cb987b0b13d5b9c4871df93c01cde18a2c0bc667def189e47b6a36 +size 170 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..0da92b8a7654dca1c218fac385ea02e955e8accf --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f4ffc1302df807c0393893fcff8b8276b165dffeb7a8e92208552f0442d976 +size 1371308 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "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": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a0588c837775f4d62f9a423c66b3c5a0ba336339 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/runtime_result.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ed2ac2ed0e0cf04e2e7dbfd21c2309ada625f6df --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tvae", + "run_id": "tvae-m5-20260419_191713", + "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/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt" + } +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f03d3058f21523994e0429f6919fa3b04d35580c --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c +size 53943 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804ebbebaecb3232ce4ae4749287bea90b09003 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f +size 422717 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..79d7c32196ec171999137f0f7e4e6752e6bc3e4d --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557 +size 53889 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_report.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cf34418dd433b1822b72d631ac8772a96533eaef --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/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/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_transforms_applied.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ff06828c9d8fdb234fdd3de0b714b2100ba62b9f --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tvae", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "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.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "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.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv new file mode 100644 index 0000000000000000000000000000000000000000..860e5a17435b0b040d1260d3b96a5a968d19c573 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005b48a4ceea932503460098b913eb60ac0ae74b119448db26ed5da92dc70076 +size 734487 diff --git a/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..78428a5013d9449b0de0dcdca59aeab32ecc52d3 --- /dev/null +++ b/syntheticSuccess/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json @@ -0,0 +1,152 @@ +{ + "columns": [ + { + "name": "Marital status", + "type": "continuous" + }, + { + "name": "Application mode", + "type": "continuous" + }, + { + "name": "Application order", + "type": "continuous" + }, + { + "name": "Course", + "type": "continuous" + }, + { + "name": "Daytime/evening attendance", + "type": "categorical" + }, + { + "name": "Previous qualification", + "type": "continuous" + }, + { + "name": "Previous qualification (grade)", + "type": "continuous" + }, + { + "name": "Nacionality", + "type": "continuous" + }, + { + "name": "Mother's qualification", + "type": "continuous" + }, + { + "name": "Father's qualification", + "type": "continuous" + }, + { + "name": "Mother's occupation", + "type": "continuous" + }, + { + "name": "Father's occupation", + "type": "continuous" + }, + { + "name": "Admission grade", + "type": "continuous" + }, + { + "name": "Displaced", + "type": "categorical" + }, + { + "name": "Educational special needs", + "type": "categorical" + }, + { + "name": "Debtor", + "type": "categorical" + }, + { + "name": "Tuition fees up to date", + "type": "categorical" + }, + { + "name": "Gender", + "type": "categorical" + }, + { + "name": "Scholarship holder", + "type": "categorical" + }, + { + "name": "Age at enrollment", + "type": "continuous" + }, + { + "name": "International", + "type": "categorical" + }, + { + "name": "Curricular units 1st sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Unemployment rate", + "type": "continuous" + }, + { + "name": "Inflation rate", + "type": "continuous" + }, + { + "name": "GDP", + "type": "continuous" + }, + { + "name": "Target", + "type": "categorical" + } + ] +} \ No newline at end of file