diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/_arf_generate.py b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9bbd5682615880cafb58547a8b2cce5c4389baf4 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(7636) +with open("/work/output-SpecializedModels/c6/arf/arf-c6-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/c6/arf/arf-c6-20260422_055912/arf-c6-7636-20260422_060120.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/arf-c6-7636-20260422_060120.csv") diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/_arf_train.py b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..790fc9c830a5eb9ed79bba3713678483381ce874 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-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/c6/arf/arf-c6-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/c6/arf/arf-c6-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/arf_model.pkl") diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/arf-c6-7636-20260422_060120.csv b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/arf-c6-7636-20260422_060120.csv new file mode 100644 index 0000000000000000000000000000000000000000..1a931d3442e295e24fda107b31bebd14bba49dc7 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/arf-c6-7636-20260422_060120.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b019847524a7e9dcb8902d308b48a552a83b99683e7e60027fbad9852ad0fe3 +size 1102517 diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/arf_model.pkl b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e3eb5e888cebbfca77a59232ace875cd5b268030 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305c25ca33e81129d5fa7eb09eb315f78cb0f71835f6dd49930ad5b0c0e4b90e +size 24861828 diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/gen_20260422_060120.log b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/gen_20260422_060120.log new file mode 100644 index 0000000000000000000000000000000000000000..aba23b9c0741b3b8c3d456aeda8f822691c23582 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/gen_20260422_060120.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baafbab42422c39eb0b2bdeea60a2a5705952a6945683a21985c3e822c0e1754 +size 1719 diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/input_snapshot.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..165b543a77e5b9a8f79f31fdf96a244bad6f72bf --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/public_gate_report.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2d91e2ad8567b11f0b5e9f678080f8c309c4d414 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/runtime_result.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..af87f21066af8eca2e62d6ca02a50b76aa9d9cc6 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c6", + "model": "arf", + "run_id": "arf-c6-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/c6/arf/arf-c6-20260422_055912/arf-c6-7636-20260422_060120.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/adapter_report.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..26428e5de6d3f2de0d734632d70ffc0c1de67887 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-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/c6/arf/arf-c6-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/adapter_transforms_applied.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/model_input_manifest.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..98cecf6af6fc941deee9c3ebcd2ab2fdbd542cbc --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "arf", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/arf/arf-c6-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/staged_features.json b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/test.csv b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/train.csv b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/val.csv b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/arf/arf-c6-20260422_055912/train_20260422_055912.log b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/train_20260422_055912.log new file mode 100644 index 0000000000000000000000000000000000000000..b2681ba4d7278696ce72617e9259bb09bf7f6332 --- /dev/null +++ b/syntheticSuccess/c6/arf/arf-c6-20260422_055912/train_20260422_055912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad4fe1b3113c746d8adc3d872ee211266d85a3dd6688227da9569c0ad8f3f93 +size 289 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/_bayesnet_generate.py b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..f8423a54fd6d6e70b3da2f898801502cfc68134e --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-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/c6/bayesnet/bayesnet-c6-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(7636) +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/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet-c6-7636-20260422_060304.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet-c6-7636-20260422_060304.csv") diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/_bayesnet_train.py b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d6c6895bc60aac0a0bdd26965b6d955ae772e3f7 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-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/c6/bayesnet/bayesnet-c6-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/c6/bayesnet/bayesnet-c6-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/c6/bayesnet/bayesnet-c6-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/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_model.pkl") diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet-c6-7636-20260422_060304.csv b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet-c6-7636-20260422_060304.csv new file mode 100644 index 0000000000000000000000000000000000000000..153c2d194324b90aa58b47e714840e04cbc7c79b --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet-c6-7636-20260422_060304.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc9bfad4d7f78d8f802bd200dad9a0a88c3665230a565b1d194f4d89839d2ee +size 1058662 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_coltypes.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..1b5e9b2571099fabb160b233af3b2c15f6b9fd97 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_coltypes.json @@ -0,0 +1,37 @@ +{ + "columns": [ + { + "name": "Student ID", + "type": "continuous" + }, + { + "name": "Student Country", + "type": "categorical" + }, + { + "name": "Question ID", + "type": "continuous" + }, + { + "name": "Type of Answer", + "type": "categorical" + }, + { + "name": "Question Level", + "type": "categorical" + }, + { + "name": "Topic", + "type": "categorical" + }, + { + "name": "Subtopic", + "type": "categorical" + }, + { + "name": "Keywords", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_model.pkl b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..446474013c28e948039a3efa3dee3873ddcaab0b --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd01c2b2f40cdaf88e7f003f7ceff936bc794b0e1f26856a65d696fe7947b30 +size 211733 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/const_cols.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/gen_20260422_060304.log b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/gen_20260422_060304.log new file mode 100644 index 0000000000000000000000000000000000000000..5f4c611a9a15349aaef66d0793a14b5d64633f42 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/gen_20260422_060304.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acc54b395b66ae0bf9f64b3589f3718312e540826db73f2f393b1e310f00a450 +size 3387 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/input_snapshot.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..756f09e04e5665267d43feb35e42f0e1eea68be6 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/public_gate_report.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66c2930e6305d84ec5097ebe6ee91ea7549f3bf6 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/runtime_result.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8a1a806f0d0925a39f8520d080fff5c6c789d69a --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c6", + "model": "bayesnet", + "run_id": "bayesnet-c6-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/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet-c6-7636-20260422_060304.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/adapter_report.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9133af59dca39df3be2a6d1018865a85d053cc67 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-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/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/adapter_transforms_applied.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/model_input_manifest.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fcee0ea33019e20c42a904ffa5c2c1b1262d4185 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "bayesnet", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/bayesnet/bayesnet-c6-20260422_060152/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/staged_features.json b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/test.csv b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/train.csv b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/val.csv b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/train_20260422_060152.log b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/train_20260422_060152.log new file mode 100644 index 0000000000000000000000000000000000000000..2443106230311bc831c9105a9c63d363dd3540b4 --- /dev/null +++ b/syntheticSuccess/c6/bayesnet/bayesnet-c6-20260422_060152/train_20260422_060152.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2aa7b0c2aa4d0c44a3c3173b854e55e1e6900bc02e85df242bbf2e60c0e961 +size 3444 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/_ctgan_generate.py b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..079de08754d4cefd9661c4b86244f5000fdf4ad6 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-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/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/ctgan_300epochs.pt") +total = 7636 +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/c6/ctgan/ctgan-c6-20260422_025941/ctgan-c6-7636-20260422_030517.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/ctgan-c6-7636-20260422_030517.csv") \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/ctgan-c6-7636-20260422_030517.csv b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/ctgan-c6-7636-20260422_030517.csv new file mode 100644 index 0000000000000000000000000000000000000000..abeab461eb48c83f788f2e06239779c53b9940f7 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/ctgan-c6-7636-20260422_030517.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8574499d27c66e25c1b1448d26ed51aeb9d65ee11b173509931b6819b98514 +size 850526 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/ctgan_metadata.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..fd44f1730c28205b8349695531f19bedb2470087 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/ctgan_metadata.json @@ -0,0 +1,36 @@ +{ + "columns": [ + { + "name": "Student ID", + "type": "continuous" + }, + { + "name": "Student Country", + "type": "categorical" + }, + { + "name": "Question ID", + "type": "continuous" + }, + { + "name": "Type of Answer", + "type": "categorical" + }, + { + "name": "Question Level", + "type": "categorical" + }, + { + "name": "Topic", + "type": "categorical" + }, + { + "name": "Subtopic", + "type": "categorical" + }, + { + "name": "Keywords", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/gen_20260422_030517.log b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/gen_20260422_030517.log new file mode 100644 index 0000000000000000000000000000000000000000..216e52308d8116af2be685c0c3a1fa49ec074b2a --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/gen_20260422_030517.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6dd494ebb6158864cd3a7114813febb0efc2fc6b624a0c97ea35cc53e634ef9 +size 292 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/input_snapshot.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6168765e31eaf2f2f4406b02a88b7b33fb522782 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/ctgan_300epochs.pt b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..eb18aa2f8b25e88a3b10f2371146e2efd13164ba --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0eabb3aac5a61c6a2aebd14017b03a67781edf7d756d16605680ca30bedbc2 +size 3909987 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/train_20260422_025941.log b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/train_20260422_025941.log new file mode 100644 index 0000000000000000000000000000000000000000..1cf211d293ea30684d7f5d4c0cf09b3eb2c039e1 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/train_20260422_025941.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bde6982a751134bac113ace027f4d8793e4b43b1707a1ac2da670f71e259c30 +size 1722 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/public_gate_report.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..236d7c4c0060068f5fa4641dba42b33c06a40151 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/runtime_result.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..199e4de8aa965b09c35e1f03fb785289f6b29ff7 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c6", + "model": "ctgan", + "run_id": "ctgan-c6-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/c6/ctgan/ctgan-c6-20260422_025941/ctgan-c6-7636-20260422_030517.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/adapter_report.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68880db9a138b935b0fdc5a77aaf3431d0a76541 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-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/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/adapter_transforms_applied.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/model_input_manifest.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3eaf0719c4f0030390b7e14840a4bafaf9d19781 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/ctgan/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "ctgan", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/ctgan/ctgan-c6-20260422_025941/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/staged_features.json b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/test.csv b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/train.csv b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/val.csv b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/ctgan/ctgan-c6-20260422_025941/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260330_005111.log b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260330_005111.log new file mode 100644 index 0000000000000000000000000000000000000000..5a857feb9ab5a426483e2aa97dbb7b2d43eebfe5 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260330_005111.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc646877732ab05c3cd1733ab5477fbb6ebcbf55a2252ddfd063e1a8dcd6d99 +size 793 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_073621.log b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_073621.log new file mode 100644 index 0000000000000000000000000000000000000000..e23638af81312b886acc4b31e417d35309b32ef5 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_073621.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d998bcd1d39a4b49b722dff80f795e2462e79a47c05f3008970e6dc8a5e8a0ce +size 716 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_073821.log b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_073821.log new file mode 100644 index 0000000000000000000000000000000000000000..e033d5d46325a7961f37374034345a59a56ead53 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_073821.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511df63b35bd739db871523d71361b64ec88831001ef4040dff60a7423654818 +size 4062 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_074524.log b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_074524.log new file mode 100644 index 0000000000000000000000000000000000000000..970f26e2d497776cd741fef36266ba12a673a397 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_074524.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6f21d96db57be9fb35b477d437c84a8c733de725582b9eb4f0dc276e0900e1 +size 4111 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_083218.log b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_083218.log new file mode 100644 index 0000000000000000000000000000000000000000..dc7aa95f3a29d2ed5d0c87916e3bef43865dd0c0 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/gen_20260418_083218.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb06e6674052059d5789f45c2ed1d37c4988a598a1448620b9306aecfa3b4c28 +size 4062 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/input_snapshot.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..58ff5572451edd227f05d26c73d49bbccbe04282 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/models_100epochs/id000017748030670275743744/rtf_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/models_100epochs/id000017748030670275743744/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a541d80de0001eeffb87b1a45a6dccaa699eaee9 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/models_100epochs/id000017748030670275743744/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"add_cross_attention": false, "tie_word_embeddings": true, "vocab_size": 485, "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": ["Student ID", "Student Country", "Question ID", "Type of Answer", "Question Level", "Topic", "Subtopic", "Keywords"], "column_dtypes": {"Student ID": "int64", "Student Country": "object", "Question ID": "int64", "Type of Answer": "object", "Question Level": "object", "Topic": "object", "Subtopic": "object", "Keywords": "object"}, "column_has_missing": {"Student ID": false, "Student Country": false, "Question ID": false, "Type of Answer": false, "Question Level": false, "Topic": false, "Subtopic": false, "Keywords": false}, "drop_na_cols": ["Student ID", "Student Country", "Question ID", "Type of Answer", "Question Level", "Topic", "Subtopic", "Keywords"], "processed_columns": ["0___NUMERIC___Student ID_00", "0___NUMERIC___Student ID_01", "0___NUMERIC___Student ID_02", "0___NUMERIC___Student ID_03", "1___CATEGORICAL___Student Country", "2___NUMERIC___Question ID_00", "2___NUMERIC___Question ID_01", "2___NUMERIC___Question ID_02", "2___NUMERIC___Question ID_03", "3___CATEGORICAL___Type of Answer", "4___CATEGORICAL___Question Level", "5___CATEGORICAL___Topic", "6___CATEGORICAL___Subtopic", "7___CATEGORICAL___Keywords"], "numeric_columns": ["Student ID", "Question ID"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___NUMERIC___Student ID_00___0", "12": "0___NUMERIC___Student ID_00___1", "13": "0___NUMERIC___Student ID_01___0", "14": "0___NUMERIC___Student ID_01___1", "15": "0___NUMERIC___Student ID_01___2", "16": "0___NUMERIC___Student ID_01___3", "17": "0___NUMERIC___Student ID_01___4", "18": "0___NUMERIC___Student ID_01___5", "19": "0___NUMERIC___Student ID_01___6", "20": "0___NUMERIC___Student ID_01___7", "21": "0___NUMERIC___Student ID_01___8", "22": "0___NUMERIC___Student ID_01___9", "23": "0___NUMERIC___Student ID_02___0", "24": "0___NUMERIC___Student ID_02___1", "25": "0___NUMERIC___Student ID_02___2", "26": "0___NUMERIC___Student ID_02___3", "27": "0___NUMERIC___Student ID_02___4", "28": "0___NUMERIC___Student ID_02___5", "29": "0___NUMERIC___Student ID_02___6", "30": "0___NUMERIC___Student ID_02___7", "31": "0___NUMERIC___Student ID_02___8", "32": "0___NUMERIC___Student ID_02___9", "33": "0___NUMERIC___Student ID_03___0", "34": "0___NUMERIC___Student ID_03___1", "35": "0___NUMERIC___Student ID_03___2", "36": "0___NUMERIC___Student ID_03___3", "37": "0___NUMERIC___Student ID_03___4", "38": "0___NUMERIC___Student ID_03___5", "39": "0___NUMERIC___Student ID_03___6", "40": "0___NUMERIC___Student ID_03___7", "41": "0___NUMERIC___Student ID_03___8", "42": "0___NUMERIC___Student ID_03___9", "43": "1___CATEGORICAL___Student Country___Ireland", "44": "1___CATEGORICAL___Student Country___Italy", "45": "1___CATEGORICAL___Student Country___Lithuania", "46": "1___CATEGORICAL___Student Country___Portugal", "47": "1___CATEGORICAL___Student Country___Romania", "48": "1___CATEGORICAL___Student Country___Russian Federation", "49": "1___CATEGORICAL___Student Country___Slovenia", "50": "1___CATEGORICAL___Student Country___Spain", "51": "2___NUMERIC___Question ID_00___0", "52": "2___NUMERIC___Question ID_00___1", "53": "2___NUMERIC___Question ID_01___0", "54": "2___NUMERIC___Question ID_01___1", "55": "2___NUMERIC___Question ID_01___2", "56": "2___NUMERIC___Question ID_01___3", "57": "2___NUMERIC___Question ID_01___4", "58": "2___NUMERIC___Question ID_01___5", "59": "2___NUMERIC___Question ID_01___6", "60": "2___NUMERIC___Question ID_01___7", "61": "2___NUMERIC___Question ID_01___8", "62": "2___NUMERIC___Question ID_01___9", "63": "2___NUMERIC___Question ID_02___0", "64": "2___NUMERIC___Question ID_02___1", "65": "2___NUMERIC___Question ID_02___2", "66": "2___NUMERIC___Question ID_02___3", "67": "2___NUMERIC___Question ID_02___4", "68": "2___NUMERIC___Question ID_02___5", "69": "2___NUMERIC___Question ID_02___6", "70": "2___NUMERIC___Question ID_02___7", "71": "2___NUMERIC___Question ID_02___8", "72": "2___NUMERIC___Question ID_02___9", "73": "2___NUMERIC___Question ID_03___0", "74": "2___NUMERIC___Question ID_03___1", "75": "2___NUMERIC___Question ID_03___2", "76": "2___NUMERIC___Question ID_03___3", "77": "2___NUMERIC___Question ID_03___4", "78": "2___NUMERIC___Question ID_03___5", "79": "2___NUMERIC___Question ID_03___6", "80": "2___NUMERIC___Question ID_03___7", "81": "2___NUMERIC___Question ID_03___8", "82": "2___NUMERIC___Question ID_03___9", "83": "3___CATEGORICAL___Type of Answer___0", "84": "3___CATEGORICAL___Type of Answer___1", "85": "4___CATEGORICAL___Question Level___Advanced", "86": "4___CATEGORICAL___Question Level___Basic", "87": "5___CATEGORICAL___Topic___Analytic Geometry", "88": "5___CATEGORICAL___Topic___Complex Numbers", "89": "5___CATEGORICAL___Topic___Differential Equations", "90": "5___CATEGORICAL___Topic___Differentiation", "91": "5___CATEGORICAL___Topic___Fundamental Mathematics", "92": "5___CATEGORICAL___Topic___Graph Theory", "93": "5___CATEGORICAL___Topic___Integration", "94": "5___CATEGORICAL___Topic___Linear Algebra", "95": "5___CATEGORICAL___Topic___Numerical Methods", "96": "5___CATEGORICAL___Topic___Optimization", "97": "5___CATEGORICAL___Topic___Probability", "98": "5___CATEGORICAL___Topic___Real Functions of a single variable", "99": "5___CATEGORICAL___Topic___Set Theory", "100": "5___CATEGORICAL___Topic___Statistics", "101": "6___CATEGORICAL___Subtopic___Algebraic expressions, Equations, and Inequalities", "102": "6___CATEGORICAL___Subtopic___Analytic Geometry", "103": "6___CATEGORICAL___Subtopic___Complex Numbers", "104": "6___CATEGORICAL___Subtopic___Definite Integrals", "105": "6___CATEGORICAL___Subtopic___Derivatives", "106": "6___CATEGORICAL___Subtopic___Differential Equations", "107": "6___CATEGORICAL___Subtopic___Domain, Image and Graphics", "108": "6___CATEGORICAL___Subtopic___Double Integration", "109": "6___CATEGORICAL___Subtopic___Eigenvalues and Eigenvectors", "110": "6___CATEGORICAL___Subtopic___Elementary Geometry", "111": "6___CATEGORICAL___Subtopic___Graph Theory", "112": "6___CATEGORICAL___Subtopic___Integration Techniques", "113": "6___CATEGORICAL___Subtopic___Limits and Continuity", "114": "6___CATEGORICAL___Subtopic___Linear Optimization", "115": "6___CATEGORICAL___Subtopic___Linear Systems", "116": "6___CATEGORICAL___Subtopic___Linear Transformations", "117": "6___CATEGORICAL___Subtopic___Matrices and Determinants", "118": "6___CATEGORICAL___Subtopic___Nonlinear Optimization", "119": "6___CATEGORICAL___Subtopic___Numerical Methods", "120": "6___CATEGORICAL___Subtopic___Partial Differentiation", "121": "6___CATEGORICAL___Subtopic___Probability", "122": "6___CATEGORICAL___Subtopic___Set Theory", "123": "6___CATEGORICAL___Subtopic___Statistics", "124": "6___CATEGORICAL___Subtopic___Vector Spaces", "125": "7___CATEGORICAL___Keywords___Addition, multiplication, and total probability rules", "126": "7___CATEGORICAL___Keywords___Addition, multiplication, and total probability rules,Independence,Event", "127": "7___CATEGORICAL___Keywords___Addition, multiplication, and total probability rules,Sample space,Event,Axioms of probability", "128": "7___CATEGORICAL___Keywords___Adjacency matrix", "129": "7___CATEGORICAL___Keywords___Adjacency matrix,Simple graph", "130": "7___CATEGORICAL___Keywords___Algebraic form,Principal argument,De Moivre formulas,Polar representation,Operations with complex numbers,Modulus of a complex number,Trigonometric form", "131": "7___CATEGORICAL___Keywords___Algebraic form,Principal argument,De Moivre formulas,Polar representation,Trigonometric form,Operations with complex numbers,Modulus of a complex number", "132": "7___CATEGORICAL___Keywords___Algebraic form,Real part,Equations involving complex numbers,Imaginary part,Conjugate number,Modulus of a complex number", "133": "7___CATEGORICAL___Keywords___Area of a planar region ,Fundamental theorem of Calculus", "134": "7___CATEGORICAL___Keywords___Axioms of probability,Event,Addition, multiplication, and total probability rules,Sample space", "135": "7___CATEGORICAL___Keywords___Axioms of probability,Event,Independence,Addition, multiplication, and total probability rules,Sample space", "136": "7___CATEGORICAL___Keywords___Basis", "137": "7___CATEGORICAL___Keywords___Basis,Dimension", "138": "7___CATEGORICAL___Keywords___Basis,Span", "139": "7___CATEGORICAL___Keywords___Basis,Span,Change-of-basis matrix", "140": "7___CATEGORICAL___Keywords___Basis,Span,Subspace,Linear combination,Dimension", "141": "7___CATEGORICAL___Keywords___Bayes' Theorem,Conditional probability", "142": "7___CATEGORICAL___Keywords___Bernoulli equation,Linear differential equation", "143": "7___CATEGORICAL___Keywords___Cartesian coordinates,x-simple region (type II),Changing order of integration", "144": "7___CATEGORICAL___Keywords___Cartesian equations of a line,Orthogonality,Collinearity", "145": "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Cartesian equations of a line", "146": "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Cartesian equations of a line,Collinearity", "147": "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Intersection,Cartesian equations of a line", "148": "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Locus,Intersection,Cartesian equations of a line", "149": "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Orthogonality", "150": "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Orthogonality,Locus,Distance", "151": "7___CATEGORICAL___Keywords___Cauchy problem,Exact differential form", "152": "7___CATEGORICAL___Keywords___Chain rule", "153": "7___CATEGORICAL___Keywords___Change-of-basis matrix,Span,Basis,Dimension", "154": "7___CATEGORICAL___Keywords___Changing order of integration,Cartesian coordinates", "155": "7___CATEGORICAL___Keywords___Characteristic polynomial,Eigenvalue,Diagonalization,Eigenvector,Spectrum", "156": "7___CATEGORICAL___Keywords___Chi square distribution,Student distribution,Quantile,Hypothesis testing", "157": "7___CATEGORICAL___Keywords___Chromatic number", "158": "7___CATEGORICAL___Keywords___Collinearity,Distance,Locus,Cross product,Orthogonality,Scalar product", "159": "7___CATEGORICAL___Keywords___Collinearity,Locus,Orthogonality,Orthogonal projection,Scalar product,Distance", "160": "7___CATEGORICAL___Keywords___Collinearity,Orthogonality,Distance,Scalar product", "161": "7___CATEGORICAL___Keywords___Commuting matrices,Solve matrix equation,Matrix equivalent - echelon,Determinant computation,Matrix rank,Inverse matrix ,Determinant properties,Hermitian matrix,Matrix multiplication,Linearly independent rows,Symmetric matrix,Matrix operations", "162": "7___CATEGORICAL___Keywords___Commuting matrices,Solve matrix equation,Matrix equivalent - echelon,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties,Hermitian matrix,Matrix multiplication,Linearly independent rows,Symmetric matrix,Matrix operations", "163": "7___CATEGORICAL___Keywords___Commuting matrices,Solve matrix equation,Matrix equivalent - echelon,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties,Hermitian matrix,Symmetric matrix,Matrix multiplication,Linearly independent rows,Matrix operations", "164": "7___CATEGORICAL___Keywords___Complex plane", "165": "7___CATEGORICAL___Keywords___Conditional probability", "166": "7___CATEGORICAL___Keywords___Conditional probability,Bayes' Theorem", "167": "7___CATEGORICAL___Keywords___Conjugate number,Modulus of a complex number,Algebraic form,Real part,Equations involving complex numbers,Imaginary part", "168": "7___CATEGORICAL___Keywords___Conjugate number,Operations with complex numbers", "169": "7___CATEGORICAL___Keywords___Conjugate number,Real part,De Moivre formulas,Operations with complex numbers,Imaginary part", "170": "7___CATEGORICAL___Keywords___Conjugate number,Real part,Operations with complex numbers,Imaginary part,Modulus of a complex number", "171": "7___CATEGORICAL___Keywords___Conjugate number,Real part,Operations with complex numbers,Modulus of a complex number,Imaginary part", "172": "7___CATEGORICAL___Keywords___Consistent system,Inconsistent system,Solution of linear system,Undetermined solution of linear system", "173": "7___CATEGORICAL___Keywords___Consistent system,Square linear system,Inconsistent system,Solution of linear system,Undetermined solution of linear system", "174": "7___CATEGORICAL___Keywords___Continuity,Limits", "175": "7___CATEGORICAL___Keywords___Cross product,Cartesian equations of a plane,Orthogonality,Cartesian equations of a line", "176": "7___CATEGORICAL___Keywords___Cross product,Orthogonality", "177": "7___CATEGORICAL___Keywords___Cross product,Orthogonality,Scalar product", "178": "7___CATEGORICAL___Keywords___Cycle and circuit,Shortest path,Path,Planar graph,Tree,Adjacency matrix,Chromatic number,Simple graph,Spanning tree,Incidence matrix", "179": "7___CATEGORICAL___Keywords___Determinant computation,Determinant properties", "180": "7___CATEGORICAL___Keywords___Determinant computation,Determinant properties,Inverse matrix ,Matrix operations", "181": "7___CATEGORICAL___Keywords___Determinant computation,Determinant properties,Solve matrix equation", "182": "7___CATEGORICAL___Keywords___Determinant properties,Inverse matrix ,Solve matrix equation,Matrix rank,Matrix operations,Matrix multiplication,Symmetric matrix,Commuting matrices,Determinant computation", "183": "7___CATEGORICAL___Keywords___Determinant properties,Symmetric matrix,Inverse matrix ,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank,Determinant computation,Matrix multiplication", "184": "7___CATEGORICAL___Keywords___Direct inspection", "185": "7___CATEGORICAL___Keywords___Direct inspection,Simple integration", "186": "7___CATEGORICAL___Keywords___Direct integrals ,Fundamental theorem of Calculus", "187": "7___CATEGORICAL___Keywords___Directional derivative,Gradient", "188": "7___CATEGORICAL___Keywords___Directional derivative,Gradient,First order,Second order", "189": "7___CATEGORICAL___Keywords___Distance,Cross product,Orthogonality", "190": "7___CATEGORICAL___Keywords___Distance,Orthogonal projection,Orthogonality", "191": "7___CATEGORICAL___Keywords___Distance,Orthogonality,Locus", "192": "7___CATEGORICAL___Keywords___Distance,Scalar product,Cross product,Orthogonal projection,Orthogonality,Collinearity,Locus", "193": "7___CATEGORICAL___Keywords___Distance,Scalar product,Cross product,Orthogonality", "194": "7___CATEGORICAL___Keywords___Domain", "195": "7___CATEGORICAL___Keywords___Domain,Image of a function", "196": "7___CATEGORICAL___Keywords___Duality theory,Excel solver add-in,Simplex method,Linear programming,Sensitivity analysis,Postoptimality analysis", "197": "7___CATEGORICAL___Keywords___Duality theory,Linear programming", "198": "7___CATEGORICAL___Keywords___Eigenvalue,Diagonalization,Spectrum,Characteristic polynomial", "199": "7___CATEGORICAL___Keywords___Eigenvalue,Eigenvector", "200": "7___CATEGORICAL___Keywords___Eigenvalue,Eigenvector,Diagonalization", "201": "7___CATEGORICAL___Keywords___Eigenvalue,Eigenvector,Spectrum,Characteristic polynomial", "202": "7___CATEGORICAL___Keywords___Eigenvalue,Spectrum,Characteristic polynomial", "203": "7___CATEGORICAL___Keywords___Eigenvalue,Spectrum,Diagonalization,Characteristic polynomial", "204": "7___CATEGORICAL___Keywords___Eigenvalue,Spectrum,Eigenvector,Characteristic polynomial", "205": "7___CATEGORICAL___Keywords___Eigenvector,Eigenvalue", "206": "7___CATEGORICAL___Keywords___Eigenvector,Spectrum,Characteristic polynomial,Diagonalization,Eigenvalue", "207": "7___CATEGORICAL___Keywords___Eigenvector,Spectrum,Characteristic polynomial,Eigenvalue", "208": "7___CATEGORICAL___Keywords___Eigenvector,Spectrum,Characteristic polynomial,Eigenvalue,Diagonalization", "209": "7___CATEGORICAL___Keywords___Equations involving complex numbers,Imaginary part,Modulus of a complex number,Conjugate number,Algebraic form,Real part", "210": "7___CATEGORICAL___Keywords___Euclidean spaces,Orthogonal basis", "211": "7___CATEGORICAL___Keywords___Euclidean spaces,Orthogonal basis,Basis", "212": "7___CATEGORICAL___Keywords___Event,Addition, multiplication, and total probability rules,Independence", "213": "7___CATEGORICAL___Keywords___Event,Addition, multiplication, and total probability rules,Sample space", "214": "7___CATEGORICAL___Keywords___Event,Axioms of probability", "215": "7___CATEGORICAL___Keywords___Event,Axioms of probability,Addition, multiplication, and total probability rules,Sample space", "216": "7___CATEGORICAL___Keywords___Event,Axioms of probability,Sample space", "217": "7___CATEGORICAL___Keywords___Event,Independence,Addition, multiplication, and total probability rules", "218": "7___CATEGORICAL___Keywords___Event,Sample space", "219": "7___CATEGORICAL___Keywords___Event,Sample space,Addition, multiplication, and total probability rules,Axioms of probability", "220": "7___CATEGORICAL___Keywords___Exact differential form,Cauchy problem", "221": "7___CATEGORICAL___Keywords___Excel solver add-in,Simplex method,Linear programming", "222": "7___CATEGORICAL___Keywords___Excel solver add-in,Simplex method,Linear programming,Transportation problem", "223": "7___CATEGORICAL___Keywords___Exponential function,Simplify expressions", "224": "7___CATEGORICAL___Keywords___Exponential rule", "225": "7___CATEGORICAL___Keywords___First order", "226": "7___CATEGORICAL___Keywords___First order,Directional derivative", "227": "7___CATEGORICAL___Keywords___First order,Directional derivative,Gradient", "228": "7___CATEGORICAL___Keywords___First order,Gradient", "229": "7___CATEGORICAL___Keywords___First order,Second order", "230": "7___CATEGORICAL___Keywords___Frequency,Mode,Quantile,Population,Data type,Sample,Relative frequency,Mean,Standard deviation,Variance,Median", "231": "7___CATEGORICAL___Keywords___Frequency,Quantile,Mean,Variance,Median,Mode", "232": "7___CATEGORICAL___Keywords___Frequency,Sample,Stem and Leaf diagram,Variance,Standard deviation,Relative frequency", "233": "7___CATEGORICAL___Keywords___Fundamental theorem of Calculus,Volume of revolution", "234": "7___CATEGORICAL___Keywords___Geometric solids", "235": "7___CATEGORICAL___Keywords___Geometric solids,Geometrical figures,Classification of geometric solids", "236": "7___CATEGORICAL___Keywords___Geometrical figures", "237": "7___CATEGORICAL___Keywords___Geometrical figures,Polygons", "238": "7___CATEGORICAL___Keywords___Geometrical figures,Quadrilaterals,Rhombus", "239": "7___CATEGORICAL___Keywords___Geometrical figures,Triangles,Classification of geometrical figures", "240": "7___CATEGORICAL___Keywords___Gradient,Directional derivative", "241": "7___CATEGORICAL___Keywords___Gradient,First order", "242": "7___CATEGORICAL___Keywords___Gradient,First order,Directional derivative", "243": "7___CATEGORICAL___Keywords___Graphical method,Linear programming", "244": "7___CATEGORICAL___Keywords___Homogeneous equation", "245": "7___CATEGORICAL___Keywords___Homogeneous equation,Cauchy problem", "246": "7___CATEGORICAL___Keywords___Imaginary part,Complex plane ,Real part", "247": "7___CATEGORICAL___Keywords___Imaginary part,Conjugate number,Modulus of a complex number,Algebraic form,Real part,Equations involving complex numbers", "248": "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Algebraic form,Conjugate number,Real part,Equations involving complex numbers", "249": "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Conjugate number,Algebraic form,Operations with complex numbers,Real part,Equations involving complex numbers", "250": "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Conjugate number,Operations with complex numbers,Real part", "251": "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", "252": "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Consistent system", "253": "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Consistent system,Square linear system", "254": "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Homogeneous system,Consistent system", "255": "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Square linear system,Consistent system", "256": "7___CATEGORICAL___Keywords___Inconsistent system,Square linear system,Solution of linear system,Undetermined solution of linear system,Consistent system", "257": "7___CATEGORICAL___Keywords___Indeterminate forms,Limits", "258": "7___CATEGORICAL___Keywords___Injective linear application,Invertible linear operator,Isomorphism", "259": "7___CATEGORICAL___Keywords___Injective linear application,Invertible linear operator,Range,Kernel,Isomorphism", "260": "7___CATEGORICAL___Keywords___Injective linear application,Isomorphism", "261": "7___CATEGORICAL___Keywords___Injective linear application,Range,Kernel,Isomorphism", "262": "7___CATEGORICAL___Keywords___Integration by parts", "263": "7___CATEGORICAL___Keywords___Integration by parts,Fundamental theorem of Calculus", "264": "7___CATEGORICAL___Keywords___Integration by parts,Substitution,Simple integration,Direct inspection", "265": "7___CATEGORICAL___Keywords___Intersection,Cartesian equations of a plane", "266": "7___CATEGORICAL___Keywords___Inverse matrix ,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank,Determinant computation,Matrix multiplication,Determinant properties,Symmetric matrix", "267": "7___CATEGORICAL___Keywords___Inverse matrix ,Determinant computation,Determinant properties,Matrix operations", "268": "7___CATEGORICAL___Keywords___Invertible linear operator,Isomorphism,Injective linear application", "269": "7___CATEGORICAL___Keywords___Iterate integrals", "270": "7___CATEGORICAL___Keywords___Iterate integrals,Area ,y-simple region (type I),Cartesian coordinates", "271": "7___CATEGORICAL___Keywords___Iterate integrals,Cartesian coordinates,y-simple region (type I)", "272": "7___CATEGORICAL___Keywords___Kernel,Isomorphism,Injective linear application,Range", "273": "7___CATEGORICAL___Keywords___Lagrange multipliers,Maximum,Minimum", "274": "7___CATEGORICAL___Keywords___Lagrange multipliers,Minimum,Maximum,Stationary point", "275": "7___CATEGORICAL___Keywords___Lagrange multipliers,Optimal solution,Minimum,Maximum", "276": "7___CATEGORICAL___Keywords___Lagrange's interpolation,Polynomial interpolation", "277": "7___CATEGORICAL___Keywords___Limits", "278": "7___CATEGORICAL___Keywords___Limits,Indeterminate forms", "279": "7___CATEGORICAL___Keywords___Linear application,Composition of linear applications", "280": "7___CATEGORICAL___Keywords___Linear application,Linearity", "281": "7___CATEGORICAL___Keywords___Linear combination,Span", "282": "7___CATEGORICAL___Keywords___Linear combination,Subspace,Span", "283": "7___CATEGORICAL___Keywords___Linear differential equation", "284": "7___CATEGORICAL___Keywords___Linear differential equation,Homogeneous equation", "285": "7___CATEGORICAL___Keywords___Linear differential equation,Integral curve,Cauchy problem", "286": "7___CATEGORICAL___Keywords___Linear equations,Quadratic equations,Simplify expressions", "287": "7___CATEGORICAL___Keywords___Linear independence,Span,Linear dependence", "288": "7___CATEGORICAL___Keywords___Linear independence,Subspace,Linear combination,Linear dependence,Span", "289": "7___CATEGORICAL___Keywords___Linear programming", "290": "7___CATEGORICAL___Keywords___Linear programming,Assignment problem,Excel solver add-in,Simplex method", "291": "7___CATEGORICAL___Keywords___Linear programming,Excel solver add-in,Simplex method", "292": "7___CATEGORICAL___Keywords___Linear regression", "293": "7___CATEGORICAL___Keywords___Linearity,Invertible linear operator,Composition of linear applications,Linear application", "294": "7___CATEGORICAL___Keywords___Linearity,Linear application", "295": "7___CATEGORICAL___Keywords___Linearity,Matrix of a linear transformation,Linear application", "296": "7___CATEGORICAL___Keywords___Linearly independent rows,Matrix multiplication,Symmetric matrix,Matrix operations,Commuting matrices,Solve matrix equation,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties", "297": "7___CATEGORICAL___Keywords___Linearly independent rows,Matrix rank", "298": "7___CATEGORICAL___Keywords___Locus,Distance", "299": "7___CATEGORICAL___Keywords___Locus,Distance,Scalar product,Cross product,Orthogonality,Collinearity", "300": "7___CATEGORICAL___Keywords___Locus,Scalar product,Cross product,Distance,Collinearity,Orthogonality", "301": "7___CATEGORICAL___Keywords___Logarithmic function,Exponential function,Simplify expressions", "302": "7___CATEGORICAL___Keywords___Logarithmic rule,Power rule,Exponential rule,Trigonometric rules,Product rule", "303": "7___CATEGORICAL___Keywords___Logarithmic rule,Power rule,Trigonometric rules", "304": "7___CATEGORICAL___Keywords___Logarithmic rule,Product rule,Trigonometric rules", "305": "7___CATEGORICAL___Keywords___Logarithmic rule,Trigonometric rules", "306": "7___CATEGORICAL___Keywords___Matrix equivalent - echelon,Matrix rank,Matrix operations,Hermitian matrix,Matrix multiplication,Symmetric matrix,Linearly independent rows,Commuting matrices,Determinant computation,Determinant properties,Inverse matrix ,Solve matrix equation", "307": "7___CATEGORICAL___Keywords___Matrix equivalent - echelon,Matrix rank,Matrix operations,Matrix multiplication,Symmetric matrix,Linearly independent rows,Determinant computation,Commuting matrices,Determinant properties,Inverse matrix ,Solve matrix equation", "308": "7___CATEGORICAL___Keywords___Matrix multiplication,Determinant computation,Determinant properties,Symmetric matrix,Hermitian matrix,Inverse matrix ,Linearly independent rows,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank,Matrix equivalent - echelon", "309": "7___CATEGORICAL___Keywords___Matrix multiplication,Determinant computation,Determinant properties,Symmetric matrix,Inverse matrix ,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank", "310": "7___CATEGORICAL___Keywords___Matrix multiplication,Determinant computation,Determinant properties,Symmetric matrix,Inverse matrix ,Linearly independent rows,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank", "311": "7___CATEGORICAL___Keywords___Matrix multiplication,Symmetric matrix,Matrix operations", "312": "7___CATEGORICAL___Keywords___Matrix multiplication,Symmetric matrix,Matrix operations,Commuting matrices,Solve matrix equation,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties", "313": "7___CATEGORICAL___Keywords___Matrix of a linear transformation", "314": "7___CATEGORICAL___Keywords___Matrix of a linear transformation,Linear application,Linearity", "315": "7___CATEGORICAL___Keywords___Matrix operations,Commuting matrices,Solve matrix equation,Determinant computation,Inverse matrix ,Matrix rank,Determinant properties,Matrix multiplication,Symmetric matrix", "316": "7___CATEGORICAL___Keywords___Matrix operations,Determinant computation,Determinant properties,Inverse matrix", "317": "7___CATEGORICAL___Keywords___Matrix operations,Inverse matrix", "318": "7___CATEGORICAL___Keywords___Matrix operations,Matrix multiplication", "319": "7___CATEGORICAL___Keywords___Matrix operations,Matrix multiplication,Determinant computation,Determinant properties", "320": "7___CATEGORICAL___Keywords___Matrix rank,Linearly independent rows", "321": "7___CATEGORICAL___Keywords___Matrix rank,Matrix operations,Matrix multiplication,Symmetric matrix,Determinant computation,Commuting matrices,Determinant properties,Inverse matrix ,Solve matrix equation", "322": "7___CATEGORICAL___Keywords___Mean,Median,Mode", "323": "7___CATEGORICAL___Keywords___Mean,Median,Outliers,Interquartile range", "324": "7___CATEGORICAL___Keywords___Mean,Variance,Standard deviation,Median,Mode", "325": "7___CATEGORICAL___Keywords___Median,Frequency,Mode,Quantile,Population,Data type,Sample,Relative frequency,Mean,Standard deviation,Variance", "326": "7___CATEGORICAL___Keywords___Minimum,Maximum,Lagrange multipliers,Saddle point,Unconstrained optimization,Second derivative test", "327": "7___CATEGORICAL___Keywords___Minimum,Maximum,Stationary point,Second derivative test,Unconstrained optimization,Saddle point,Optimal solution", "328": "7___CATEGORICAL___Keywords___Minimum,Stationary point,Maximum,Saddle point,Optimal solution", "329": "7___CATEGORICAL___Keywords___Mode,Quantile,Population,Data type,Sample,Mean,Standard deviation,Variance,Median", "330": "7___CATEGORICAL___Keywords___Modulus of a complex number,Algebraic form,Real part,Equations involving complex numbers,Imaginary part,Conjugate number", "331": "7___CATEGORICAL___Keywords___Newton\u2019s interpolation,Polynomial interpolation", "332": "7___CATEGORICAL___Keywords___Newton\u2019s method,Nonlinear equation", "333": "7___CATEGORICAL___Keywords___Nonlinear equation,Newton\u2019s method", "334": "7___CATEGORICAL___Keywords___Nth root,Polar representation,Imaginary part,Complex plane ,Operations with complex numbers,Real part,Principal argument,De Moivre formulas", "335": "7___CATEGORICAL___Keywords___Nth root,Polar representation,Operations with complex numbers,Principal argument,De Moivre formulas", "336": "7___CATEGORICAL___Keywords___Operations with complex numbers", "337": "7___CATEGORICAL___Keywords___Operations with complex numbers,Conjugate number", "338": "7___CATEGORICAL___Keywords___Operations with complex numbers,Imaginary part,Modulus of a complex number,Conjugate number,Real part", "339": "7___CATEGORICAL___Keywords___Operations with complex numbers,Modulus of a complex number,Algebraic form,Principal argument,De Moivre formulas,Polar representation,Trigonometric form", "340": "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Maximum", "341": "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Maximum,Second derivative test,Stationary point,Unconstrained optimization,Saddle point", "342": "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Maximum,Stationary point,Saddle point", "343": "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Stationary point,Maximum,Saddle point", "344": "7___CATEGORICAL___Keywords___Optimal solution,Second derivative test,Minimum,Maximum,Stationary point,Saddle point", "345": "7___CATEGORICAL___Keywords___Optimal solution,Stationary point,Minimum,Maximum,Saddle point", "346": "7___CATEGORICAL___Keywords___Orthogonal projection,Distance,Cross product,Orthogonality", "347": "7___CATEGORICAL___Keywords___Orthogonality", "348": "7___CATEGORICAL___Keywords___Orthogonality,Cross product", "349": "7___CATEGORICAL___Keywords___Orthogonality,Cross product,Distance", "350": "7___CATEGORICAL___Keywords___Orthogonality,Distance,Cross product", "351": "7___CATEGORICAL___Keywords___Orthogonality,Distance,Scalar product", "352": "7___CATEGORICAL___Keywords___Orthogonality,Locus,Scalar product,Cross product,Collinearity", "353": "7___CATEGORICAL___Keywords___Orthogonality,Orthogonal projection,Cross product,Scalar product", "354": "7___CATEGORICAL___Keywords___Orthogonality,Orthogonal projection,Distance", "355": "7___CATEGORICAL___Keywords___Orthogonality,Scalar product", "356": "7___CATEGORICAL___Keywords___Path,Cycle and circuit", "357": "7___CATEGORICAL___Keywords___Path,Simple graph,Cycle and circuit", "358": "7___CATEGORICAL___Keywords___Planar graph", "359": "7___CATEGORICAL___Keywords___Platonic solids", "360": "7___CATEGORICAL___Keywords___Platonic solids,Regular polygon", "361": "7___CATEGORICAL___Keywords___Polar representation,Trigonometric form,Modulus of a complex number,Operations with complex numbers,Algebraic form,Principal argument,De Moivre formulas", "362": "7___CATEGORICAL___Keywords___Polygons", "363": "7___CATEGORICAL___Keywords___Polygons,Geometric transformations,Geometrical figures", "364": "7___CATEGORICAL___Keywords___Polygons,Geometrical figures", "365": "7___CATEGORICAL___Keywords___Polygons,Regular polygon", "366": "7___CATEGORICAL___Keywords___Polygons,Triangles", "367": "7___CATEGORICAL___Keywords___Polyhedrons,Geometric solids,Classification of geometric solids", "368": "7___CATEGORICAL___Keywords___Polyhedrons,Platonic solids,Geometric solids", "369": "7___CATEGORICAL___Keywords___Polynomial interpolation,Lagrange's interpolation", "370": "7___CATEGORICAL___Keywords___Polynomial interpolation,Newton\u2019s interpolation", "371": "7___CATEGORICAL___Keywords___Population,Sample", "372": "7___CATEGORICAL___Keywords___Population,Variance,Median,Standard deviation,Mode,Quantile,Sample,Mean", "373": "7___CATEGORICAL___Keywords___Postoptimality analysis,Duality theory,Excel solver add-in,Simplex method,Linear programming,Sensitivity analysis", "374": "7___CATEGORICAL___Keywords___Power of trigonometric functions", "375": "7___CATEGORICAL___Keywords___Power rule,Product rule", "376": "7___CATEGORICAL___Keywords___Power rule,Quotient rule,Product rule,Trigonometric rules", "377": "7___CATEGORICAL___Keywords___Power rule,Trigonometric rules,Logarithmic rule", "378": "7___CATEGORICAL___Keywords___Power rule,Trigonometric rules,Logarithmic rule,First order", "379": "7___CATEGORICAL___Keywords___Principal argument,Trigonometric form,Modulus of a complex number,Algebraic form", "380": "7___CATEGORICAL___Keywords___Product rule,Logarithmic rule,Trigonometric rules", "381": "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules", "382": "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules,Exponential rule", "383": "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules,Logarithmic rule", "384": "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules,Quotient rule", "385": "7___CATEGORICAL___Keywords___Quadratic equations,Simplify expressions,Linear equations", "386": "7___CATEGORICAL___Keywords___Quadrilaterals,Geometrical figures", "387": "7___CATEGORICAL___Keywords___Quadrilaterals,Geometrical figures,Classification of geometrical figures", "388": "7___CATEGORICAL___Keywords___Quadrilaterals,Polygons,Classification of geometrical figures,Geometrical figures", "389": "7___CATEGORICAL___Keywords___Quadrilaterals,Rhombus", "390": "7___CATEGORICAL___Keywords___Quantile,Frequency,Sample,Mean,Variance,Standard deviation,Median,Mode", "391": "7___CATEGORICAL___Keywords___Quantile,Population,Sample,Mean,Variance,Standard deviation,Median,Mode", "392": "7___CATEGORICAL___Keywords___Quotient rule", "393": "7___CATEGORICAL___Keywords___Quotient rule,Product rule,Power rule,Trigonometric rules", "394": "7___CATEGORICAL___Keywords___Quotient rule,Product rule,Trigonometric rules", "395": "7___CATEGORICAL___Keywords___Quotient rule,Trigonometric rules", "396": "7___CATEGORICAL___Keywords___Quotient rule,Trigonometric rules,Logarithmic rule,Product rule", "397": "7___CATEGORICAL___Keywords___Range,Kernel", "398": "7___CATEGORICAL___Keywords___Range,Kernel,Isomorphism", "399": "7___CATEGORICAL___Keywords___Range,Kernel,Isomorphism,Injective linear application", "400": "7___CATEGORICAL___Keywords___Range,Kernel,Matrix of a linear transformation", "401": "7___CATEGORICAL___Keywords___Rational functions", "402": "7___CATEGORICAL___Keywords___Real part,Operations with complex numbers,Imaginary part,Modulus of a complex number,Conjugate number", "403": "7___CATEGORICAL___Keywords___Rotation,Linear application", "404": "7___CATEGORICAL___Keywords___Saddle point,Optimal solution,Minimum,Maximum,Stationary point", "405": "7___CATEGORICAL___Keywords___Sample space,Addition, multiplication, and total probability rules,Axioms of probability,Event", "406": "7___CATEGORICAL___Keywords___Sample space,Addition, multiplication, and total probability rules,Event,Axioms of probability", "407": "7___CATEGORICAL___Keywords___Sample space,Event", "408": "7___CATEGORICAL___Keywords___Sample,Population,Mean,Variance,Standard deviation,Median,Mode,Quantile", "409": "7___CATEGORICAL___Keywords___Scalar product,Orthogonality,Orthogonal projection,Distance", "410": "7___CATEGORICAL___Keywords___Second order", "411": "7___CATEGORICAL___Keywords___Second order,First order", "412": "7___CATEGORICAL___Keywords___Sensitivity analysis,Postoptimality analysis,Duality theory,Excel solver add-in,Simplex method,Linear programming", "413": "7___CATEGORICAL___Keywords___Separable variables equation", "414": "7___CATEGORICAL___Keywords___Shortest path,Tree,Spanning tree,Path", "415": "7___CATEGORICAL___Keywords___Simple graph", "416": "7___CATEGORICAL___Keywords___Simple graph,Adjacency matrix", "417": "7___CATEGORICAL___Keywords___Simple integration,Direct inspection", "418": "7___CATEGORICAL___Keywords___Simplex method,Duality theory", "419": "7___CATEGORICAL___Keywords___Simplex method,Linear programming,Assignment problem,Excel solver add-in", "420": "7___CATEGORICAL___Keywords___Simplify expressions", "421": "7___CATEGORICAL___Keywords___Simplify expressions,Exponential function", "422": "7___CATEGORICAL___Keywords___Simplify expressions,Linear equations,Quadratic equations", "423": "7___CATEGORICAL___Keywords___Simplify expressions,Logarithmic function", "424": "7___CATEGORICAL___Keywords___Solution of linear system,Undetermined solution of linear system,Consistent system,Square linear system,Inconsistent system", "425": "7___CATEGORICAL___Keywords___Solution of linear system,Undetermined solution of linear system,Square linear system,Consistent system,Inconsistent system", "426": "7___CATEGORICAL___Keywords___Solve matrix equation,Matrix equivalent - echelon,Inverse matrix ,Determinant computation,Determinant properties,Matrix rank,Hermitian matrix,Matrix operations,Symmetric matrix,Matrix multiplication,Linearly independent rows,Commuting matrices", "427": "7___CATEGORICAL___Keywords___Span,Linear combination,Subspace", "428": "7___CATEGORICAL___Keywords___Span,Subspace,Linear combination", "429": "7___CATEGORICAL___Keywords___Spanning tree,Shortest path,Path,Tree", "430": "7___CATEGORICAL___Keywords___Spectrum,Characteristic polynomial,Diagonalization,Eigenvalue", "431": "7___CATEGORICAL___Keywords___Square linear system,Inconsistent system,Solution of linear system,Undetermined solution of linear system,Consistent system", "432": "7___CATEGORICAL___Keywords___Square roots,Simplify expressions", "433": "7___CATEGORICAL___Keywords___Standard deviation,Variance,Median,Frequency,Mode,Outliers,Quantile,Interquartile range,Population,Data type,Sample,Relative frequency,Mean", "434": "7___CATEGORICAL___Keywords___Stationary point,Maximum,Saddle point,Optimal solution,Minimum", "435": "7___CATEGORICAL___Keywords___Stationary point,Maximum,Saddle point,Second derivative test,Optimal solution,Minimum", "436": "7___CATEGORICAL___Keywords___Stationary point,Minimum,Optimal solution,Lagrange multipliers", "437": "7___CATEGORICAL___Keywords___Stem and Leaf diagram,Relative frequency,Sample,Frequency", "438": "7___CATEGORICAL___Keywords___Student distribution,Confidence interval,Point estimate,Hypothesis testing", "439": "7___CATEGORICAL___Keywords___Student distribution,Hypothesis testing", "440": "7___CATEGORICAL___Keywords___Subset", "441": "7___CATEGORICAL___Keywords___Subspace", "442": "7___CATEGORICAL___Keywords___Subspace,Basis,Dimension", "443": "7___CATEGORICAL___Keywords___Subspace,Change-of-basis matrix,Linear combination,Span,Basis", "444": "7___CATEGORICAL___Keywords___Subspace,Dimension", "445": "7___CATEGORICAL___Keywords___Subspace,Linear combination,Span", "446": "7___CATEGORICAL___Keywords___Subspace,Span,Linear combination", "447": "7___CATEGORICAL___Keywords___Substitution", "448": "7___CATEGORICAL___Keywords___Substitution,Direct inspection,Integration by parts,Rational functions", "449": "7___CATEGORICAL___Keywords___Substitution,Direct inspection,Simple integration", "450": "7___CATEGORICAL___Keywords___Symmetric matrix,Determinant computation,Determinant properties", "451": "7___CATEGORICAL___Keywords___Symmetric matrix,Inverse matrix ,Hermitian matrix,Commuting matrices,Linearly independent rows,Solve matrix equation,Matrix operations,Matrix rank,Matrix equivalent - echelon,Determinant computation,Matrix multiplication,Determinant properties", "452": "7___CATEGORICAL___Keywords___Symmetric matrix,Matrix multiplication,Matrix operations", "453": "7___CATEGORICAL___Keywords___Symmetry", "454": "7___CATEGORICAL___Keywords___Symmetry,Geometric transformations", "455": "7___CATEGORICAL___Keywords___Transportation problem,Excel solver add-in,Simplex method,Linear programming", "456": "7___CATEGORICAL___Keywords___Tree,Simple graph,Spanning tree,Path", "457": "7___CATEGORICAL___Keywords___Tree,Spanning tree", "458": "7___CATEGORICAL___Keywords___Triangle inequality,Triangles", "459": "7___CATEGORICAL___Keywords___Triangles", "460": "7___CATEGORICAL___Keywords___Triangles,Classification of geometrical figures,Geometrical figures", "461": "7___CATEGORICAL___Keywords___Triangles,Triangle inequality", "462": "7___CATEGORICAL___Keywords___Trigonometric form,Modulus of a complex number,Algebraic form", "463": "7___CATEGORICAL___Keywords___Trigonometric form,Operations with complex numbers,Modulus of a complex number,Algebraic form,Principal argument,De Moivre formulas,Polar representation", "464": "7___CATEGORICAL___Keywords___Trigonometric rules", "465": "7___CATEGORICAL___Keywords___Trigonometric rules,Logarithmic rule", "466": "7___CATEGORICAL___Keywords___Trigonometric rules,Power rule", "467": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule", "468": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Exponential rule", "469": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Logarithmic rule", "470": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Logarithmic rule,Exponential rule", "471": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Sum rule,Logarithmic rule,Power rule", "472": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Sum rule,Logarithmic rule,Power rule,Exponential rule", "473": "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Sum rule,Power rule", "474": "7___CATEGORICAL___Keywords___Trigonometric rules,Quotient rule", "475": "7___CATEGORICAL___Keywords___Trigonometric substitution", "476": "7___CATEGORICAL___Keywords___Trigonometric substitution,Simple integration", "477": "7___CATEGORICAL___Keywords___Unconstrained optimization,Second derivative test,Optimal solution", "478": "7___CATEGORICAL___Keywords___Undetermined solution of linear system,Consistent system,Inconsistent system,Solution of linear system", "479": "7___CATEGORICAL___Keywords___Undetermined solution of linear system,Consistent system,Square linear system,Inconsistent system,Solution of linear system", "480": "7___CATEGORICAL___Keywords___Union of sets,Venn diagram,Complement of a set", "481": "7___CATEGORICAL___Keywords___Volume of revolution,Fundamental theorem of Calculus", "482": "7___CATEGORICAL___Keywords___y-simple region (type I),Area ,Cartesian coordinates", "483": "7___CATEGORICAL___Keywords___y-simple region (type I),Cartesian coordinates,Area ,Iterate integrals", "484": "7___CATEGORICAL___Keywords___y-simple region (type I),Cartesian coordinates,Iterate integrals"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___NUMERIC___Student ID_00___0": 11, "0___NUMERIC___Student ID_00___1": 12, "0___NUMERIC___Student ID_01___0": 13, "0___NUMERIC___Student ID_01___1": 14, "0___NUMERIC___Student ID_01___2": 15, "0___NUMERIC___Student ID_01___3": 16, "0___NUMERIC___Student ID_01___4": 17, "0___NUMERIC___Student ID_01___5": 18, "0___NUMERIC___Student ID_01___6": 19, "0___NUMERIC___Student ID_01___7": 20, "0___NUMERIC___Student ID_01___8": 21, "0___NUMERIC___Student ID_01___9": 22, "0___NUMERIC___Student ID_02___0": 23, "0___NUMERIC___Student ID_02___1": 24, "0___NUMERIC___Student ID_02___2": 25, "0___NUMERIC___Student ID_02___3": 26, "0___NUMERIC___Student ID_02___4": 27, "0___NUMERIC___Student ID_02___5": 28, "0___NUMERIC___Student ID_02___6": 29, "0___NUMERIC___Student ID_02___7": 30, "0___NUMERIC___Student ID_02___8": 31, "0___NUMERIC___Student ID_02___9": 32, "0___NUMERIC___Student ID_03___0": 33, "0___NUMERIC___Student ID_03___1": 34, "0___NUMERIC___Student ID_03___2": 35, "0___NUMERIC___Student ID_03___3": 36, "0___NUMERIC___Student ID_03___4": 37, "0___NUMERIC___Student ID_03___5": 38, "0___NUMERIC___Student ID_03___6": 39, "0___NUMERIC___Student ID_03___7": 40, "0___NUMERIC___Student ID_03___8": 41, "0___NUMERIC___Student ID_03___9": 42, "1___CATEGORICAL___Student Country___Ireland": 43, "1___CATEGORICAL___Student Country___Italy": 44, "1___CATEGORICAL___Student Country___Lithuania": 45, "1___CATEGORICAL___Student Country___Portugal": 46, "1___CATEGORICAL___Student Country___Romania": 47, "1___CATEGORICAL___Student Country___Russian Federation": 48, "1___CATEGORICAL___Student Country___Slovenia": 49, "1___CATEGORICAL___Student Country___Spain": 50, "2___NUMERIC___Question ID_00___0": 51, "2___NUMERIC___Question ID_00___1": 52, "2___NUMERIC___Question ID_01___0": 53, "2___NUMERIC___Question ID_01___1": 54, "2___NUMERIC___Question ID_01___2": 55, "2___NUMERIC___Question ID_01___3": 56, "2___NUMERIC___Question ID_01___4": 57, "2___NUMERIC___Question ID_01___5": 58, "2___NUMERIC___Question ID_01___6": 59, "2___NUMERIC___Question ID_01___7": 60, "2___NUMERIC___Question ID_01___8": 61, "2___NUMERIC___Question ID_01___9": 62, "2___NUMERIC___Question ID_02___0": 63, "2___NUMERIC___Question ID_02___1": 64, "2___NUMERIC___Question ID_02___2": 65, "2___NUMERIC___Question ID_02___3": 66, "2___NUMERIC___Question ID_02___4": 67, "2___NUMERIC___Question ID_02___5": 68, "2___NUMERIC___Question ID_02___6": 69, "2___NUMERIC___Question ID_02___7": 70, "2___NUMERIC___Question ID_02___8": 71, "2___NUMERIC___Question ID_02___9": 72, "2___NUMERIC___Question ID_03___0": 73, "2___NUMERIC___Question ID_03___1": 74, "2___NUMERIC___Question ID_03___2": 75, "2___NUMERIC___Question ID_03___3": 76, "2___NUMERIC___Question ID_03___4": 77, "2___NUMERIC___Question ID_03___5": 78, "2___NUMERIC___Question ID_03___6": 79, "2___NUMERIC___Question ID_03___7": 80, "2___NUMERIC___Question ID_03___8": 81, "2___NUMERIC___Question ID_03___9": 82, "3___CATEGORICAL___Type of Answer___0": 83, "3___CATEGORICAL___Type of Answer___1": 84, "4___CATEGORICAL___Question Level___Advanced": 85, "4___CATEGORICAL___Question Level___Basic": 86, "5___CATEGORICAL___Topic___Analytic Geometry": 87, "5___CATEGORICAL___Topic___Complex Numbers": 88, "5___CATEGORICAL___Topic___Differential Equations": 89, "5___CATEGORICAL___Topic___Differentiation": 90, "5___CATEGORICAL___Topic___Fundamental Mathematics": 91, "5___CATEGORICAL___Topic___Graph Theory": 92, "5___CATEGORICAL___Topic___Integration": 93, "5___CATEGORICAL___Topic___Linear Algebra": 94, "5___CATEGORICAL___Topic___Numerical Methods": 95, "5___CATEGORICAL___Topic___Optimization": 96, "5___CATEGORICAL___Topic___Probability": 97, "5___CATEGORICAL___Topic___Real Functions of a single variable": 98, "5___CATEGORICAL___Topic___Set Theory": 99, "5___CATEGORICAL___Topic___Statistics": 100, "6___CATEGORICAL___Subtopic___Algebraic expressions, Equations, and Inequalities": 101, "6___CATEGORICAL___Subtopic___Analytic Geometry": 102, "6___CATEGORICAL___Subtopic___Complex Numbers": 103, "6___CATEGORICAL___Subtopic___Definite Integrals": 104, "6___CATEGORICAL___Subtopic___Derivatives": 105, "6___CATEGORICAL___Subtopic___Differential Equations": 106, "6___CATEGORICAL___Subtopic___Domain, Image and Graphics": 107, "6___CATEGORICAL___Subtopic___Double Integration": 108, "6___CATEGORICAL___Subtopic___Eigenvalues and Eigenvectors": 109, "6___CATEGORICAL___Subtopic___Elementary Geometry": 110, "6___CATEGORICAL___Subtopic___Graph Theory": 111, "6___CATEGORICAL___Subtopic___Integration Techniques": 112, "6___CATEGORICAL___Subtopic___Limits and Continuity": 113, "6___CATEGORICAL___Subtopic___Linear Optimization": 114, "6___CATEGORICAL___Subtopic___Linear Systems": 115, "6___CATEGORICAL___Subtopic___Linear Transformations": 116, "6___CATEGORICAL___Subtopic___Matrices and Determinants": 117, "6___CATEGORICAL___Subtopic___Nonlinear Optimization": 118, "6___CATEGORICAL___Subtopic___Numerical Methods": 119, "6___CATEGORICAL___Subtopic___Partial Differentiation": 120, "6___CATEGORICAL___Subtopic___Probability": 121, "6___CATEGORICAL___Subtopic___Set Theory": 122, "6___CATEGORICAL___Subtopic___Statistics": 123, "6___CATEGORICAL___Subtopic___Vector Spaces": 124, "7___CATEGORICAL___Keywords___Addition, multiplication, and total probability rules": 125, "7___CATEGORICAL___Keywords___Addition, multiplication, and total probability rules,Independence,Event": 126, "7___CATEGORICAL___Keywords___Addition, multiplication, and total probability rules,Sample space,Event,Axioms of probability": 127, "7___CATEGORICAL___Keywords___Adjacency matrix": 128, "7___CATEGORICAL___Keywords___Adjacency matrix,Simple graph": 129, "7___CATEGORICAL___Keywords___Algebraic form,Principal argument,De Moivre formulas,Polar representation,Operations with complex numbers,Modulus of a complex number,Trigonometric form": 130, "7___CATEGORICAL___Keywords___Algebraic form,Principal argument,De Moivre formulas,Polar representation,Trigonometric form,Operations with complex numbers,Modulus of a complex number": 131, "7___CATEGORICAL___Keywords___Algebraic form,Real part,Equations involving complex numbers,Imaginary part,Conjugate number,Modulus of a complex number": 132, "7___CATEGORICAL___Keywords___Area of a planar region ,Fundamental theorem of Calculus": 133, "7___CATEGORICAL___Keywords___Axioms of probability,Event,Addition, multiplication, and total probability rules,Sample space": 134, "7___CATEGORICAL___Keywords___Axioms of probability,Event,Independence,Addition, multiplication, and total probability rules,Sample space": 135, "7___CATEGORICAL___Keywords___Basis": 136, "7___CATEGORICAL___Keywords___Basis,Dimension": 137, "7___CATEGORICAL___Keywords___Basis,Span": 138, "7___CATEGORICAL___Keywords___Basis,Span,Change-of-basis matrix": 139, "7___CATEGORICAL___Keywords___Basis,Span,Subspace,Linear combination,Dimension": 140, "7___CATEGORICAL___Keywords___Bayes' Theorem,Conditional probability": 141, "7___CATEGORICAL___Keywords___Bernoulli equation,Linear differential equation": 142, "7___CATEGORICAL___Keywords___Cartesian coordinates,x-simple region (type II),Changing order of integration": 143, "7___CATEGORICAL___Keywords___Cartesian equations of a line,Orthogonality,Collinearity": 144, "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Cartesian equations of a line": 145, "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Cartesian equations of a line,Collinearity": 146, "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Intersection,Cartesian equations of a line": 147, "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Locus,Intersection,Cartesian equations of a line": 148, "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Orthogonality": 149, "7___CATEGORICAL___Keywords___Cartesian equations of a plane,Orthogonality,Locus,Distance": 150, "7___CATEGORICAL___Keywords___Cauchy problem,Exact differential form": 151, "7___CATEGORICAL___Keywords___Chain rule": 152, "7___CATEGORICAL___Keywords___Change-of-basis matrix,Span,Basis,Dimension": 153, "7___CATEGORICAL___Keywords___Changing order of integration,Cartesian coordinates": 154, "7___CATEGORICAL___Keywords___Characteristic polynomial,Eigenvalue,Diagonalization,Eigenvector,Spectrum": 155, "7___CATEGORICAL___Keywords___Chi square distribution,Student distribution,Quantile,Hypothesis testing": 156, "7___CATEGORICAL___Keywords___Chromatic number": 157, "7___CATEGORICAL___Keywords___Collinearity,Distance,Locus,Cross product,Orthogonality,Scalar product": 158, "7___CATEGORICAL___Keywords___Collinearity,Locus,Orthogonality,Orthogonal projection,Scalar product,Distance": 159, "7___CATEGORICAL___Keywords___Collinearity,Orthogonality,Distance,Scalar product": 160, "7___CATEGORICAL___Keywords___Commuting matrices,Solve matrix equation,Matrix equivalent - echelon,Determinant computation,Matrix rank,Inverse matrix ,Determinant properties,Hermitian matrix,Matrix multiplication,Linearly independent rows,Symmetric matrix,Matrix operations": 161, "7___CATEGORICAL___Keywords___Commuting matrices,Solve matrix equation,Matrix equivalent - echelon,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties,Hermitian matrix,Matrix multiplication,Linearly independent rows,Symmetric matrix,Matrix operations": 162, "7___CATEGORICAL___Keywords___Commuting matrices,Solve matrix equation,Matrix equivalent - echelon,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties,Hermitian matrix,Symmetric matrix,Matrix multiplication,Linearly independent rows,Matrix operations": 163, "7___CATEGORICAL___Keywords___Complex plane": 164, "7___CATEGORICAL___Keywords___Conditional probability": 165, "7___CATEGORICAL___Keywords___Conditional probability,Bayes' Theorem": 166, "7___CATEGORICAL___Keywords___Conjugate number,Modulus of a complex number,Algebraic form,Real part,Equations involving complex numbers,Imaginary part": 167, "7___CATEGORICAL___Keywords___Conjugate number,Operations with complex numbers": 168, "7___CATEGORICAL___Keywords___Conjugate number,Real part,De Moivre formulas,Operations with complex numbers,Imaginary part": 169, "7___CATEGORICAL___Keywords___Conjugate number,Real part,Operations with complex numbers,Imaginary part,Modulus of a complex number": 170, "7___CATEGORICAL___Keywords___Conjugate number,Real part,Operations with complex numbers,Modulus of a complex number,Imaginary part": 171, "7___CATEGORICAL___Keywords___Consistent system,Inconsistent system,Solution of linear system,Undetermined solution of linear system": 172, "7___CATEGORICAL___Keywords___Consistent system,Square linear system,Inconsistent system,Solution of linear system,Undetermined solution of linear system": 173, "7___CATEGORICAL___Keywords___Continuity,Limits": 174, "7___CATEGORICAL___Keywords___Cross product,Cartesian equations of a plane,Orthogonality,Cartesian equations of a line": 175, "7___CATEGORICAL___Keywords___Cross product,Orthogonality": 176, "7___CATEGORICAL___Keywords___Cross product,Orthogonality,Scalar product": 177, "7___CATEGORICAL___Keywords___Cycle and circuit,Shortest path,Path,Planar graph,Tree,Adjacency matrix,Chromatic number,Simple graph,Spanning tree,Incidence matrix": 178, "7___CATEGORICAL___Keywords___Determinant computation,Determinant properties": 179, "7___CATEGORICAL___Keywords___Determinant computation,Determinant properties,Inverse matrix ,Matrix operations": 180, "7___CATEGORICAL___Keywords___Determinant computation,Determinant properties,Solve matrix equation": 181, "7___CATEGORICAL___Keywords___Determinant properties,Inverse matrix ,Solve matrix equation,Matrix rank,Matrix operations,Matrix multiplication,Symmetric matrix,Commuting matrices,Determinant computation": 182, "7___CATEGORICAL___Keywords___Determinant properties,Symmetric matrix,Inverse matrix ,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank,Determinant computation,Matrix multiplication": 183, "7___CATEGORICAL___Keywords___Direct inspection": 184, "7___CATEGORICAL___Keywords___Direct inspection,Simple integration": 185, "7___CATEGORICAL___Keywords___Direct integrals ,Fundamental theorem of Calculus": 186, "7___CATEGORICAL___Keywords___Directional derivative,Gradient": 187, "7___CATEGORICAL___Keywords___Directional derivative,Gradient,First order,Second order": 188, "7___CATEGORICAL___Keywords___Distance,Cross product,Orthogonality": 189, "7___CATEGORICAL___Keywords___Distance,Orthogonal projection,Orthogonality": 190, "7___CATEGORICAL___Keywords___Distance,Orthogonality,Locus": 191, "7___CATEGORICAL___Keywords___Distance,Scalar product,Cross product,Orthogonal projection,Orthogonality,Collinearity,Locus": 192, "7___CATEGORICAL___Keywords___Distance,Scalar product,Cross product,Orthogonality": 193, "7___CATEGORICAL___Keywords___Domain": 194, "7___CATEGORICAL___Keywords___Domain,Image of a function": 195, "7___CATEGORICAL___Keywords___Duality theory,Excel solver add-in,Simplex method,Linear programming,Sensitivity analysis,Postoptimality analysis": 196, "7___CATEGORICAL___Keywords___Duality theory,Linear programming": 197, "7___CATEGORICAL___Keywords___Eigenvalue,Diagonalization,Spectrum,Characteristic polynomial": 198, "7___CATEGORICAL___Keywords___Eigenvalue,Eigenvector": 199, "7___CATEGORICAL___Keywords___Eigenvalue,Eigenvector,Diagonalization": 200, "7___CATEGORICAL___Keywords___Eigenvalue,Eigenvector,Spectrum,Characteristic polynomial": 201, "7___CATEGORICAL___Keywords___Eigenvalue,Spectrum,Characteristic polynomial": 202, "7___CATEGORICAL___Keywords___Eigenvalue,Spectrum,Diagonalization,Characteristic polynomial": 203, "7___CATEGORICAL___Keywords___Eigenvalue,Spectrum,Eigenvector,Characteristic polynomial": 204, "7___CATEGORICAL___Keywords___Eigenvector,Eigenvalue": 205, "7___CATEGORICAL___Keywords___Eigenvector,Spectrum,Characteristic polynomial,Diagonalization,Eigenvalue": 206, "7___CATEGORICAL___Keywords___Eigenvector,Spectrum,Characteristic polynomial,Eigenvalue": 207, "7___CATEGORICAL___Keywords___Eigenvector,Spectrum,Characteristic polynomial,Eigenvalue,Diagonalization": 208, "7___CATEGORICAL___Keywords___Equations involving complex numbers,Imaginary part,Modulus of a complex number,Conjugate number,Algebraic form,Real part": 209, "7___CATEGORICAL___Keywords___Euclidean spaces,Orthogonal basis": 210, "7___CATEGORICAL___Keywords___Euclidean spaces,Orthogonal basis,Basis": 211, "7___CATEGORICAL___Keywords___Event,Addition, multiplication, and total probability rules,Independence": 212, "7___CATEGORICAL___Keywords___Event,Addition, multiplication, and total probability rules,Sample space": 213, "7___CATEGORICAL___Keywords___Event,Axioms of probability": 214, "7___CATEGORICAL___Keywords___Event,Axioms of probability,Addition, multiplication, and total probability rules,Sample space": 215, "7___CATEGORICAL___Keywords___Event,Axioms of probability,Sample space": 216, "7___CATEGORICAL___Keywords___Event,Independence,Addition, multiplication, and total probability rules": 217, "7___CATEGORICAL___Keywords___Event,Sample space": 218, "7___CATEGORICAL___Keywords___Event,Sample space,Addition, multiplication, and total probability rules,Axioms of probability": 219, "7___CATEGORICAL___Keywords___Exact differential form,Cauchy problem": 220, "7___CATEGORICAL___Keywords___Excel solver add-in,Simplex method,Linear programming": 221, "7___CATEGORICAL___Keywords___Excel solver add-in,Simplex method,Linear programming,Transportation problem": 222, "7___CATEGORICAL___Keywords___Exponential function,Simplify expressions": 223, "7___CATEGORICAL___Keywords___Exponential rule": 224, "7___CATEGORICAL___Keywords___First order": 225, "7___CATEGORICAL___Keywords___First order,Directional derivative": 226, "7___CATEGORICAL___Keywords___First order,Directional derivative,Gradient": 227, "7___CATEGORICAL___Keywords___First order,Gradient": 228, "7___CATEGORICAL___Keywords___First order,Second order": 229, "7___CATEGORICAL___Keywords___Frequency,Mode,Quantile,Population,Data type,Sample,Relative frequency,Mean,Standard deviation,Variance,Median": 230, "7___CATEGORICAL___Keywords___Frequency,Quantile,Mean,Variance,Median,Mode": 231, "7___CATEGORICAL___Keywords___Frequency,Sample,Stem and Leaf diagram,Variance,Standard deviation,Relative frequency": 232, "7___CATEGORICAL___Keywords___Fundamental theorem of Calculus,Volume of revolution": 233, "7___CATEGORICAL___Keywords___Geometric solids": 234, "7___CATEGORICAL___Keywords___Geometric solids,Geometrical figures,Classification of geometric solids": 235, "7___CATEGORICAL___Keywords___Geometrical figures": 236, "7___CATEGORICAL___Keywords___Geometrical figures,Polygons": 237, "7___CATEGORICAL___Keywords___Geometrical figures,Quadrilaterals,Rhombus": 238, "7___CATEGORICAL___Keywords___Geometrical figures,Triangles,Classification of geometrical figures": 239, "7___CATEGORICAL___Keywords___Gradient,Directional derivative": 240, "7___CATEGORICAL___Keywords___Gradient,First order": 241, "7___CATEGORICAL___Keywords___Gradient,First order,Directional derivative": 242, "7___CATEGORICAL___Keywords___Graphical method,Linear programming": 243, "7___CATEGORICAL___Keywords___Homogeneous equation": 244, "7___CATEGORICAL___Keywords___Homogeneous equation,Cauchy problem": 245, "7___CATEGORICAL___Keywords___Imaginary part,Complex plane ,Real part": 246, "7___CATEGORICAL___Keywords___Imaginary part,Conjugate number,Modulus of a complex number,Algebraic form,Real part,Equations involving complex numbers": 247, "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Algebraic form,Conjugate number,Real part,Equations involving complex numbers": 248, "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Conjugate number,Algebraic form,Operations with complex numbers,Real part,Equations involving complex numbers": 249, "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Conjugate number,Operations with complex numbers,Real part": 250, "7___CATEGORICAL___Keywords___Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part": 251, "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Consistent system": 252, "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Consistent system,Square linear system": 253, "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Homogeneous system,Consistent system": 254, "7___CATEGORICAL___Keywords___Inconsistent system,Solution of linear system,Undetermined solution of linear system,Square linear system,Consistent system": 255, "7___CATEGORICAL___Keywords___Inconsistent system,Square linear system,Solution of linear system,Undetermined solution of linear system,Consistent system": 256, "7___CATEGORICAL___Keywords___Indeterminate forms,Limits": 257, "7___CATEGORICAL___Keywords___Injective linear application,Invertible linear operator,Isomorphism": 258, "7___CATEGORICAL___Keywords___Injective linear application,Invertible linear operator,Range,Kernel,Isomorphism": 259, "7___CATEGORICAL___Keywords___Injective linear application,Isomorphism": 260, "7___CATEGORICAL___Keywords___Injective linear application,Range,Kernel,Isomorphism": 261, "7___CATEGORICAL___Keywords___Integration by parts": 262, "7___CATEGORICAL___Keywords___Integration by parts,Fundamental theorem of Calculus": 263, "7___CATEGORICAL___Keywords___Integration by parts,Substitution,Simple integration,Direct inspection": 264, "7___CATEGORICAL___Keywords___Intersection,Cartesian equations of a plane": 265, "7___CATEGORICAL___Keywords___Inverse matrix ,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank,Determinant computation,Matrix multiplication,Determinant properties,Symmetric matrix": 266, "7___CATEGORICAL___Keywords___Inverse matrix ,Determinant computation,Determinant properties,Matrix operations": 267, "7___CATEGORICAL___Keywords___Invertible linear operator,Isomorphism,Injective linear application": 268, "7___CATEGORICAL___Keywords___Iterate integrals": 269, "7___CATEGORICAL___Keywords___Iterate integrals,Area ,y-simple region (type I),Cartesian coordinates": 270, "7___CATEGORICAL___Keywords___Iterate integrals,Cartesian coordinates,y-simple region (type I)": 271, "7___CATEGORICAL___Keywords___Kernel,Isomorphism,Injective linear application,Range": 272, "7___CATEGORICAL___Keywords___Lagrange multipliers,Maximum,Minimum": 273, "7___CATEGORICAL___Keywords___Lagrange multipliers,Minimum,Maximum,Stationary point": 274, "7___CATEGORICAL___Keywords___Lagrange multipliers,Optimal solution,Minimum,Maximum": 275, "7___CATEGORICAL___Keywords___Lagrange's interpolation,Polynomial interpolation": 276, "7___CATEGORICAL___Keywords___Limits": 277, "7___CATEGORICAL___Keywords___Limits,Indeterminate forms": 278, "7___CATEGORICAL___Keywords___Linear application,Composition of linear applications": 279, "7___CATEGORICAL___Keywords___Linear application,Linearity": 280, "7___CATEGORICAL___Keywords___Linear combination,Span": 281, "7___CATEGORICAL___Keywords___Linear combination,Subspace,Span": 282, "7___CATEGORICAL___Keywords___Linear differential equation": 283, "7___CATEGORICAL___Keywords___Linear differential equation,Homogeneous equation": 284, "7___CATEGORICAL___Keywords___Linear differential equation,Integral curve,Cauchy problem": 285, "7___CATEGORICAL___Keywords___Linear equations,Quadratic equations,Simplify expressions": 286, "7___CATEGORICAL___Keywords___Linear independence,Span,Linear dependence": 287, "7___CATEGORICAL___Keywords___Linear independence,Subspace,Linear combination,Linear dependence,Span": 288, "7___CATEGORICAL___Keywords___Linear programming": 289, "7___CATEGORICAL___Keywords___Linear programming,Assignment problem,Excel solver add-in,Simplex method": 290, "7___CATEGORICAL___Keywords___Linear programming,Excel solver add-in,Simplex method": 291, "7___CATEGORICAL___Keywords___Linear regression": 292, "7___CATEGORICAL___Keywords___Linearity,Invertible linear operator,Composition of linear applications,Linear application": 293, "7___CATEGORICAL___Keywords___Linearity,Linear application": 294, "7___CATEGORICAL___Keywords___Linearity,Matrix of a linear transformation,Linear application": 295, "7___CATEGORICAL___Keywords___Linearly independent rows,Matrix multiplication,Symmetric matrix,Matrix operations,Commuting matrices,Solve matrix equation,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties": 296, "7___CATEGORICAL___Keywords___Linearly independent rows,Matrix rank": 297, "7___CATEGORICAL___Keywords___Locus,Distance": 298, "7___CATEGORICAL___Keywords___Locus,Distance,Scalar product,Cross product,Orthogonality,Collinearity": 299, "7___CATEGORICAL___Keywords___Locus,Scalar product,Cross product,Distance,Collinearity,Orthogonality": 300, "7___CATEGORICAL___Keywords___Logarithmic function,Exponential function,Simplify expressions": 301, "7___CATEGORICAL___Keywords___Logarithmic rule,Power rule,Exponential rule,Trigonometric rules,Product rule": 302, "7___CATEGORICAL___Keywords___Logarithmic rule,Power rule,Trigonometric rules": 303, "7___CATEGORICAL___Keywords___Logarithmic rule,Product rule,Trigonometric rules": 304, "7___CATEGORICAL___Keywords___Logarithmic rule,Trigonometric rules": 305, "7___CATEGORICAL___Keywords___Matrix equivalent - echelon,Matrix rank,Matrix operations,Hermitian matrix,Matrix multiplication,Symmetric matrix,Linearly independent rows,Commuting matrices,Determinant computation,Determinant properties,Inverse matrix ,Solve matrix equation": 306, "7___CATEGORICAL___Keywords___Matrix equivalent - echelon,Matrix rank,Matrix operations,Matrix multiplication,Symmetric matrix,Linearly independent rows,Determinant computation,Commuting matrices,Determinant properties,Inverse matrix ,Solve matrix equation": 307, "7___CATEGORICAL___Keywords___Matrix multiplication,Determinant computation,Determinant properties,Symmetric matrix,Hermitian matrix,Inverse matrix ,Linearly independent rows,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank,Matrix equivalent - echelon": 308, "7___CATEGORICAL___Keywords___Matrix multiplication,Determinant computation,Determinant properties,Symmetric matrix,Inverse matrix ,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank": 309, "7___CATEGORICAL___Keywords___Matrix multiplication,Determinant computation,Determinant properties,Symmetric matrix,Inverse matrix ,Linearly independent rows,Commuting matrices,Solve matrix equation,Matrix operations,Matrix rank": 310, "7___CATEGORICAL___Keywords___Matrix multiplication,Symmetric matrix,Matrix operations": 311, "7___CATEGORICAL___Keywords___Matrix multiplication,Symmetric matrix,Matrix operations,Commuting matrices,Solve matrix equation,Inverse matrix ,Determinant computation,Matrix rank,Determinant properties": 312, "7___CATEGORICAL___Keywords___Matrix of a linear transformation": 313, "7___CATEGORICAL___Keywords___Matrix of a linear transformation,Linear application,Linearity": 314, "7___CATEGORICAL___Keywords___Matrix operations,Commuting matrices,Solve matrix equation,Determinant computation,Inverse matrix ,Matrix rank,Determinant properties,Matrix multiplication,Symmetric matrix": 315, "7___CATEGORICAL___Keywords___Matrix operations,Determinant computation,Determinant properties,Inverse matrix": 316, "7___CATEGORICAL___Keywords___Matrix operations,Inverse matrix": 317, "7___CATEGORICAL___Keywords___Matrix operations,Matrix multiplication": 318, "7___CATEGORICAL___Keywords___Matrix operations,Matrix multiplication,Determinant computation,Determinant properties": 319, "7___CATEGORICAL___Keywords___Matrix rank,Linearly independent rows": 320, "7___CATEGORICAL___Keywords___Matrix rank,Matrix operations,Matrix multiplication,Symmetric matrix,Determinant computation,Commuting matrices,Determinant properties,Inverse matrix ,Solve matrix equation": 321, "7___CATEGORICAL___Keywords___Mean,Median,Mode": 322, "7___CATEGORICAL___Keywords___Mean,Median,Outliers,Interquartile range": 323, "7___CATEGORICAL___Keywords___Mean,Variance,Standard deviation,Median,Mode": 324, "7___CATEGORICAL___Keywords___Median,Frequency,Mode,Quantile,Population,Data type,Sample,Relative frequency,Mean,Standard deviation,Variance": 325, "7___CATEGORICAL___Keywords___Minimum,Maximum,Lagrange multipliers,Saddle point,Unconstrained optimization,Second derivative test": 326, "7___CATEGORICAL___Keywords___Minimum,Maximum,Stationary point,Second derivative test,Unconstrained optimization,Saddle point,Optimal solution": 327, "7___CATEGORICAL___Keywords___Minimum,Stationary point,Maximum,Saddle point,Optimal solution": 328, "7___CATEGORICAL___Keywords___Mode,Quantile,Population,Data type,Sample,Mean,Standard deviation,Variance,Median": 329, "7___CATEGORICAL___Keywords___Modulus of a complex number,Algebraic form,Real part,Equations involving complex numbers,Imaginary part,Conjugate number": 330, "7___CATEGORICAL___Keywords___Newton\u2019s interpolation,Polynomial interpolation": 331, "7___CATEGORICAL___Keywords___Newton\u2019s method,Nonlinear equation": 332, "7___CATEGORICAL___Keywords___Nonlinear equation,Newton\u2019s method": 333, "7___CATEGORICAL___Keywords___Nth root,Polar representation,Imaginary part,Complex plane ,Operations with complex numbers,Real part,Principal argument,De Moivre formulas": 334, "7___CATEGORICAL___Keywords___Nth root,Polar representation,Operations with complex numbers,Principal argument,De Moivre formulas": 335, "7___CATEGORICAL___Keywords___Operations with complex numbers": 336, "7___CATEGORICAL___Keywords___Operations with complex numbers,Conjugate number": 337, "7___CATEGORICAL___Keywords___Operations with complex numbers,Imaginary part,Modulus of a complex number,Conjugate number,Real part": 338, "7___CATEGORICAL___Keywords___Operations with complex numbers,Modulus of a complex number,Algebraic form,Principal argument,De Moivre formulas,Polar representation,Trigonometric form": 339, "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Maximum": 340, "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Maximum,Second derivative test,Stationary point,Unconstrained optimization,Saddle point": 341, "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Maximum,Stationary point,Saddle point": 342, "7___CATEGORICAL___Keywords___Optimal solution,Minimum,Stationary point,Maximum,Saddle point": 343, "7___CATEGORICAL___Keywords___Optimal solution,Second derivative test,Minimum,Maximum,Stationary point,Saddle point": 344, "7___CATEGORICAL___Keywords___Optimal solution,Stationary point,Minimum,Maximum,Saddle point": 345, "7___CATEGORICAL___Keywords___Orthogonal projection,Distance,Cross product,Orthogonality": 346, "7___CATEGORICAL___Keywords___Orthogonality": 347, "7___CATEGORICAL___Keywords___Orthogonality,Cross product": 348, "7___CATEGORICAL___Keywords___Orthogonality,Cross product,Distance": 349, "7___CATEGORICAL___Keywords___Orthogonality,Distance,Cross product": 350, "7___CATEGORICAL___Keywords___Orthogonality,Distance,Scalar product": 351, "7___CATEGORICAL___Keywords___Orthogonality,Locus,Scalar product,Cross product,Collinearity": 352, "7___CATEGORICAL___Keywords___Orthogonality,Orthogonal projection,Cross product,Scalar product": 353, "7___CATEGORICAL___Keywords___Orthogonality,Orthogonal projection,Distance": 354, "7___CATEGORICAL___Keywords___Orthogonality,Scalar product": 355, "7___CATEGORICAL___Keywords___Path,Cycle and circuit": 356, "7___CATEGORICAL___Keywords___Path,Simple graph,Cycle and circuit": 357, "7___CATEGORICAL___Keywords___Planar graph": 358, "7___CATEGORICAL___Keywords___Platonic solids": 359, "7___CATEGORICAL___Keywords___Platonic solids,Regular polygon": 360, "7___CATEGORICAL___Keywords___Polar representation,Trigonometric form,Modulus of a complex number,Operations with complex numbers,Algebraic form,Principal argument,De Moivre formulas": 361, "7___CATEGORICAL___Keywords___Polygons": 362, "7___CATEGORICAL___Keywords___Polygons,Geometric transformations,Geometrical figures": 363, "7___CATEGORICAL___Keywords___Polygons,Geometrical figures": 364, "7___CATEGORICAL___Keywords___Polygons,Regular polygon": 365, "7___CATEGORICAL___Keywords___Polygons,Triangles": 366, "7___CATEGORICAL___Keywords___Polyhedrons,Geometric solids,Classification of geometric solids": 367, "7___CATEGORICAL___Keywords___Polyhedrons,Platonic solids,Geometric solids": 368, "7___CATEGORICAL___Keywords___Polynomial interpolation,Lagrange's interpolation": 369, "7___CATEGORICAL___Keywords___Polynomial interpolation,Newton\u2019s interpolation": 370, "7___CATEGORICAL___Keywords___Population,Sample": 371, "7___CATEGORICAL___Keywords___Population,Variance,Median,Standard deviation,Mode,Quantile,Sample,Mean": 372, "7___CATEGORICAL___Keywords___Postoptimality analysis,Duality theory,Excel solver add-in,Simplex method,Linear programming,Sensitivity analysis": 373, "7___CATEGORICAL___Keywords___Power of trigonometric functions": 374, "7___CATEGORICAL___Keywords___Power rule,Product rule": 375, "7___CATEGORICAL___Keywords___Power rule,Quotient rule,Product rule,Trigonometric rules": 376, "7___CATEGORICAL___Keywords___Power rule,Trigonometric rules,Logarithmic rule": 377, "7___CATEGORICAL___Keywords___Power rule,Trigonometric rules,Logarithmic rule,First order": 378, "7___CATEGORICAL___Keywords___Principal argument,Trigonometric form,Modulus of a complex number,Algebraic form": 379, "7___CATEGORICAL___Keywords___Product rule,Logarithmic rule,Trigonometric rules": 380, "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules": 381, "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules,Exponential rule": 382, "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules,Logarithmic rule": 383, "7___CATEGORICAL___Keywords___Product rule,Trigonometric rules,Quotient rule": 384, "7___CATEGORICAL___Keywords___Quadratic equations,Simplify expressions,Linear equations": 385, "7___CATEGORICAL___Keywords___Quadrilaterals,Geometrical figures": 386, "7___CATEGORICAL___Keywords___Quadrilaterals,Geometrical figures,Classification of geometrical figures": 387, "7___CATEGORICAL___Keywords___Quadrilaterals,Polygons,Classification of geometrical figures,Geometrical figures": 388, "7___CATEGORICAL___Keywords___Quadrilaterals,Rhombus": 389, "7___CATEGORICAL___Keywords___Quantile,Frequency,Sample,Mean,Variance,Standard deviation,Median,Mode": 390, "7___CATEGORICAL___Keywords___Quantile,Population,Sample,Mean,Variance,Standard deviation,Median,Mode": 391, "7___CATEGORICAL___Keywords___Quotient rule": 392, "7___CATEGORICAL___Keywords___Quotient rule,Product rule,Power rule,Trigonometric rules": 393, "7___CATEGORICAL___Keywords___Quotient rule,Product rule,Trigonometric rules": 394, "7___CATEGORICAL___Keywords___Quotient rule,Trigonometric rules": 395, "7___CATEGORICAL___Keywords___Quotient rule,Trigonometric rules,Logarithmic rule,Product rule": 396, "7___CATEGORICAL___Keywords___Range,Kernel": 397, "7___CATEGORICAL___Keywords___Range,Kernel,Isomorphism": 398, "7___CATEGORICAL___Keywords___Range,Kernel,Isomorphism,Injective linear application": 399, "7___CATEGORICAL___Keywords___Range,Kernel,Matrix of a linear transformation": 400, "7___CATEGORICAL___Keywords___Rational functions": 401, "7___CATEGORICAL___Keywords___Real part,Operations with complex numbers,Imaginary part,Modulus of a complex number,Conjugate number": 402, "7___CATEGORICAL___Keywords___Rotation,Linear application": 403, "7___CATEGORICAL___Keywords___Saddle point,Optimal solution,Minimum,Maximum,Stationary point": 404, "7___CATEGORICAL___Keywords___Sample space,Addition, multiplication, and total probability rules,Axioms of probability,Event": 405, "7___CATEGORICAL___Keywords___Sample space,Addition, multiplication, and total probability rules,Event,Axioms of probability": 406, "7___CATEGORICAL___Keywords___Sample space,Event": 407, "7___CATEGORICAL___Keywords___Sample,Population,Mean,Variance,Standard deviation,Median,Mode,Quantile": 408, "7___CATEGORICAL___Keywords___Scalar product,Orthogonality,Orthogonal projection,Distance": 409, "7___CATEGORICAL___Keywords___Second order": 410, "7___CATEGORICAL___Keywords___Second order,First order": 411, "7___CATEGORICAL___Keywords___Sensitivity analysis,Postoptimality analysis,Duality theory,Excel solver add-in,Simplex method,Linear programming": 412, "7___CATEGORICAL___Keywords___Separable variables equation": 413, "7___CATEGORICAL___Keywords___Shortest path,Tree,Spanning tree,Path": 414, "7___CATEGORICAL___Keywords___Simple graph": 415, "7___CATEGORICAL___Keywords___Simple graph,Adjacency matrix": 416, "7___CATEGORICAL___Keywords___Simple integration,Direct inspection": 417, "7___CATEGORICAL___Keywords___Simplex method,Duality theory": 418, "7___CATEGORICAL___Keywords___Simplex method,Linear programming,Assignment problem,Excel solver add-in": 419, "7___CATEGORICAL___Keywords___Simplify expressions": 420, "7___CATEGORICAL___Keywords___Simplify expressions,Exponential function": 421, "7___CATEGORICAL___Keywords___Simplify expressions,Linear equations,Quadratic equations": 422, "7___CATEGORICAL___Keywords___Simplify expressions,Logarithmic function": 423, "7___CATEGORICAL___Keywords___Solution of linear system,Undetermined solution of linear system,Consistent system,Square linear system,Inconsistent system": 424, "7___CATEGORICAL___Keywords___Solution of linear system,Undetermined solution of linear system,Square linear system,Consistent system,Inconsistent system": 425, "7___CATEGORICAL___Keywords___Solve matrix equation,Matrix equivalent - echelon,Inverse matrix ,Determinant computation,Determinant properties,Matrix rank,Hermitian matrix,Matrix operations,Symmetric matrix,Matrix multiplication,Linearly independent rows,Commuting matrices": 426, "7___CATEGORICAL___Keywords___Span,Linear combination,Subspace": 427, "7___CATEGORICAL___Keywords___Span,Subspace,Linear combination": 428, "7___CATEGORICAL___Keywords___Spanning tree,Shortest path,Path,Tree": 429, "7___CATEGORICAL___Keywords___Spectrum,Characteristic polynomial,Diagonalization,Eigenvalue": 430, "7___CATEGORICAL___Keywords___Square linear system,Inconsistent system,Solution of linear system,Undetermined solution of linear system,Consistent system": 431, "7___CATEGORICAL___Keywords___Square roots,Simplify expressions": 432, "7___CATEGORICAL___Keywords___Standard deviation,Variance,Median,Frequency,Mode,Outliers,Quantile,Interquartile range,Population,Data type,Sample,Relative frequency,Mean": 433, "7___CATEGORICAL___Keywords___Stationary point,Maximum,Saddle point,Optimal solution,Minimum": 434, "7___CATEGORICAL___Keywords___Stationary point,Maximum,Saddle point,Second derivative test,Optimal solution,Minimum": 435, "7___CATEGORICAL___Keywords___Stationary point,Minimum,Optimal solution,Lagrange multipliers": 436, "7___CATEGORICAL___Keywords___Stem and Leaf diagram,Relative frequency,Sample,Frequency": 437, "7___CATEGORICAL___Keywords___Student distribution,Confidence interval,Point estimate,Hypothesis testing": 438, "7___CATEGORICAL___Keywords___Student distribution,Hypothesis testing": 439, "7___CATEGORICAL___Keywords___Subset": 440, "7___CATEGORICAL___Keywords___Subspace": 441, "7___CATEGORICAL___Keywords___Subspace,Basis,Dimension": 442, "7___CATEGORICAL___Keywords___Subspace,Change-of-basis matrix,Linear combination,Span,Basis": 443, "7___CATEGORICAL___Keywords___Subspace,Dimension": 444, "7___CATEGORICAL___Keywords___Subspace,Linear combination,Span": 445, "7___CATEGORICAL___Keywords___Subspace,Span,Linear combination": 446, "7___CATEGORICAL___Keywords___Substitution": 447, "7___CATEGORICAL___Keywords___Substitution,Direct inspection,Integration by parts,Rational functions": 448, "7___CATEGORICAL___Keywords___Substitution,Direct inspection,Simple integration": 449, "7___CATEGORICAL___Keywords___Symmetric matrix,Determinant computation,Determinant properties": 450, "7___CATEGORICAL___Keywords___Symmetric matrix,Inverse matrix ,Hermitian matrix,Commuting matrices,Linearly independent rows,Solve matrix equation,Matrix operations,Matrix rank,Matrix equivalent - echelon,Determinant computation,Matrix multiplication,Determinant properties": 451, "7___CATEGORICAL___Keywords___Symmetric matrix,Matrix multiplication,Matrix operations": 452, "7___CATEGORICAL___Keywords___Symmetry": 453, "7___CATEGORICAL___Keywords___Symmetry,Geometric transformations": 454, "7___CATEGORICAL___Keywords___Transportation problem,Excel solver add-in,Simplex method,Linear programming": 455, "7___CATEGORICAL___Keywords___Tree,Simple graph,Spanning tree,Path": 456, "7___CATEGORICAL___Keywords___Tree,Spanning tree": 457, "7___CATEGORICAL___Keywords___Triangle inequality,Triangles": 458, "7___CATEGORICAL___Keywords___Triangles": 459, "7___CATEGORICAL___Keywords___Triangles,Classification of geometrical figures,Geometrical figures": 460, "7___CATEGORICAL___Keywords___Triangles,Triangle inequality": 461, "7___CATEGORICAL___Keywords___Trigonometric form,Modulus of a complex number,Algebraic form": 462, "7___CATEGORICAL___Keywords___Trigonometric form,Operations with complex numbers,Modulus of a complex number,Algebraic form,Principal argument,De Moivre formulas,Polar representation": 463, "7___CATEGORICAL___Keywords___Trigonometric rules": 464, "7___CATEGORICAL___Keywords___Trigonometric rules,Logarithmic rule": 465, "7___CATEGORICAL___Keywords___Trigonometric rules,Power rule": 466, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule": 467, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Exponential rule": 468, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Logarithmic rule": 469, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Logarithmic rule,Exponential rule": 470, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Sum rule,Logarithmic rule,Power rule": 471, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Sum rule,Logarithmic rule,Power rule,Exponential rule": 472, "7___CATEGORICAL___Keywords___Trigonometric rules,Product rule,Sum rule,Power rule": 473, "7___CATEGORICAL___Keywords___Trigonometric rules,Quotient rule": 474, "7___CATEGORICAL___Keywords___Trigonometric substitution": 475, "7___CATEGORICAL___Keywords___Trigonometric substitution,Simple integration": 476, "7___CATEGORICAL___Keywords___Unconstrained optimization,Second derivative test,Optimal solution": 477, "7___CATEGORICAL___Keywords___Undetermined solution of linear system,Consistent system,Inconsistent system,Solution of linear system": 478, "7___CATEGORICAL___Keywords___Undetermined solution of linear system,Consistent system,Square linear system,Inconsistent system,Solution of linear system": 479, "7___CATEGORICAL___Keywords___Union of sets,Venn diagram,Complement of a set": 480, "7___CATEGORICAL___Keywords___Volume of revolution,Fundamental theorem of Calculus": 481, "7___CATEGORICAL___Keywords___y-simple region (type I),Area ,Cartesian coordinates": 482, "7___CATEGORICAL___Keywords___y-simple region (type I),Cartesian coordinates,Area ,Iterate integrals": 483, "7___CATEGORICAL___Keywords___y-simple region (type I),Cartesian coordinates,Iterate integrals": 484}, "column_token_ids": {"0___NUMERIC___Student ID_00": [11, 12], "0___NUMERIC___Student ID_01": [13, 14, 15, 16, 17, 18, 19, 20, 21, 22], "0___NUMERIC___Student ID_02": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "0___NUMERIC___Student ID_03": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "1___CATEGORICAL___Student Country": [43, 44, 45, 46, 47, 48, 49, 50], "2___NUMERIC___Question ID_00": [51, 52], "2___NUMERIC___Question ID_01": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62], "2___NUMERIC___Question ID_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "2___NUMERIC___Question ID_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "3___CATEGORICAL___Type of Answer": [83, 84], "4___CATEGORICAL___Question Level": [85, 86], "5___CATEGORICAL___Topic": [87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "6___CATEGORICAL___Subtopic": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124], "7___CATEGORICAL___Keywords": [125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484]}}, "tabular_max_length": 16, "relational_max_length": null, "tabular_col_size": 7636, "relational_col_size": null, "col_transform_data": {"Student ID": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "Question ID": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 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, 41, 42], "4": [43, 44, 45, 46, 47, 48, 49, 50], "5": [51, 52], "6": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62], "7": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "8": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "9": [83, 84], "10": [85, 86], "11": [87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "12": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124], "13": [125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017748030670275743744", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/models_100epochs/id000017748030670275743744/rtf_model.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/models_100epochs/id000017748030670275743744/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..72c6114c08ea8c978ad64d51730cdb113f3d679c --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/models_100epochs/id000017748030670275743744/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a872f93929efc687db0dae419256c3abe29548d93c4b5e4403e2f3fe97cffcf8 +size 174779875 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/public_gate_report.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eb42f0c93a3257dc6ceba420f0c8d55134083885 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/realtabformer_features.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/realtabformer_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-1000-20260330_005111.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-1000-20260330_005111.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4bed40f7f86d314eee17817256b7c2e247ea749 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-1000-20260330_005111.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ed10d141af10d000477f3445a54394475f8666591bb79e8f50920ad9b40863 +size 109373 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_073821.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_073821.csv new file mode 100644 index 0000000000000000000000000000000000000000..c26083dd8f011c802d419f73136df257a5e0182a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_073821.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bcf96f5a431a2d977ef249d7145d0f8fbaa9d5690bd3bb811f836ba6b7469f +size 844416 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_074524.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_074524.csv new file mode 100644 index 0000000000000000000000000000000000000000..61a7d3a97cf1095e91f4e28302c3894ea3ddbaed --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_074524.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20013ec7964a307fe6c54be5f6e4f3d6bdda18205227bb061d2bb3183a5aa59 +size 847395 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_083218.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_083218.csv new file mode 100644 index 0000000000000000000000000000000000000000..1027e79e9a9d40fb37578bc0568b9a4d4cf2cdfa --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_083218.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45505b55e69df903598bf778d35f471ec5b4df5ad0025938d38ef1f57d6f5be9 +size 846314 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc664521f815e55efb1e2ec57db59f2857c50993 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/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": 485 +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/generation_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/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/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/model.safetensors b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2e99e5d371d7b9f369469ec7dc8dcf5727543b6c --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6d36cafd5f087937b0d2e09f02c4d928957b1e8e0bb6a6d0291cc128a957db +size 174758344 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/optimizer.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..ab580afe46396b8725fa06317b695373daa5e549 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aadcc89c0e7eb683ab2272d7d1e98f0015e63b1e787c3ffbfa3ab1fb79ba2f74 +size 349565771 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/rng_state.pth b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..cf7023f1f092f0fbcef3c704be9883c59dcca7b3 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c03e4bf34602d03e8b7b1ae07cdf2875f49db493e460b79a90a8c488f2b2f9 +size 14645 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/scaler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..926837ea96844ba35bc461554bb1b5e667ce5496 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c42a70dbf45ae24dd7b4ed405abcd673708e29791a3328bff18f23e357ab0e7 +size 1383 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/scheduler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0d6b14632a1ea43e63a2a0a8ec9fb0c23adb1060 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c55838dd926412408de7f56a4f248552175f08c8c5f433ea40024b53a644fa2 +size 1465 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/trainer_state.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..bc9fbececb456d4e20e4ae0a01139a008a283aed --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/trainer_state.json @@ -0,0 +1,1679 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.32670157068063, + "eval_steps": 100, + "global_step": 23500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.418848167539267, + "grad_norm": 1.7357312440872192, + "learning_rate": 4.9792887029288705e-05, + "loss": 1.957039794921875, + "step": 100 + }, + { + "epoch": 0.837696335078534, + "grad_norm": 1.7951552867889404, + "learning_rate": 4.9583682008368206e-05, + "loss": 1.2064629364013673, + "step": 200 + }, + { + "epoch": 1.255497382198953, + "grad_norm": 1.674418330192566, + "learning_rate": 4.93744769874477e-05, + "loss": 1.0603108978271485, + "step": 300 + }, + { + "epoch": 1.67434554973822, + "grad_norm": 1.6522367000579834, + "learning_rate": 4.91652719665272e-05, + "loss": 0.9886434936523437, + "step": 400 + }, + { + "epoch": 2.0921465968586386, + "grad_norm": 1.483288288116455, + "learning_rate": 4.89560669456067e-05, + "loss": 0.9375139617919922, + "step": 500 + }, + { + "epoch": 2.510994764397906, + "grad_norm": 1.5848816633224487, + "learning_rate": 4.8746861924686196e-05, + "loss": 0.8872322082519531, + "step": 600 + }, + { + "epoch": 2.9298429319371726, + "grad_norm": 1.5845175981521606, + "learning_rate": 4.85376569037657e-05, + "loss": 0.8752645111083984, + "step": 700 + }, + { + "epoch": 3.3476439790575916, + "grad_norm": 1.454902172088623, + "learning_rate": 4.832845188284519e-05, + "loss": 0.8418380737304687, + "step": 800 + }, + { + "epoch": 3.7664921465968586, + "grad_norm": 1.3893290758132935, + "learning_rate": 4.8119246861924685e-05, + "loss": 0.8182624053955078, + "step": 900 + }, + { + "epoch": 4.184293193717277, + "grad_norm": 1.504209280014038, + "learning_rate": 4.7910041841004186e-05, + "loss": 0.8018088531494141, + "step": 1000 + }, + { + "epoch": 4.603141361256545, + "grad_norm": 1.6646430492401123, + "learning_rate": 4.770083682008368e-05, + "loss": 0.7877240753173829, + "step": 1100 + }, + { + "epoch": 5.020942408376963, + "grad_norm": 1.3648449182510376, + "learning_rate": 4.749163179916318e-05, + "loss": 0.7797740936279297, + "step": 1200 + }, + { + "epoch": 5.439790575916231, + "grad_norm": 1.410872459411621, + "learning_rate": 4.7282426778242675e-05, + "loss": 0.7617485809326172, + "step": 1300 + }, + { + "epoch": 5.858638743455497, + "grad_norm": 1.4345377683639526, + "learning_rate": 4.7073221757322176e-05, + "loss": 0.7631221771240234, + "step": 1400 + }, + { + "epoch": 6.276439790575917, + "grad_norm": 1.327006459236145, + "learning_rate": 4.686401673640168e-05, + "loss": 0.7484178161621093, + "step": 1500 + }, + { + "epoch": 6.695287958115183, + "grad_norm": 1.420089602470398, + "learning_rate": 4.665481171548117e-05, + "loss": 0.7441964721679688, + "step": 1600 + }, + { + "epoch": 7.113089005235602, + "grad_norm": 1.5513347387313843, + "learning_rate": 4.644560669456067e-05, + "loss": 0.7383489227294922, + "step": 1700 + }, + { + "epoch": 7.531937172774869, + "grad_norm": 1.3362606763839722, + "learning_rate": 4.6236401673640166e-05, + "loss": 0.7281642913818359, + "step": 1800 + }, + { + "epoch": 7.950785340314136, + "grad_norm": 1.2809451818466187, + "learning_rate": 4.602719665271967e-05, + "loss": 0.7310231018066407, + "step": 1900 + }, + { + "epoch": 8.368586387434554, + "grad_norm": 1.2832854986190796, + "learning_rate": 4.581799163179917e-05, + "loss": 0.7165196990966797, + "step": 2000 + }, + { + "epoch": 8.787434554973823, + "grad_norm": 1.1414157152175903, + "learning_rate": 4.560878661087866e-05, + "loss": 0.7179119873046875, + "step": 2100 + }, + { + "epoch": 9.205235602094241, + "grad_norm": 1.0745928287506104, + "learning_rate": 4.539958158995816e-05, + "loss": 0.7131906890869141, + "step": 2200 + }, + { + "epoch": 9.624083769633508, + "grad_norm": 1.1124597787857056, + "learning_rate": 4.519037656903766e-05, + "loss": 0.7061318206787109, + "step": 2300 + }, + { + "epoch": 10.041884816753926, + "grad_norm": 0.9845342040061951, + "learning_rate": 4.498117154811716e-05, + "loss": 0.7075148773193359, + "step": 2400 + }, + { + "epoch": 10.460732984293193, + "grad_norm": 1.1672662496566772, + "learning_rate": 4.477196652719666e-05, + "loss": 0.7008012390136719, + "step": 2500 + }, + { + "epoch": 10.879581151832461, + "grad_norm": 1.181514859199524, + "learning_rate": 4.456276150627615e-05, + "loss": 0.6990177154541015, + "step": 2600 + }, + { + "epoch": 11.29738219895288, + "grad_norm": 1.1406160593032837, + "learning_rate": 4.4353556485355653e-05, + "loss": 0.690523681640625, + "step": 2700 + }, + { + "epoch": 11.716230366492146, + "grad_norm": 1.1152310371398926, + "learning_rate": 4.414435146443515e-05, + "loss": 0.6935369110107422, + "step": 2800 + }, + { + "epoch": 12.134031413612565, + "grad_norm": 1.283378005027771, + "learning_rate": 4.393514644351465e-05, + "loss": 0.6885635375976562, + "step": 2900 + }, + { + "epoch": 12.552879581151833, + "grad_norm": 1.2980977296829224, + "learning_rate": 4.372594142259415e-05, + "loss": 0.6849569702148437, + "step": 3000 + }, + { + "epoch": 12.9717277486911, + "grad_norm": 1.1399869918823242, + "learning_rate": 4.3516736401673643e-05, + "loss": 0.6880906677246094, + "step": 3100 + }, + { + "epoch": 13.389528795811518, + "grad_norm": 1.2640913724899292, + "learning_rate": 4.3307531380753144e-05, + "loss": 0.6769008636474609, + "step": 3200 + }, + { + "epoch": 13.808376963350785, + "grad_norm": 1.2051986455917358, + "learning_rate": 4.309832635983264e-05, + "loss": 0.6841930389404297, + "step": 3300 + }, + { + "epoch": 14.226178010471203, + "grad_norm": 1.5682283639907837, + "learning_rate": 4.288912133891214e-05, + "loss": 0.6762271118164063, + "step": 3400 + }, + { + "epoch": 14.645026178010472, + "grad_norm": 1.2480769157409668, + "learning_rate": 4.267991631799163e-05, + "loss": 0.6741954040527344, + "step": 3500 + }, + { + "epoch": 15.06282722513089, + "grad_norm": 1.1682356595993042, + "learning_rate": 4.247071129707113e-05, + "loss": 0.6774851989746093, + "step": 3600 + }, + { + "epoch": 15.481675392670157, + "grad_norm": 1.1353213787078857, + "learning_rate": 4.226150627615063e-05, + "loss": 0.6634797668457031, + "step": 3700 + }, + { + "epoch": 15.900523560209423, + "grad_norm": 1.2949745655059814, + "learning_rate": 4.205230125523012e-05, + "loss": 0.6736211395263672, + "step": 3800 + }, + { + "epoch": 16.318324607329842, + "grad_norm": 1.1021099090576172, + "learning_rate": 4.184309623430962e-05, + "loss": 0.6624949645996093, + "step": 3900 + }, + { + "epoch": 16.73717277486911, + "grad_norm": 1.2462520599365234, + "learning_rate": 4.1633891213389124e-05, + "loss": 0.6662584686279297, + "step": 4000 + }, + { + "epoch": 17.15497382198953, + "grad_norm": 1.2026138305664062, + "learning_rate": 4.142468619246862e-05, + "loss": 0.665372543334961, + "step": 4100 + }, + { + "epoch": 17.573821989528795, + "grad_norm": 1.1689097881317139, + "learning_rate": 4.121548117154812e-05, + "loss": 0.6616575622558594, + "step": 4200 + }, + { + "epoch": 17.992670157068062, + "grad_norm": 1.1259592771530151, + "learning_rate": 4.100627615062761e-05, + "loss": 0.6627973937988281, + "step": 4300 + }, + { + "epoch": 18.410471204188482, + "grad_norm": 1.1528080701828003, + "learning_rate": 4.0797071129707114e-05, + "loss": 0.6545208740234375, + "step": 4400 + }, + { + "epoch": 18.82931937172775, + "grad_norm": 1.078765869140625, + "learning_rate": 4.0587866108786615e-05, + "loss": 0.659375, + "step": 4500 + }, + { + "epoch": 19.24712041884817, + "grad_norm": 1.1452678442001343, + "learning_rate": 4.037866108786611e-05, + "loss": 0.6517630767822266, + "step": 4600 + }, + { + "epoch": 19.665968586387436, + "grad_norm": 1.3625253438949585, + "learning_rate": 4.016945606694561e-05, + "loss": 0.6546914672851563, + "step": 4700 + }, + { + "epoch": 20.083769633507853, + "grad_norm": 1.0734823942184448, + "learning_rate": 3.9960251046025104e-05, + "loss": 0.653277359008789, + "step": 4800 + }, + { + "epoch": 20.50261780104712, + "grad_norm": 1.0875906944274902, + "learning_rate": 3.9751046025104605e-05, + "loss": 0.6477639770507813, + "step": 4900 + }, + { + "epoch": 20.921465968586386, + "grad_norm": 1.2992547750473022, + "learning_rate": 3.9541841004184106e-05, + "loss": 0.6525312805175781, + "step": 5000 + }, + { + "epoch": 21.339267015706806, + "grad_norm": 1.1078609228134155, + "learning_rate": 3.93326359832636e-05, + "loss": 0.643624038696289, + "step": 5100 + }, + { + "epoch": 21.758115183246073, + "grad_norm": 1.1027839183807373, + "learning_rate": 3.91234309623431e-05, + "loss": 0.64830322265625, + "step": 5200 + }, + { + "epoch": 22.175916230366493, + "grad_norm": 1.1493128538131714, + "learning_rate": 3.8914225941422595e-05, + "loss": 0.6440758514404297, + "step": 5300 + }, + { + "epoch": 22.59476439790576, + "grad_norm": 1.1990758180618286, + "learning_rate": 3.8705020920502096e-05, + "loss": 0.6450751495361328, + "step": 5400 + }, + { + "epoch": 23.012565445026176, + "grad_norm": 1.1392757892608643, + "learning_rate": 3.84958158995816e-05, + "loss": 0.6439768981933593, + "step": 5500 + }, + { + "epoch": 23.431413612565446, + "grad_norm": 1.145913004875183, + "learning_rate": 3.828661087866109e-05, + "loss": 0.6345698547363281, + "step": 5600 + }, + { + "epoch": 23.850261780104713, + "grad_norm": 1.1432591676712036, + "learning_rate": 3.807740585774059e-05, + "loss": 0.6436957550048829, + "step": 5700 + }, + { + "epoch": 24.26806282722513, + "grad_norm": 1.0853745937347412, + "learning_rate": 3.7868200836820086e-05, + "loss": 0.634792594909668, + "step": 5800 + }, + { + "epoch": 24.686910994764396, + "grad_norm": 1.0998246669769287, + "learning_rate": 3.765899581589959e-05, + "loss": 0.6373896789550781, + "step": 5900 + }, + { + "epoch": 25.104712041884817, + "grad_norm": 1.427016258239746, + "learning_rate": 3.744979079497908e-05, + "loss": 0.639299545288086, + "step": 6000 + }, + { + "epoch": 25.523560209424083, + "grad_norm": 1.0360475778579712, + "learning_rate": 3.724058577405858e-05, + "loss": 0.6306960296630859, + "step": 6100 + }, + { + "epoch": 25.94240837696335, + "grad_norm": 1.029296875, + "learning_rate": 3.7031380753138076e-05, + "loss": 0.635133056640625, + "step": 6200 + }, + { + "epoch": 26.36020942408377, + "grad_norm": 1.0714229345321655, + "learning_rate": 3.682217573221757e-05, + "loss": 0.6279976272583008, + "step": 6300 + }, + { + "epoch": 26.779057591623037, + "grad_norm": 1.0668662786483765, + "learning_rate": 3.661297071129707e-05, + "loss": 0.6319166564941406, + "step": 6400 + }, + { + "epoch": 27.196858638743457, + "grad_norm": 1.2612731456756592, + "learning_rate": 3.640376569037657e-05, + "loss": 0.626447639465332, + "step": 6500 + }, + { + "epoch": 27.615706806282724, + "grad_norm": 1.111774206161499, + "learning_rate": 3.6194560669456066e-05, + "loss": 0.6283223724365234, + "step": 6600 + }, + { + "epoch": 28.03350785340314, + "grad_norm": 1.1588354110717773, + "learning_rate": 3.5985355648535567e-05, + "loss": 0.6337715148925781, + "step": 6700 + }, + { + "epoch": 28.452356020942407, + "grad_norm": 1.2656804323196411, + "learning_rate": 3.577615062761506e-05, + "loss": 0.6196572494506836, + "step": 6800 + }, + { + "epoch": 28.871204188481677, + "grad_norm": 1.0904902219772339, + "learning_rate": 3.556694560669456e-05, + "loss": 0.6265386581420899, + "step": 6900 + }, + { + "epoch": 29.289005235602094, + "grad_norm": 1.2348970174789429, + "learning_rate": 3.535774058577406e-05, + "loss": 0.6187874221801758, + "step": 7000 + }, + { + "epoch": 29.70785340314136, + "grad_norm": 1.0990043878555298, + "learning_rate": 3.5148535564853556e-05, + "loss": 0.6251428985595703, + "step": 7100 + }, + { + "epoch": 30.12565445026178, + "grad_norm": 1.3289461135864258, + "learning_rate": 3.493933054393306e-05, + "loss": 0.6217424011230469, + "step": 7200 + }, + { + "epoch": 30.544502617801047, + "grad_norm": 1.1826465129852295, + "learning_rate": 3.473012552301255e-05, + "loss": 0.6176059722900391, + "step": 7300 + }, + { + "epoch": 30.963350785340314, + "grad_norm": 1.1363434791564941, + "learning_rate": 3.452092050209205e-05, + "loss": 0.6250752258300781, + "step": 7400 + }, + { + "epoch": 31.381151832460734, + "grad_norm": 1.0488321781158447, + "learning_rate": 3.431171548117155e-05, + "loss": 0.6131296157836914, + "step": 7500 + }, + { + "epoch": 31.8, + "grad_norm": 1.0740634202957153, + "learning_rate": 3.410251046025105e-05, + "loss": 0.62077392578125, + "step": 7600 + }, + { + "epoch": 32.21780104712042, + "grad_norm": 1.2768574953079224, + "learning_rate": 3.389330543933055e-05, + "loss": 0.6132323074340821, + "step": 7700 + }, + { + "epoch": 32.636649214659684, + "grad_norm": 1.2454967498779297, + "learning_rate": 3.368410041841004e-05, + "loss": 0.6179965972900391, + "step": 7800 + }, + { + "epoch": 33.054450261780104, + "grad_norm": 1.0509141683578491, + "learning_rate": 3.347489539748954e-05, + "loss": 0.6159653091430664, + "step": 7900 + }, + { + "epoch": 33.47329842931937, + "grad_norm": 1.2346339225769043, + "learning_rate": 3.3265690376569044e-05, + "loss": 0.608684196472168, + "step": 8000 + }, + { + "epoch": 33.89214659685864, + "grad_norm": 1.0819355249404907, + "learning_rate": 3.305648535564854e-05, + "loss": 0.6147115707397461, + "step": 8100 + }, + { + "epoch": 34.30994764397906, + "grad_norm": 1.2290990352630615, + "learning_rate": 3.284728033472804e-05, + "loss": 0.6080178833007812, + "step": 8200 + }, + { + "epoch": 34.728795811518324, + "grad_norm": 1.0522081851959229, + "learning_rate": 3.263807531380753e-05, + "loss": 0.6099481964111328, + "step": 8300 + }, + { + "epoch": 35.146596858638745, + "grad_norm": 1.1879432201385498, + "learning_rate": 3.2428870292887034e-05, + "loss": 0.6108789443969727, + "step": 8400 + }, + { + "epoch": 35.56544502617801, + "grad_norm": 1.2454171180725098, + "learning_rate": 3.2219665271966535e-05, + "loss": 0.6051754760742187, + "step": 8500 + }, + { + "epoch": 35.98429319371728, + "grad_norm": 1.2238366603851318, + "learning_rate": 3.201046025104603e-05, + "loss": 0.6135285949707031, + "step": 8600 + }, + { + "epoch": 36.4020942408377, + "grad_norm": 1.3203046321868896, + "learning_rate": 3.180125523012552e-05, + "loss": 0.6003643417358399, + "step": 8700 + }, + { + "epoch": 36.820942408376965, + "grad_norm": 1.3004391193389893, + "learning_rate": 3.1592050209205024e-05, + "loss": 0.6084416961669922, + "step": 8800 + }, + { + "epoch": 37.238743455497385, + "grad_norm": 1.0923435688018799, + "learning_rate": 3.138284518828452e-05, + "loss": 0.6027616119384765, + "step": 8900 + }, + { + "epoch": 37.65759162303665, + "grad_norm": 1.3689918518066406, + "learning_rate": 3.117364016736402e-05, + "loss": 0.6034185409545898, + "step": 9000 + }, + { + "epoch": 38.075392670157065, + "grad_norm": 1.0931211709976196, + "learning_rate": 3.096443514644351e-05, + "loss": 0.6048267364501954, + "step": 9100 + }, + { + "epoch": 38.49424083769634, + "grad_norm": 1.2372386455535889, + "learning_rate": 3.0755230125523014e-05, + "loss": 0.5964799880981445, + "step": 9200 + }, + { + "epoch": 38.913089005235605, + "grad_norm": 1.2137774229049683, + "learning_rate": 3.054602510460251e-05, + "loss": 0.6053957748413086, + "step": 9300 + }, + { + "epoch": 39.33089005235602, + "grad_norm": 1.2441918849945068, + "learning_rate": 3.033682008368201e-05, + "loss": 0.5963822937011719, + "step": 9400 + }, + { + "epoch": 39.749738219895285, + "grad_norm": 1.1947072744369507, + "learning_rate": 3.0127615062761506e-05, + "loss": 0.6023126983642578, + "step": 9500 + }, + { + "epoch": 40.167539267015705, + "grad_norm": 1.234154462814331, + "learning_rate": 2.9918410041841004e-05, + "loss": 0.6001630401611329, + "step": 9600 + }, + { + "epoch": 40.58638743455497, + "grad_norm": 1.163256287574768, + "learning_rate": 2.9709205020920505e-05, + "loss": 0.5957479858398438, + "step": 9700 + }, + { + "epoch": 41.00418848167539, + "grad_norm": 1.098540186882019, + "learning_rate": 2.95e-05, + "loss": 0.6069541168212891, + "step": 9800 + }, + { + "epoch": 41.42303664921466, + "grad_norm": 1.241861343383789, + "learning_rate": 2.92907949790795e-05, + "loss": 0.589141960144043, + "step": 9900 + }, + { + "epoch": 41.841884816753925, + "grad_norm": 1.175836205482483, + "learning_rate": 2.9081589958158994e-05, + "loss": 0.6017288970947265, + "step": 10000 + }, + { + "epoch": 42.259685863874346, + "grad_norm": 1.2884583473205566, + "learning_rate": 2.88744769874477e-05, + "loss": 0.5935973358154297, + "step": 10100 + }, + { + "epoch": 42.67853403141361, + "grad_norm": 1.247544765472412, + "learning_rate": 2.8665271966527198e-05, + "loss": 0.5953170776367187, + "step": 10200 + }, + { + "epoch": 43.09633507853403, + "grad_norm": 1.0641762018203735, + "learning_rate": 2.8456066945606695e-05, + "loss": 0.5974231338500977, + "step": 10300 + }, + { + "epoch": 43.5151832460733, + "grad_norm": 1.1697312593460083, + "learning_rate": 2.8246861924686196e-05, + "loss": 0.5913193893432617, + "step": 10400 + }, + { + "epoch": 43.934031413612566, + "grad_norm": 1.1365479230880737, + "learning_rate": 2.803765690376569e-05, + "loss": 0.598421401977539, + "step": 10500 + }, + { + "epoch": 44.351832460732986, + "grad_norm": 1.1157909631729126, + "learning_rate": 2.782845188284519e-05, + "loss": 0.5873412322998047, + "step": 10600 + }, + { + "epoch": 44.77068062827225, + "grad_norm": 1.348643183708191, + "learning_rate": 2.7619246861924685e-05, + "loss": 0.5936133193969727, + "step": 10700 + }, + { + "epoch": 45.18848167539267, + "grad_norm": 1.197517991065979, + "learning_rate": 2.7410041841004186e-05, + "loss": 0.5921408462524415, + "step": 10800 + }, + { + "epoch": 45.60732984293194, + "grad_norm": 1.2170952558517456, + "learning_rate": 2.7200836820083687e-05, + "loss": 0.5896556091308593, + "step": 10900 + }, + { + "epoch": 46.02513089005235, + "grad_norm": 1.0762948989868164, + "learning_rate": 2.699163179916318e-05, + "loss": 0.5945636749267578, + "step": 11000 + }, + { + "epoch": 46.443979057591626, + "grad_norm": 1.1585177183151245, + "learning_rate": 2.678242677824268e-05, + "loss": 0.5853750610351562, + "step": 11100 + }, + { + "epoch": 46.86282722513089, + "grad_norm": 1.3420946598052979, + "learning_rate": 2.6573221757322176e-05, + "loss": 0.5932060623168945, + "step": 11200 + }, + { + "epoch": 47.280628272251306, + "grad_norm": 1.1126630306243896, + "learning_rate": 2.6364016736401677e-05, + "loss": 0.5834246063232422, + "step": 11300 + }, + { + "epoch": 47.69947643979057, + "grad_norm": 1.2244997024536133, + "learning_rate": 2.615481171548117e-05, + "loss": 0.5885814666748047, + "step": 11400 + }, + { + "epoch": 48.11727748691099, + "grad_norm": 1.3700648546218872, + "learning_rate": 2.594560669456067e-05, + "loss": 0.5896315383911133, + "step": 11500 + }, + { + "epoch": 48.53612565445026, + "grad_norm": 1.2028729915618896, + "learning_rate": 2.573640167364017e-05, + "loss": 0.5825551223754882, + "step": 11600 + }, + { + "epoch": 48.954973821989526, + "grad_norm": 1.198599934577942, + "learning_rate": 2.5527196652719663e-05, + "loss": 0.592343978881836, + "step": 11700 + }, + { + "epoch": 49.372774869109946, + "grad_norm": 1.1620557308197021, + "learning_rate": 2.5317991631799164e-05, + "loss": 0.5804216766357422, + "step": 11800 + }, + { + "epoch": 49.79162303664921, + "grad_norm": 1.2490957975387573, + "learning_rate": 2.5108786610878658e-05, + "loss": 0.5864405059814453, + "step": 11900 + }, + { + "epoch": 50.20942408376963, + "grad_norm": 1.1138325929641724, + "learning_rate": 2.489958158995816e-05, + "loss": 0.5846857070922852, + "step": 12000 + }, + { + "epoch": 50.6282722513089, + "grad_norm": 1.2332500219345093, + "learning_rate": 2.4692468619246865e-05, + "loss": 0.5829949188232422, + "step": 12100 + }, + { + "epoch": 51.04607329842932, + "grad_norm": 1.257340908050537, + "learning_rate": 2.4483263598326363e-05, + "loss": 0.5898705291748046, + "step": 12200 + }, + { + "epoch": 51.46492146596859, + "grad_norm": 1.2143198251724243, + "learning_rate": 2.427405857740586e-05, + "loss": 0.5786220550537109, + "step": 12300 + }, + { + "epoch": 51.88376963350785, + "grad_norm": 1.1260303258895874, + "learning_rate": 2.4064853556485358e-05, + "loss": 0.5868261337280274, + "step": 12400 + }, + { + "epoch": 52.301570680628274, + "grad_norm": 1.1678194999694824, + "learning_rate": 2.3855648535564852e-05, + "loss": 0.5809542846679687, + "step": 12500 + }, + { + "epoch": 52.72041884816754, + "grad_norm": 1.1895207166671753, + "learning_rate": 2.3646443514644353e-05, + "loss": 0.5844503784179688, + "step": 12600 + }, + { + "epoch": 53.13821989528796, + "grad_norm": 1.1448301076889038, + "learning_rate": 2.343723849372385e-05, + "loss": 0.5809010314941406, + "step": 12700 + }, + { + "epoch": 53.55706806282723, + "grad_norm": 1.1571141481399536, + "learning_rate": 2.3228033472803348e-05, + "loss": 0.5787462997436523, + "step": 12800 + }, + { + "epoch": 53.975916230366494, + "grad_norm": 1.0440938472747803, + "learning_rate": 2.3018828451882845e-05, + "loss": 0.5878799438476563, + "step": 12900 + }, + { + "epoch": 54.393717277486914, + "grad_norm": 1.132901668548584, + "learning_rate": 2.2809623430962343e-05, + "loss": 0.575037841796875, + "step": 13000 + }, + { + "epoch": 54.81256544502618, + "grad_norm": 1.2370219230651855, + "learning_rate": 2.2600418410041844e-05, + "loss": 0.5822734451293945, + "step": 13100 + }, + { + "epoch": 55.230366492146594, + "grad_norm": 1.1507346630096436, + "learning_rate": 2.239121338912134e-05, + "loss": 0.5782026672363281, + "step": 13200 + }, + { + "epoch": 55.64921465968587, + "grad_norm": 0.9882214665412903, + "learning_rate": 2.218200836820084e-05, + "loss": 0.580045394897461, + "step": 13300 + }, + { + "epoch": 56.06701570680628, + "grad_norm": 1.1273308992385864, + "learning_rate": 2.1972803347280336e-05, + "loss": 0.581448974609375, + "step": 13400 + }, + { + "epoch": 56.48586387434555, + "grad_norm": 1.1246113777160645, + "learning_rate": 2.1763598326359834e-05, + "loss": 0.5761925506591797, + "step": 13500 + }, + { + "epoch": 56.904712041884814, + "grad_norm": 1.1773682832717896, + "learning_rate": 2.155439330543933e-05, + "loss": 0.5803777313232422, + "step": 13600 + }, + { + "epoch": 57.322513089005234, + "grad_norm": 1.1531919240951538, + "learning_rate": 2.134518828451883e-05, + "loss": 0.5734993362426758, + "step": 13700 + }, + { + "epoch": 57.7413612565445, + "grad_norm": 1.0658059120178223, + "learning_rate": 2.1135983263598326e-05, + "loss": 0.5804447937011719, + "step": 13800 + }, + { + "epoch": 58.15916230366492, + "grad_norm": 1.256008267402649, + "learning_rate": 2.0926778242677823e-05, + "loss": 0.5771566772460938, + "step": 13900 + }, + { + "epoch": 58.57801047120419, + "grad_norm": 1.1181727647781372, + "learning_rate": 2.071757322175732e-05, + "loss": 0.5735276794433594, + "step": 14000 + }, + { + "epoch": 58.996858638743454, + "grad_norm": 1.1943111419677734, + "learning_rate": 2.0510460251046027e-05, + "loss": 0.5823272705078125, + "step": 14100 + }, + { + "epoch": 59.414659685863874, + "grad_norm": 1.245831847190857, + "learning_rate": 2.0301255230125525e-05, + "loss": 0.5691431427001953, + "step": 14200 + }, + { + "epoch": 59.83350785340314, + "grad_norm": 1.0968621969223022, + "learning_rate": 2.0092050209205022e-05, + "loss": 0.5803122329711914, + "step": 14300 + }, + { + "epoch": 60.25130890052356, + "grad_norm": 1.0285043716430664, + "learning_rate": 1.9884937238493725e-05, + "loss": 0.5736106872558594, + "step": 14400 + }, + { + "epoch": 60.67015706806283, + "grad_norm": 1.0914031267166138, + "learning_rate": 1.9675732217573223e-05, + "loss": 0.5746928405761719, + "step": 14500 + }, + { + "epoch": 61.08795811518325, + "grad_norm": 1.043164849281311, + "learning_rate": 1.946652719665272e-05, + "loss": 0.5775559997558594, + "step": 14600 + }, + { + "epoch": 61.506806282722515, + "grad_norm": 1.0833253860473633, + "learning_rate": 1.9257322175732218e-05, + "loss": 0.5722423553466797, + "step": 14700 + }, + { + "epoch": 61.92565445026178, + "grad_norm": 1.1481914520263672, + "learning_rate": 1.904811715481172e-05, + "loss": 0.5769286346435547, + "step": 14800 + }, + { + "epoch": 62.3434554973822, + "grad_norm": 1.0194867849349976, + "learning_rate": 1.8838912133891216e-05, + "loss": 0.5702044296264649, + "step": 14900 + }, + { + "epoch": 62.76230366492147, + "grad_norm": 1.091729760169983, + "learning_rate": 1.8629707112970713e-05, + "loss": 0.5723474502563477, + "step": 15000 + }, + { + "epoch": 63.18010471204188, + "grad_norm": 1.1202044486999512, + "learning_rate": 1.842050209205021e-05, + "loss": 0.5727936935424804, + "step": 15100 + }, + { + "epoch": 63.598952879581155, + "grad_norm": 2.251441240310669, + "learning_rate": 1.821129707112971e-05, + "loss": 0.5719662857055664, + "step": 15200 + }, + { + "epoch": 64.01675392670157, + "grad_norm": 0.9448971152305603, + "learning_rate": 1.8002092050209206e-05, + "loss": 0.5750114822387695, + "step": 15300 + }, + { + "epoch": 64.43560209424083, + "grad_norm": 1.6223911046981812, + "learning_rate": 1.7792887029288703e-05, + "loss": 0.5684125900268555, + "step": 15400 + }, + { + "epoch": 64.8544502617801, + "grad_norm": 1.105802297592163, + "learning_rate": 1.75836820083682e-05, + "loss": 0.5749607467651368, + "step": 15500 + }, + { + "epoch": 65.27225130890052, + "grad_norm": 1.0070587396621704, + "learning_rate": 1.73744769874477e-05, + "loss": 0.5693588256835938, + "step": 15600 + }, + { + "epoch": 65.69109947643979, + "grad_norm": 1.1097147464752197, + "learning_rate": 1.7165271966527196e-05, + "loss": 0.5717815780639648, + "step": 15700 + }, + { + "epoch": 66.10890052356021, + "grad_norm": 1.2500536441802979, + "learning_rate": 1.6956066945606697e-05, + "loss": 0.571502685546875, + "step": 15800 + }, + { + "epoch": 66.52774869109948, + "grad_norm": 1.0019428730010986, + "learning_rate": 1.6746861924686194e-05, + "loss": 0.567553482055664, + "step": 15900 + }, + { + "epoch": 66.94659685863874, + "grad_norm": 1.0604379177093506, + "learning_rate": 1.653765690376569e-05, + "loss": 0.5749691390991211, + "step": 16000 + }, + { + "epoch": 67.36439790575916, + "grad_norm": 1.049307942390442, + "learning_rate": 1.632845188284519e-05, + "loss": 0.5671145248413086, + "step": 16100 + }, + { + "epoch": 67.78324607329843, + "grad_norm": 1.0208990573883057, + "learning_rate": 1.6119246861924687e-05, + "loss": 0.5698457717895508, + "step": 16200 + }, + { + "epoch": 68.20104712041885, + "grad_norm": 0.9725692272186279, + "learning_rate": 1.5910041841004184e-05, + "loss": 0.5694425964355468, + "step": 16300 + }, + { + "epoch": 68.61989528795812, + "grad_norm": 1.1082414388656616, + "learning_rate": 1.5700836820083685e-05, + "loss": 0.5668373107910156, + "step": 16400 + }, + { + "epoch": 69.03769633507854, + "grad_norm": 0.9503616690635681, + "learning_rate": 1.5491631799163182e-05, + "loss": 0.5709575653076172, + "step": 16500 + }, + { + "epoch": 69.4565445026178, + "grad_norm": 1.174117922782898, + "learning_rate": 1.528242677824268e-05, + "loss": 0.5630858230590821, + "step": 16600 + }, + { + "epoch": 69.87539267015707, + "grad_norm": 1.233062744140625, + "learning_rate": 1.5073221757322176e-05, + "loss": 0.5713355255126953, + "step": 16700 + }, + { + "epoch": 70.29319371727749, + "grad_norm": 1.1545337438583374, + "learning_rate": 1.4864016736401673e-05, + "loss": 0.5669760513305664, + "step": 16800 + }, + { + "epoch": 70.71204188481676, + "grad_norm": 1.2455624341964722, + "learning_rate": 1.4654811715481172e-05, + "loss": 0.5687417984008789, + "step": 16900 + }, + { + "epoch": 71.12984293193718, + "grad_norm": 1.1097911596298218, + "learning_rate": 1.444560669456067e-05, + "loss": 0.5687915420532227, + "step": 17000 + }, + { + "epoch": 71.54869109947644, + "grad_norm": 1.3409907817840576, + "learning_rate": 1.4236401673640167e-05, + "loss": 0.5652975845336914, + "step": 17100 + }, + { + "epoch": 71.96753926701571, + "grad_norm": 1.0018601417541504, + "learning_rate": 1.4027196652719665e-05, + "loss": 0.5693225479125976, + "step": 17200 + }, + { + "epoch": 72.38534031413613, + "grad_norm": 0.9709707498550415, + "learning_rate": 1.3817991631799162e-05, + "loss": 0.5642803955078125, + "step": 17300 + }, + { + "epoch": 72.8041884816754, + "grad_norm": 1.0293502807617188, + "learning_rate": 1.3608786610878663e-05, + "loss": 0.567535514831543, + "step": 17400 + }, + { + "epoch": 73.22198952879582, + "grad_norm": 1.0947306156158447, + "learning_rate": 1.339958158995816e-05, + "loss": 0.5657819747924805, + "step": 17500 + }, + { + "epoch": 73.64083769633508, + "grad_norm": 1.0627623796463013, + "learning_rate": 1.3190376569037658e-05, + "loss": 0.5648831939697265, + "step": 17600 + }, + { + "epoch": 74.0586387434555, + "grad_norm": 1.092600703239441, + "learning_rate": 1.2981171548117154e-05, + "loss": 0.567056770324707, + "step": 17700 + }, + { + "epoch": 74.47748691099477, + "grad_norm": 1.1139910221099854, + "learning_rate": 1.2771966527196651e-05, + "loss": 0.5629258728027344, + "step": 17800 + }, + { + "epoch": 74.89633507853404, + "grad_norm": 1.0925103425979614, + "learning_rate": 1.2562761506276152e-05, + "loss": 0.5671181869506836, + "step": 17900 + }, + { + "epoch": 75.31413612565446, + "grad_norm": 1.4127650260925293, + "learning_rate": 1.235355648535565e-05, + "loss": 0.5614471054077148, + "step": 18000 + }, + { + "epoch": 75.73298429319372, + "grad_norm": 0.9931116104125977, + "learning_rate": 1.2144351464435147e-05, + "loss": 0.565269546508789, + "step": 18100 + }, + { + "epoch": 76.15078534031413, + "grad_norm": 1.1718937158584595, + "learning_rate": 1.1935146443514645e-05, + "loss": 0.5644131851196289, + "step": 18200 + }, + { + "epoch": 76.5696335078534, + "grad_norm": 0.9517426490783691, + "learning_rate": 1.1725941422594142e-05, + "loss": 0.5629844284057617, + "step": 18300 + }, + { + "epoch": 76.98848167539268, + "grad_norm": 1.0832480192184448, + "learning_rate": 1.1518828451882845e-05, + "loss": 0.5671321487426758, + "step": 18400 + }, + { + "epoch": 77.40628272251308, + "grad_norm": 1.1618616580963135, + "learning_rate": 1.1309623430962343e-05, + "loss": 0.5599403762817383, + "step": 18500 + }, + { + "epoch": 77.82513089005235, + "grad_norm": 1.0287295579910278, + "learning_rate": 1.1100418410041842e-05, + "loss": 0.5632502746582031, + "step": 18600 + }, + { + "epoch": 78.24293193717277, + "grad_norm": 1.048791766166687, + "learning_rate": 1.089121338912134e-05, + "loss": 0.5621784591674804, + "step": 18700 + }, + { + "epoch": 78.66178010471204, + "grad_norm": 1.03757643699646, + "learning_rate": 1.0682008368200837e-05, + "loss": 0.5616426467895508, + "step": 18800 + }, + { + "epoch": 79.07958115183246, + "grad_norm": 1.305603265762329, + "learning_rate": 1.0472803347280336e-05, + "loss": 0.5662485504150391, + "step": 18900 + }, + { + "epoch": 79.49842931937172, + "grad_norm": 1.0828039646148682, + "learning_rate": 1.0263598326359834e-05, + "loss": 0.5587220764160157, + "step": 19000 + }, + { + "epoch": 79.91727748691099, + "grad_norm": 1.0541635751724243, + "learning_rate": 1.0054393305439331e-05, + "loss": 0.5656935882568359, + "step": 19100 + }, + { + "epoch": 80.33507853403141, + "grad_norm": 1.4421244859695435, + "learning_rate": 9.845188284518828e-06, + "loss": 0.5583715057373047, + "step": 19200 + }, + { + "epoch": 80.75392670157068, + "grad_norm": 0.9934247732162476, + "learning_rate": 9.635983263598326e-06, + "loss": 0.5621566390991211, + "step": 19300 + }, + { + "epoch": 81.1717277486911, + "grad_norm": 1.331549048423767, + "learning_rate": 9.426778242677825e-06, + "loss": 0.5624060821533203, + "step": 19400 + }, + { + "epoch": 81.59057591623036, + "grad_norm": 1.1185020208358765, + "learning_rate": 9.217573221757323e-06, + "loss": 0.5596007537841797, + "step": 19500 + }, + { + "epoch": 82.00837696335078, + "grad_norm": 1.0355136394500732, + "learning_rate": 9.008368200836822e-06, + "loss": 0.5647842788696289, + "step": 19600 + }, + { + "epoch": 82.42722513089005, + "grad_norm": 0.9967537522315979, + "learning_rate": 8.79916317991632e-06, + "loss": 0.5558248519897461, + "step": 19700 + }, + { + "epoch": 82.84607329842932, + "grad_norm": 1.1115660667419434, + "learning_rate": 8.589958158995815e-06, + "loss": 0.5625948333740234, + "step": 19800 + }, + { + "epoch": 83.26387434554974, + "grad_norm": 1.1838023662567139, + "learning_rate": 8.380753138075314e-06, + "loss": 0.559094467163086, + "step": 19900 + }, + { + "epoch": 83.682722513089, + "grad_norm": 1.232723593711853, + "learning_rate": 8.171548117154812e-06, + "loss": 0.5604278564453125, + "step": 20000 + }, + { + "epoch": 84.10052356020942, + "grad_norm": 0.9662663340568542, + "learning_rate": 7.962343096234311e-06, + "loss": 0.560697135925293, + "step": 20100 + }, + { + "epoch": 84.51937172774869, + "grad_norm": 0.95435631275177, + "learning_rate": 7.753138075313808e-06, + "loss": 0.5556485748291016, + "step": 20200 + }, + { + "epoch": 84.93821989528796, + "grad_norm": 1.1006091833114624, + "learning_rate": 7.543933054393305e-06, + "loss": 0.5629526138305664, + "step": 20300 + }, + { + "epoch": 85.35602094240838, + "grad_norm": 1.0648730993270874, + "learning_rate": 7.336820083682008e-06, + "loss": 0.5561338043212891, + "step": 20400 + }, + { + "epoch": 85.77486910994764, + "grad_norm": 1.0455604791641235, + "learning_rate": 7.127615062761507e-06, + "loss": 0.5590327835083008, + "step": 20500 + }, + { + "epoch": 86.19267015706806, + "grad_norm": 1.2354342937469482, + "learning_rate": 6.918410041841005e-06, + "loss": 0.558480224609375, + "step": 20600 + }, + { + "epoch": 86.61151832460733, + "grad_norm": 1.1213362216949463, + "learning_rate": 6.709205020920502e-06, + "loss": 0.5574909973144532, + "step": 20700 + }, + { + "epoch": 87.02931937172775, + "grad_norm": 1.2145981788635254, + "learning_rate": 6.5000000000000004e-06, + "loss": 0.5595388793945313, + "step": 20800 + }, + { + "epoch": 87.44816753926702, + "grad_norm": 1.1763968467712402, + "learning_rate": 6.290794979079498e-06, + "loss": 0.5566361618041992, + "step": 20900 + }, + { + "epoch": 87.86701570680628, + "grad_norm": 0.9883760213851929, + "learning_rate": 6.081589958158996e-06, + "loss": 0.558988037109375, + "step": 21000 + }, + { + "epoch": 88.2848167539267, + "grad_norm": 1.3407195806503296, + "learning_rate": 5.872384937238494e-06, + "loss": 0.555633430480957, + "step": 21100 + }, + { + "epoch": 88.70366492146597, + "grad_norm": 1.2197387218475342, + "learning_rate": 5.663179916317992e-06, + "loss": 0.5576942443847657, + "step": 21200 + }, + { + "epoch": 89.12146596858639, + "grad_norm": 0.9664437770843506, + "learning_rate": 5.45397489539749e-06, + "loss": 0.5581797409057617, + "step": 21300 + }, + { + "epoch": 89.54031413612566, + "grad_norm": 1.2320648431777954, + "learning_rate": 5.244769874476987e-06, + "loss": 0.5559272003173829, + "step": 21400 + }, + { + "epoch": 89.95916230366493, + "grad_norm": 1.1831936836242676, + "learning_rate": 5.035564853556485e-06, + "loss": 0.5578675842285157, + "step": 21500 + }, + { + "epoch": 90.37696335078535, + "grad_norm": 1.0145848989486694, + "learning_rate": 4.826359832635984e-06, + "loss": 0.555514259338379, + "step": 21600 + }, + { + "epoch": 90.79581151832461, + "grad_norm": 1.1567530632019043, + "learning_rate": 4.617154811715481e-06, + "loss": 0.5568828964233399, + "step": 21700 + }, + { + "epoch": 91.21361256544503, + "grad_norm": 1.1194156408309937, + "learning_rate": 4.4079497907949796e-06, + "loss": 0.5556546783447266, + "step": 21800 + }, + { + "epoch": 91.6324607329843, + "grad_norm": 1.058899164199829, + "learning_rate": 4.198744769874477e-06, + "loss": 0.5552133178710937, + "step": 21900 + }, + { + "epoch": 92.0502617801047, + "grad_norm": 1.0123540163040161, + "learning_rate": 3.989539748953975e-06, + "loss": 0.55712158203125, + "step": 22000 + }, + { + "epoch": 92.46910994764399, + "grad_norm": 1.0693333148956299, + "learning_rate": 3.780334728033473e-06, + "loss": 0.5530570983886719, + "step": 22100 + }, + { + "epoch": 92.88795811518325, + "grad_norm": 1.020864725112915, + "learning_rate": 3.571129707112971e-06, + "loss": 0.5573068618774414, + "step": 22200 + }, + { + "epoch": 93.30575916230366, + "grad_norm": 1.1115072965621948, + "learning_rate": 3.3619246861924683e-06, + "loss": 0.5556851959228516, + "step": 22300 + }, + { + "epoch": 93.72460732984293, + "grad_norm": 1.0190234184265137, + "learning_rate": 3.1548117154811716e-06, + "loss": 0.5554112243652344, + "step": 22400 + }, + { + "epoch": 94.14240837696335, + "grad_norm": 1.0990245342254639, + "learning_rate": 2.9456066945606695e-06, + "loss": 0.5539827346801758, + "step": 22500 + }, + { + "epoch": 94.56125654450261, + "grad_norm": 1.0113505125045776, + "learning_rate": 2.7364016736401674e-06, + "loss": 0.5531864929199218, + "step": 22600 + }, + { + "epoch": 94.98010471204188, + "grad_norm": 1.0651323795318604, + "learning_rate": 2.5271966527196657e-06, + "loss": 0.5547758865356446, + "step": 22700 + }, + { + "epoch": 95.3979057591623, + "grad_norm": 0.9893053770065308, + "learning_rate": 2.317991631799163e-06, + "loss": 0.5521963882446289, + "step": 22800 + }, + { + "epoch": 95.81675392670157, + "grad_norm": 1.2413371801376343, + "learning_rate": 2.108786610878661e-06, + "loss": 0.5545172119140624, + "step": 22900 + }, + { + "epoch": 96.23455497382199, + "grad_norm": 1.1037617921829224, + "learning_rate": 1.899581589958159e-06, + "loss": 0.5509216690063476, + "step": 23000 + }, + { + "epoch": 96.65340314136125, + "grad_norm": 0.9777401089668274, + "learning_rate": 1.690376569037657e-06, + "loss": 0.5538136672973633, + "step": 23100 + }, + { + "epoch": 97.07120418848167, + "grad_norm": 1.0018055438995361, + "learning_rate": 1.4811715481171548e-06, + "loss": 0.5540202331542968, + "step": 23200 + }, + { + "epoch": 97.49005235602094, + "grad_norm": 1.0007930994033813, + "learning_rate": 1.2719665271966528e-06, + "loss": 0.5524462509155273, + "step": 23300 + }, + { + "epoch": 97.9089005235602, + "grad_norm": 1.1463111639022827, + "learning_rate": 1.0627615062761507e-06, + "loss": 0.5535177612304687, + "step": 23400 + }, + { + "epoch": 98.32670157068063, + "grad_norm": 0.980787456035614, + "learning_rate": 8.535564853556486e-07, + "loss": 0.553234977722168, + "step": 23500 + } + ], + "logging_steps": 100, + "max_steps": 23900, + "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": 3065435491663872.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/training_args.bin b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc664521f815e55efb1e2ec57db59f2857c50993 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/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": 485 +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/generation_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/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/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/model.safetensors b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d36c81a7eff17e1ce34bd499d7daa34f6ea303cf --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d402da0c263f8e50bf63680bd660942b055a55276589141ee92b00d31ba5781 +size 174758344 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/optimizer.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..68aee8db50d1de14329f1406248a675349fdffcd --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f98c639060a859fa28f7ca64e6edd12af57d9678bc0fa7f22dbed429f5038e6 +size 349565771 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/rng_state.pth b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5e8455542f51b7c368585ab3a92e47c655fa0e63 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60361c121649c91097cf1143444b46006165d34c7210b1cdf2cb2d0c64c9942 +size 14645 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/scaler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..771709ab007d3998c5e28c35b7e117246c579dfb --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9aff271c09b495088d629a7c97f497d091c25ec384a6383e9cf584b3c3a86d +size 1383 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/scheduler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..afb369cc9ecc9864bb859f443c0087c14cfe5fdb --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e04dfc6c3470663bec9263782e4063c477f7de62e987e2a111aa815ea03289 +size 1465 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/trainer_state.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..52da36b6ac519e008ceccccefe744a306ff04d36 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/trainer_state.json @@ -0,0 +1,1686 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.74554973821989, + "eval_steps": 100, + "global_step": 23600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.418848167539267, + "grad_norm": 1.7357312440872192, + "learning_rate": 4.9792887029288705e-05, + "loss": 1.957039794921875, + "step": 100 + }, + { + "epoch": 0.837696335078534, + "grad_norm": 1.7951552867889404, + "learning_rate": 4.9583682008368206e-05, + "loss": 1.2064629364013673, + "step": 200 + }, + { + "epoch": 1.255497382198953, + "grad_norm": 1.674418330192566, + "learning_rate": 4.93744769874477e-05, + "loss": 1.0603108978271485, + "step": 300 + }, + { + "epoch": 1.67434554973822, + "grad_norm": 1.6522367000579834, + "learning_rate": 4.91652719665272e-05, + "loss": 0.9886434936523437, + "step": 400 + }, + { + "epoch": 2.0921465968586386, + "grad_norm": 1.483288288116455, + "learning_rate": 4.89560669456067e-05, + "loss": 0.9375139617919922, + "step": 500 + }, + { + "epoch": 2.510994764397906, + "grad_norm": 1.5848816633224487, + "learning_rate": 4.8746861924686196e-05, + "loss": 0.8872322082519531, + "step": 600 + }, + { + "epoch": 2.9298429319371726, + "grad_norm": 1.5845175981521606, + "learning_rate": 4.85376569037657e-05, + "loss": 0.8752645111083984, + "step": 700 + }, + { + "epoch": 3.3476439790575916, + "grad_norm": 1.454902172088623, + "learning_rate": 4.832845188284519e-05, + "loss": 0.8418380737304687, + "step": 800 + }, + { + "epoch": 3.7664921465968586, + "grad_norm": 1.3893290758132935, + "learning_rate": 4.8119246861924685e-05, + "loss": 0.8182624053955078, + "step": 900 + }, + { + "epoch": 4.184293193717277, + "grad_norm": 1.504209280014038, + "learning_rate": 4.7910041841004186e-05, + "loss": 0.8018088531494141, + "step": 1000 + }, + { + "epoch": 4.603141361256545, + "grad_norm": 1.6646430492401123, + "learning_rate": 4.770083682008368e-05, + "loss": 0.7877240753173829, + "step": 1100 + }, + { + "epoch": 5.020942408376963, + "grad_norm": 1.3648449182510376, + "learning_rate": 4.749163179916318e-05, + "loss": 0.7797740936279297, + "step": 1200 + }, + { + "epoch": 5.439790575916231, + "grad_norm": 1.410872459411621, + "learning_rate": 4.7282426778242675e-05, + "loss": 0.7617485809326172, + "step": 1300 + }, + { + "epoch": 5.858638743455497, + "grad_norm": 1.4345377683639526, + "learning_rate": 4.7073221757322176e-05, + "loss": 0.7631221771240234, + "step": 1400 + }, + { + "epoch": 6.276439790575917, + "grad_norm": 1.327006459236145, + "learning_rate": 4.686401673640168e-05, + "loss": 0.7484178161621093, + "step": 1500 + }, + { + "epoch": 6.695287958115183, + "grad_norm": 1.420089602470398, + "learning_rate": 4.665481171548117e-05, + "loss": 0.7441964721679688, + "step": 1600 + }, + { + "epoch": 7.113089005235602, + "grad_norm": 1.5513347387313843, + "learning_rate": 4.644560669456067e-05, + "loss": 0.7383489227294922, + "step": 1700 + }, + { + "epoch": 7.531937172774869, + "grad_norm": 1.3362606763839722, + "learning_rate": 4.6236401673640166e-05, + "loss": 0.7281642913818359, + "step": 1800 + }, + { + "epoch": 7.950785340314136, + "grad_norm": 1.2809451818466187, + "learning_rate": 4.602719665271967e-05, + "loss": 0.7310231018066407, + "step": 1900 + }, + { + "epoch": 8.368586387434554, + "grad_norm": 1.2832854986190796, + "learning_rate": 4.581799163179917e-05, + "loss": 0.7165196990966797, + "step": 2000 + }, + { + "epoch": 8.787434554973823, + "grad_norm": 1.1414157152175903, + "learning_rate": 4.560878661087866e-05, + "loss": 0.7179119873046875, + "step": 2100 + }, + { + "epoch": 9.205235602094241, + "grad_norm": 1.0745928287506104, + "learning_rate": 4.539958158995816e-05, + "loss": 0.7131906890869141, + "step": 2200 + }, + { + "epoch": 9.624083769633508, + "grad_norm": 1.1124597787857056, + "learning_rate": 4.519037656903766e-05, + "loss": 0.7061318206787109, + "step": 2300 + }, + { + "epoch": 10.041884816753926, + "grad_norm": 0.9845342040061951, + "learning_rate": 4.498117154811716e-05, + "loss": 0.7075148773193359, + "step": 2400 + }, + { + "epoch": 10.460732984293193, + "grad_norm": 1.1672662496566772, + "learning_rate": 4.477196652719666e-05, + "loss": 0.7008012390136719, + "step": 2500 + }, + { + "epoch": 10.879581151832461, + "grad_norm": 1.181514859199524, + "learning_rate": 4.456276150627615e-05, + "loss": 0.6990177154541015, + "step": 2600 + }, + { + "epoch": 11.29738219895288, + "grad_norm": 1.1406160593032837, + "learning_rate": 4.4353556485355653e-05, + "loss": 0.690523681640625, + "step": 2700 + }, + { + "epoch": 11.716230366492146, + "grad_norm": 1.1152310371398926, + "learning_rate": 4.414435146443515e-05, + "loss": 0.6935369110107422, + "step": 2800 + }, + { + "epoch": 12.134031413612565, + "grad_norm": 1.283378005027771, + "learning_rate": 4.393514644351465e-05, + "loss": 0.6885635375976562, + "step": 2900 + }, + { + "epoch": 12.552879581151833, + "grad_norm": 1.2980977296829224, + "learning_rate": 4.372594142259415e-05, + "loss": 0.6849569702148437, + "step": 3000 + }, + { + "epoch": 12.9717277486911, + "grad_norm": 1.1399869918823242, + "learning_rate": 4.3516736401673643e-05, + "loss": 0.6880906677246094, + "step": 3100 + }, + { + "epoch": 13.389528795811518, + "grad_norm": 1.2640913724899292, + "learning_rate": 4.3307531380753144e-05, + "loss": 0.6769008636474609, + "step": 3200 + }, + { + "epoch": 13.808376963350785, + "grad_norm": 1.2051986455917358, + "learning_rate": 4.309832635983264e-05, + "loss": 0.6841930389404297, + "step": 3300 + }, + { + "epoch": 14.226178010471203, + "grad_norm": 1.5682283639907837, + "learning_rate": 4.288912133891214e-05, + "loss": 0.6762271118164063, + "step": 3400 + }, + { + "epoch": 14.645026178010472, + "grad_norm": 1.2480769157409668, + "learning_rate": 4.267991631799163e-05, + "loss": 0.6741954040527344, + "step": 3500 + }, + { + "epoch": 15.06282722513089, + "grad_norm": 1.1682356595993042, + "learning_rate": 4.247071129707113e-05, + "loss": 0.6774851989746093, + "step": 3600 + }, + { + "epoch": 15.481675392670157, + "grad_norm": 1.1353213787078857, + "learning_rate": 4.226150627615063e-05, + "loss": 0.6634797668457031, + "step": 3700 + }, + { + "epoch": 15.900523560209423, + "grad_norm": 1.2949745655059814, + "learning_rate": 4.205230125523012e-05, + "loss": 0.6736211395263672, + "step": 3800 + }, + { + "epoch": 16.318324607329842, + "grad_norm": 1.1021099090576172, + "learning_rate": 4.184309623430962e-05, + "loss": 0.6624949645996093, + "step": 3900 + }, + { + "epoch": 16.73717277486911, + "grad_norm": 1.2462520599365234, + "learning_rate": 4.1633891213389124e-05, + "loss": 0.6662584686279297, + "step": 4000 + }, + { + "epoch": 17.15497382198953, + "grad_norm": 1.2026138305664062, + "learning_rate": 4.142468619246862e-05, + "loss": 0.665372543334961, + "step": 4100 + }, + { + "epoch": 17.573821989528795, + "grad_norm": 1.1689097881317139, + "learning_rate": 4.121548117154812e-05, + "loss": 0.6616575622558594, + "step": 4200 + }, + { + "epoch": 17.992670157068062, + "grad_norm": 1.1259592771530151, + "learning_rate": 4.100627615062761e-05, + "loss": 0.6627973937988281, + "step": 4300 + }, + { + "epoch": 18.410471204188482, + "grad_norm": 1.1528080701828003, + "learning_rate": 4.0797071129707114e-05, + "loss": 0.6545208740234375, + "step": 4400 + }, + { + "epoch": 18.82931937172775, + "grad_norm": 1.078765869140625, + "learning_rate": 4.0587866108786615e-05, + "loss": 0.659375, + "step": 4500 + }, + { + "epoch": 19.24712041884817, + "grad_norm": 1.1452678442001343, + "learning_rate": 4.037866108786611e-05, + "loss": 0.6517630767822266, + "step": 4600 + }, + { + "epoch": 19.665968586387436, + "grad_norm": 1.3625253438949585, + "learning_rate": 4.016945606694561e-05, + "loss": 0.6546914672851563, + "step": 4700 + }, + { + "epoch": 20.083769633507853, + "grad_norm": 1.0734823942184448, + "learning_rate": 3.9960251046025104e-05, + "loss": 0.653277359008789, + "step": 4800 + }, + { + "epoch": 20.50261780104712, + "grad_norm": 1.0875906944274902, + "learning_rate": 3.9751046025104605e-05, + "loss": 0.6477639770507813, + "step": 4900 + }, + { + "epoch": 20.921465968586386, + "grad_norm": 1.2992547750473022, + "learning_rate": 3.9541841004184106e-05, + "loss": 0.6525312805175781, + "step": 5000 + }, + { + "epoch": 21.339267015706806, + "grad_norm": 1.1078609228134155, + "learning_rate": 3.93326359832636e-05, + "loss": 0.643624038696289, + "step": 5100 + }, + { + "epoch": 21.758115183246073, + "grad_norm": 1.1027839183807373, + "learning_rate": 3.91234309623431e-05, + "loss": 0.64830322265625, + "step": 5200 + }, + { + "epoch": 22.175916230366493, + "grad_norm": 1.1493128538131714, + "learning_rate": 3.8914225941422595e-05, + "loss": 0.6440758514404297, + "step": 5300 + }, + { + "epoch": 22.59476439790576, + "grad_norm": 1.1990758180618286, + "learning_rate": 3.8705020920502096e-05, + "loss": 0.6450751495361328, + "step": 5400 + }, + { + "epoch": 23.012565445026176, + "grad_norm": 1.1392757892608643, + "learning_rate": 3.84958158995816e-05, + "loss": 0.6439768981933593, + "step": 5500 + }, + { + "epoch": 23.431413612565446, + "grad_norm": 1.145913004875183, + "learning_rate": 3.828661087866109e-05, + "loss": 0.6345698547363281, + "step": 5600 + }, + { + "epoch": 23.850261780104713, + "grad_norm": 1.1432591676712036, + "learning_rate": 3.807740585774059e-05, + "loss": 0.6436957550048829, + "step": 5700 + }, + { + "epoch": 24.26806282722513, + "grad_norm": 1.0853745937347412, + "learning_rate": 3.7868200836820086e-05, + "loss": 0.634792594909668, + "step": 5800 + }, + { + "epoch": 24.686910994764396, + "grad_norm": 1.0998246669769287, + "learning_rate": 3.765899581589959e-05, + "loss": 0.6373896789550781, + "step": 5900 + }, + { + "epoch": 25.104712041884817, + "grad_norm": 1.427016258239746, + "learning_rate": 3.744979079497908e-05, + "loss": 0.639299545288086, + "step": 6000 + }, + { + "epoch": 25.523560209424083, + "grad_norm": 1.0360475778579712, + "learning_rate": 3.724058577405858e-05, + "loss": 0.6306960296630859, + "step": 6100 + }, + { + "epoch": 25.94240837696335, + "grad_norm": 1.029296875, + "learning_rate": 3.7031380753138076e-05, + "loss": 0.635133056640625, + "step": 6200 + }, + { + "epoch": 26.36020942408377, + "grad_norm": 1.0714229345321655, + "learning_rate": 3.682217573221757e-05, + "loss": 0.6279976272583008, + "step": 6300 + }, + { + "epoch": 26.779057591623037, + "grad_norm": 1.0668662786483765, + "learning_rate": 3.661297071129707e-05, + "loss": 0.6319166564941406, + "step": 6400 + }, + { + "epoch": 27.196858638743457, + "grad_norm": 1.2612731456756592, + "learning_rate": 3.640376569037657e-05, + "loss": 0.626447639465332, + "step": 6500 + }, + { + "epoch": 27.615706806282724, + "grad_norm": 1.111774206161499, + "learning_rate": 3.6194560669456066e-05, + "loss": 0.6283223724365234, + "step": 6600 + }, + { + "epoch": 28.03350785340314, + "grad_norm": 1.1588354110717773, + "learning_rate": 3.5985355648535567e-05, + "loss": 0.6337715148925781, + "step": 6700 + }, + { + "epoch": 28.452356020942407, + "grad_norm": 1.2656804323196411, + "learning_rate": 3.577615062761506e-05, + "loss": 0.6196572494506836, + "step": 6800 + }, + { + "epoch": 28.871204188481677, + "grad_norm": 1.0904902219772339, + "learning_rate": 3.556694560669456e-05, + "loss": 0.6265386581420899, + "step": 6900 + }, + { + "epoch": 29.289005235602094, + "grad_norm": 1.2348970174789429, + "learning_rate": 3.535774058577406e-05, + "loss": 0.6187874221801758, + "step": 7000 + }, + { + "epoch": 29.70785340314136, + "grad_norm": 1.0990043878555298, + "learning_rate": 3.5148535564853556e-05, + "loss": 0.6251428985595703, + "step": 7100 + }, + { + "epoch": 30.12565445026178, + "grad_norm": 1.3289461135864258, + "learning_rate": 3.493933054393306e-05, + "loss": 0.6217424011230469, + "step": 7200 + }, + { + "epoch": 30.544502617801047, + "grad_norm": 1.1826465129852295, + "learning_rate": 3.473012552301255e-05, + "loss": 0.6176059722900391, + "step": 7300 + }, + { + "epoch": 30.963350785340314, + "grad_norm": 1.1363434791564941, + "learning_rate": 3.452092050209205e-05, + "loss": 0.6250752258300781, + "step": 7400 + }, + { + "epoch": 31.381151832460734, + "grad_norm": 1.0488321781158447, + "learning_rate": 3.431171548117155e-05, + "loss": 0.6131296157836914, + "step": 7500 + }, + { + "epoch": 31.8, + "grad_norm": 1.0740634202957153, + "learning_rate": 3.410251046025105e-05, + "loss": 0.62077392578125, + "step": 7600 + }, + { + "epoch": 32.21780104712042, + "grad_norm": 1.2768574953079224, + "learning_rate": 3.389330543933055e-05, + "loss": 0.6132323074340821, + "step": 7700 + }, + { + "epoch": 32.636649214659684, + "grad_norm": 1.2454967498779297, + "learning_rate": 3.368410041841004e-05, + "loss": 0.6179965972900391, + "step": 7800 + }, + { + "epoch": 33.054450261780104, + "grad_norm": 1.0509141683578491, + "learning_rate": 3.347489539748954e-05, + "loss": 0.6159653091430664, + "step": 7900 + }, + { + "epoch": 33.47329842931937, + "grad_norm": 1.2346339225769043, + "learning_rate": 3.3265690376569044e-05, + "loss": 0.608684196472168, + "step": 8000 + }, + { + "epoch": 33.89214659685864, + "grad_norm": 1.0819355249404907, + "learning_rate": 3.305648535564854e-05, + "loss": 0.6147115707397461, + "step": 8100 + }, + { + "epoch": 34.30994764397906, + "grad_norm": 1.2290990352630615, + "learning_rate": 3.284728033472804e-05, + "loss": 0.6080178833007812, + "step": 8200 + }, + { + "epoch": 34.728795811518324, + "grad_norm": 1.0522081851959229, + "learning_rate": 3.263807531380753e-05, + "loss": 0.6099481964111328, + "step": 8300 + }, + { + "epoch": 35.146596858638745, + "grad_norm": 1.1879432201385498, + "learning_rate": 3.2428870292887034e-05, + "loss": 0.6108789443969727, + "step": 8400 + }, + { + "epoch": 35.56544502617801, + "grad_norm": 1.2454171180725098, + "learning_rate": 3.2219665271966535e-05, + "loss": 0.6051754760742187, + "step": 8500 + }, + { + "epoch": 35.98429319371728, + "grad_norm": 1.2238366603851318, + "learning_rate": 3.201046025104603e-05, + "loss": 0.6135285949707031, + "step": 8600 + }, + { + "epoch": 36.4020942408377, + "grad_norm": 1.3203046321868896, + "learning_rate": 3.180125523012552e-05, + "loss": 0.6003643417358399, + "step": 8700 + }, + { + "epoch": 36.820942408376965, + "grad_norm": 1.3004391193389893, + "learning_rate": 3.1592050209205024e-05, + "loss": 0.6084416961669922, + "step": 8800 + }, + { + "epoch": 37.238743455497385, + "grad_norm": 1.0923435688018799, + "learning_rate": 3.138284518828452e-05, + "loss": 0.6027616119384765, + "step": 8900 + }, + { + "epoch": 37.65759162303665, + "grad_norm": 1.3689918518066406, + "learning_rate": 3.117364016736402e-05, + "loss": 0.6034185409545898, + "step": 9000 + }, + { + "epoch": 38.075392670157065, + "grad_norm": 1.0931211709976196, + "learning_rate": 3.096443514644351e-05, + "loss": 0.6048267364501954, + "step": 9100 + }, + { + "epoch": 38.49424083769634, + "grad_norm": 1.2372386455535889, + "learning_rate": 3.0755230125523014e-05, + "loss": 0.5964799880981445, + "step": 9200 + }, + { + "epoch": 38.913089005235605, + "grad_norm": 1.2137774229049683, + "learning_rate": 3.054602510460251e-05, + "loss": 0.6053957748413086, + "step": 9300 + }, + { + "epoch": 39.33089005235602, + "grad_norm": 1.2441918849945068, + "learning_rate": 3.033682008368201e-05, + "loss": 0.5963822937011719, + "step": 9400 + }, + { + "epoch": 39.749738219895285, + "grad_norm": 1.1947072744369507, + "learning_rate": 3.0127615062761506e-05, + "loss": 0.6023126983642578, + "step": 9500 + }, + { + "epoch": 40.167539267015705, + "grad_norm": 1.234154462814331, + "learning_rate": 2.9918410041841004e-05, + "loss": 0.6001630401611329, + "step": 9600 + }, + { + "epoch": 40.58638743455497, + "grad_norm": 1.163256287574768, + "learning_rate": 2.9709205020920505e-05, + "loss": 0.5957479858398438, + "step": 9700 + }, + { + "epoch": 41.00418848167539, + "grad_norm": 1.098540186882019, + "learning_rate": 2.95e-05, + "loss": 0.6069541168212891, + "step": 9800 + }, + { + "epoch": 41.42303664921466, + "grad_norm": 1.241861343383789, + "learning_rate": 2.92907949790795e-05, + "loss": 0.589141960144043, + "step": 9900 + }, + { + "epoch": 41.841884816753925, + "grad_norm": 1.175836205482483, + "learning_rate": 2.9081589958158994e-05, + "loss": 0.6017288970947265, + "step": 10000 + }, + { + "epoch": 42.259685863874346, + "grad_norm": 1.2884583473205566, + "learning_rate": 2.88744769874477e-05, + "loss": 0.5935973358154297, + "step": 10100 + }, + { + "epoch": 42.67853403141361, + "grad_norm": 1.247544765472412, + "learning_rate": 2.8665271966527198e-05, + "loss": 0.5953170776367187, + "step": 10200 + }, + { + "epoch": 43.09633507853403, + "grad_norm": 1.0641762018203735, + "learning_rate": 2.8456066945606695e-05, + "loss": 0.5974231338500977, + "step": 10300 + }, + { + "epoch": 43.5151832460733, + "grad_norm": 1.1697312593460083, + "learning_rate": 2.8246861924686196e-05, + "loss": 0.5913193893432617, + "step": 10400 + }, + { + "epoch": 43.934031413612566, + "grad_norm": 1.1365479230880737, + "learning_rate": 2.803765690376569e-05, + "loss": 0.598421401977539, + "step": 10500 + }, + { + "epoch": 44.351832460732986, + "grad_norm": 1.1157909631729126, + "learning_rate": 2.782845188284519e-05, + "loss": 0.5873412322998047, + "step": 10600 + }, + { + "epoch": 44.77068062827225, + "grad_norm": 1.348643183708191, + "learning_rate": 2.7619246861924685e-05, + "loss": 0.5936133193969727, + "step": 10700 + }, + { + "epoch": 45.18848167539267, + "grad_norm": 1.197517991065979, + "learning_rate": 2.7410041841004186e-05, + "loss": 0.5921408462524415, + "step": 10800 + }, + { + "epoch": 45.60732984293194, + "grad_norm": 1.2170952558517456, + "learning_rate": 2.7200836820083687e-05, + "loss": 0.5896556091308593, + "step": 10900 + }, + { + "epoch": 46.02513089005235, + "grad_norm": 1.0762948989868164, + "learning_rate": 2.699163179916318e-05, + "loss": 0.5945636749267578, + "step": 11000 + }, + { + "epoch": 46.443979057591626, + "grad_norm": 1.1585177183151245, + "learning_rate": 2.678242677824268e-05, + "loss": 0.5853750610351562, + "step": 11100 + }, + { + "epoch": 46.86282722513089, + "grad_norm": 1.3420946598052979, + "learning_rate": 2.6573221757322176e-05, + "loss": 0.5932060623168945, + "step": 11200 + }, + { + "epoch": 47.280628272251306, + "grad_norm": 1.1126630306243896, + "learning_rate": 2.6364016736401677e-05, + "loss": 0.5834246063232422, + "step": 11300 + }, + { + "epoch": 47.69947643979057, + "grad_norm": 1.2244997024536133, + "learning_rate": 2.615481171548117e-05, + "loss": 0.5885814666748047, + "step": 11400 + }, + { + "epoch": 48.11727748691099, + "grad_norm": 1.3700648546218872, + "learning_rate": 2.594560669456067e-05, + "loss": 0.5896315383911133, + "step": 11500 + }, + { + "epoch": 48.53612565445026, + "grad_norm": 1.2028729915618896, + "learning_rate": 2.573640167364017e-05, + "loss": 0.5825551223754882, + "step": 11600 + }, + { + "epoch": 48.954973821989526, + "grad_norm": 1.198599934577942, + "learning_rate": 2.5527196652719663e-05, + "loss": 0.592343978881836, + "step": 11700 + }, + { + "epoch": 49.372774869109946, + "grad_norm": 1.1620557308197021, + "learning_rate": 2.5317991631799164e-05, + "loss": 0.5804216766357422, + "step": 11800 + }, + { + "epoch": 49.79162303664921, + "grad_norm": 1.2490957975387573, + "learning_rate": 2.5108786610878658e-05, + "loss": 0.5864405059814453, + "step": 11900 + }, + { + "epoch": 50.20942408376963, + "grad_norm": 1.1138325929641724, + "learning_rate": 2.489958158995816e-05, + "loss": 0.5846857070922852, + "step": 12000 + }, + { + "epoch": 50.6282722513089, + "grad_norm": 1.2332500219345093, + "learning_rate": 2.4692468619246865e-05, + "loss": 0.5829949188232422, + "step": 12100 + }, + { + "epoch": 51.04607329842932, + "grad_norm": 1.257340908050537, + "learning_rate": 2.4483263598326363e-05, + "loss": 0.5898705291748046, + "step": 12200 + }, + { + "epoch": 51.46492146596859, + "grad_norm": 1.2143198251724243, + "learning_rate": 2.427405857740586e-05, + "loss": 0.5786220550537109, + "step": 12300 + }, + { + "epoch": 51.88376963350785, + "grad_norm": 1.1260303258895874, + "learning_rate": 2.4064853556485358e-05, + "loss": 0.5868261337280274, + "step": 12400 + }, + { + "epoch": 52.301570680628274, + "grad_norm": 1.1678194999694824, + "learning_rate": 2.3855648535564852e-05, + "loss": 0.5809542846679687, + "step": 12500 + }, + { + "epoch": 52.72041884816754, + "grad_norm": 1.1895207166671753, + "learning_rate": 2.3646443514644353e-05, + "loss": 0.5844503784179688, + "step": 12600 + }, + { + "epoch": 53.13821989528796, + "grad_norm": 1.1448301076889038, + "learning_rate": 2.343723849372385e-05, + "loss": 0.5809010314941406, + "step": 12700 + }, + { + "epoch": 53.55706806282723, + "grad_norm": 1.1571141481399536, + "learning_rate": 2.3228033472803348e-05, + "loss": 0.5787462997436523, + "step": 12800 + }, + { + "epoch": 53.975916230366494, + "grad_norm": 1.0440938472747803, + "learning_rate": 2.3018828451882845e-05, + "loss": 0.5878799438476563, + "step": 12900 + }, + { + "epoch": 54.393717277486914, + "grad_norm": 1.132901668548584, + "learning_rate": 2.2809623430962343e-05, + "loss": 0.575037841796875, + "step": 13000 + }, + { + "epoch": 54.81256544502618, + "grad_norm": 1.2370219230651855, + "learning_rate": 2.2600418410041844e-05, + "loss": 0.5822734451293945, + "step": 13100 + }, + { + "epoch": 55.230366492146594, + "grad_norm": 1.1507346630096436, + "learning_rate": 2.239121338912134e-05, + "loss": 0.5782026672363281, + "step": 13200 + }, + { + "epoch": 55.64921465968587, + "grad_norm": 0.9882214665412903, + "learning_rate": 2.218200836820084e-05, + "loss": 0.580045394897461, + "step": 13300 + }, + { + "epoch": 56.06701570680628, + "grad_norm": 1.1273308992385864, + "learning_rate": 2.1972803347280336e-05, + "loss": 0.581448974609375, + "step": 13400 + }, + { + "epoch": 56.48586387434555, + "grad_norm": 1.1246113777160645, + "learning_rate": 2.1763598326359834e-05, + "loss": 0.5761925506591797, + "step": 13500 + }, + { + "epoch": 56.904712041884814, + "grad_norm": 1.1773682832717896, + "learning_rate": 2.155439330543933e-05, + "loss": 0.5803777313232422, + "step": 13600 + }, + { + "epoch": 57.322513089005234, + "grad_norm": 1.1531919240951538, + "learning_rate": 2.134518828451883e-05, + "loss": 0.5734993362426758, + "step": 13700 + }, + { + "epoch": 57.7413612565445, + "grad_norm": 1.0658059120178223, + "learning_rate": 2.1135983263598326e-05, + "loss": 0.5804447937011719, + "step": 13800 + }, + { + "epoch": 58.15916230366492, + "grad_norm": 1.256008267402649, + "learning_rate": 2.0926778242677823e-05, + "loss": 0.5771566772460938, + "step": 13900 + }, + { + "epoch": 58.57801047120419, + "grad_norm": 1.1181727647781372, + "learning_rate": 2.071757322175732e-05, + "loss": 0.5735276794433594, + "step": 14000 + }, + { + "epoch": 58.996858638743454, + "grad_norm": 1.1943111419677734, + "learning_rate": 2.0510460251046027e-05, + "loss": 0.5823272705078125, + "step": 14100 + }, + { + "epoch": 59.414659685863874, + "grad_norm": 1.245831847190857, + "learning_rate": 2.0301255230125525e-05, + "loss": 0.5691431427001953, + "step": 14200 + }, + { + "epoch": 59.83350785340314, + "grad_norm": 1.0968621969223022, + "learning_rate": 2.0092050209205022e-05, + "loss": 0.5803122329711914, + "step": 14300 + }, + { + "epoch": 60.25130890052356, + "grad_norm": 1.0285043716430664, + "learning_rate": 1.9884937238493725e-05, + "loss": 0.5736106872558594, + "step": 14400 + }, + { + "epoch": 60.67015706806283, + "grad_norm": 1.0914031267166138, + "learning_rate": 1.9675732217573223e-05, + "loss": 0.5746928405761719, + "step": 14500 + }, + { + "epoch": 61.08795811518325, + "grad_norm": 1.043164849281311, + "learning_rate": 1.946652719665272e-05, + "loss": 0.5775559997558594, + "step": 14600 + }, + { + "epoch": 61.506806282722515, + "grad_norm": 1.0833253860473633, + "learning_rate": 1.9257322175732218e-05, + "loss": 0.5722423553466797, + "step": 14700 + }, + { + "epoch": 61.92565445026178, + "grad_norm": 1.1481914520263672, + "learning_rate": 1.904811715481172e-05, + "loss": 0.5769286346435547, + "step": 14800 + }, + { + "epoch": 62.3434554973822, + "grad_norm": 1.0194867849349976, + "learning_rate": 1.8838912133891216e-05, + "loss": 0.5702044296264649, + "step": 14900 + }, + { + "epoch": 62.76230366492147, + "grad_norm": 1.091729760169983, + "learning_rate": 1.8629707112970713e-05, + "loss": 0.5723474502563477, + "step": 15000 + }, + { + "epoch": 63.18010471204188, + "grad_norm": 1.1202044486999512, + "learning_rate": 1.842050209205021e-05, + "loss": 0.5727936935424804, + "step": 15100 + }, + { + "epoch": 63.598952879581155, + "grad_norm": 2.251441240310669, + "learning_rate": 1.821129707112971e-05, + "loss": 0.5719662857055664, + "step": 15200 + }, + { + "epoch": 64.01675392670157, + "grad_norm": 0.9448971152305603, + "learning_rate": 1.8002092050209206e-05, + "loss": 0.5750114822387695, + "step": 15300 + }, + { + "epoch": 64.43560209424083, + "grad_norm": 1.6223911046981812, + "learning_rate": 1.7792887029288703e-05, + "loss": 0.5684125900268555, + "step": 15400 + }, + { + "epoch": 64.8544502617801, + "grad_norm": 1.105802297592163, + "learning_rate": 1.75836820083682e-05, + "loss": 0.5749607467651368, + "step": 15500 + }, + { + "epoch": 65.27225130890052, + "grad_norm": 1.0070587396621704, + "learning_rate": 1.73744769874477e-05, + "loss": 0.5693588256835938, + "step": 15600 + }, + { + "epoch": 65.69109947643979, + "grad_norm": 1.1097147464752197, + "learning_rate": 1.7165271966527196e-05, + "loss": 0.5717815780639648, + "step": 15700 + }, + { + "epoch": 66.10890052356021, + "grad_norm": 1.2500536441802979, + "learning_rate": 1.6956066945606697e-05, + "loss": 0.571502685546875, + "step": 15800 + }, + { + "epoch": 66.52774869109948, + "grad_norm": 1.0019428730010986, + "learning_rate": 1.6746861924686194e-05, + "loss": 0.567553482055664, + "step": 15900 + }, + { + "epoch": 66.94659685863874, + "grad_norm": 1.0604379177093506, + "learning_rate": 1.653765690376569e-05, + "loss": 0.5749691390991211, + "step": 16000 + }, + { + "epoch": 67.36439790575916, + "grad_norm": 1.049307942390442, + "learning_rate": 1.632845188284519e-05, + "loss": 0.5671145248413086, + "step": 16100 + }, + { + "epoch": 67.78324607329843, + "grad_norm": 1.0208990573883057, + "learning_rate": 1.6119246861924687e-05, + "loss": 0.5698457717895508, + "step": 16200 + }, + { + "epoch": 68.20104712041885, + "grad_norm": 0.9725692272186279, + "learning_rate": 1.5910041841004184e-05, + "loss": 0.5694425964355468, + "step": 16300 + }, + { + "epoch": 68.61989528795812, + "grad_norm": 1.1082414388656616, + "learning_rate": 1.5700836820083685e-05, + "loss": 0.5668373107910156, + "step": 16400 + }, + { + "epoch": 69.03769633507854, + "grad_norm": 0.9503616690635681, + "learning_rate": 1.5491631799163182e-05, + "loss": 0.5709575653076172, + "step": 16500 + }, + { + "epoch": 69.4565445026178, + "grad_norm": 1.174117922782898, + "learning_rate": 1.528242677824268e-05, + "loss": 0.5630858230590821, + "step": 16600 + }, + { + "epoch": 69.87539267015707, + "grad_norm": 1.233062744140625, + "learning_rate": 1.5073221757322176e-05, + "loss": 0.5713355255126953, + "step": 16700 + }, + { + "epoch": 70.29319371727749, + "grad_norm": 1.1545337438583374, + "learning_rate": 1.4864016736401673e-05, + "loss": 0.5669760513305664, + "step": 16800 + }, + { + "epoch": 70.71204188481676, + "grad_norm": 1.2455624341964722, + "learning_rate": 1.4654811715481172e-05, + "loss": 0.5687417984008789, + "step": 16900 + }, + { + "epoch": 71.12984293193718, + "grad_norm": 1.1097911596298218, + "learning_rate": 1.444560669456067e-05, + "loss": 0.5687915420532227, + "step": 17000 + }, + { + "epoch": 71.54869109947644, + "grad_norm": 1.3409907817840576, + "learning_rate": 1.4236401673640167e-05, + "loss": 0.5652975845336914, + "step": 17100 + }, + { + "epoch": 71.96753926701571, + "grad_norm": 1.0018601417541504, + "learning_rate": 1.4027196652719665e-05, + "loss": 0.5693225479125976, + "step": 17200 + }, + { + "epoch": 72.38534031413613, + "grad_norm": 0.9709707498550415, + "learning_rate": 1.3817991631799162e-05, + "loss": 0.5642803955078125, + "step": 17300 + }, + { + "epoch": 72.8041884816754, + "grad_norm": 1.0293502807617188, + "learning_rate": 1.3608786610878663e-05, + "loss": 0.567535514831543, + "step": 17400 + }, + { + "epoch": 73.22198952879582, + "grad_norm": 1.0947306156158447, + "learning_rate": 1.339958158995816e-05, + "loss": 0.5657819747924805, + "step": 17500 + }, + { + "epoch": 73.64083769633508, + "grad_norm": 1.0627623796463013, + "learning_rate": 1.3190376569037658e-05, + "loss": 0.5648831939697265, + "step": 17600 + }, + { + "epoch": 74.0586387434555, + "grad_norm": 1.092600703239441, + "learning_rate": 1.2981171548117154e-05, + "loss": 0.567056770324707, + "step": 17700 + }, + { + "epoch": 74.47748691099477, + "grad_norm": 1.1139910221099854, + "learning_rate": 1.2771966527196651e-05, + "loss": 0.5629258728027344, + "step": 17800 + }, + { + "epoch": 74.89633507853404, + "grad_norm": 1.0925103425979614, + "learning_rate": 1.2562761506276152e-05, + "loss": 0.5671181869506836, + "step": 17900 + }, + { + "epoch": 75.31413612565446, + "grad_norm": 1.4127650260925293, + "learning_rate": 1.235355648535565e-05, + "loss": 0.5614471054077148, + "step": 18000 + }, + { + "epoch": 75.73298429319372, + "grad_norm": 0.9931116104125977, + "learning_rate": 1.2144351464435147e-05, + "loss": 0.565269546508789, + "step": 18100 + }, + { + "epoch": 76.15078534031413, + "grad_norm": 1.1718937158584595, + "learning_rate": 1.1935146443514645e-05, + "loss": 0.5644131851196289, + "step": 18200 + }, + { + "epoch": 76.5696335078534, + "grad_norm": 0.9517426490783691, + "learning_rate": 1.1725941422594142e-05, + "loss": 0.5629844284057617, + "step": 18300 + }, + { + "epoch": 76.98848167539268, + "grad_norm": 1.0832480192184448, + "learning_rate": 1.1518828451882845e-05, + "loss": 0.5671321487426758, + "step": 18400 + }, + { + "epoch": 77.40628272251308, + "grad_norm": 1.1618616580963135, + "learning_rate": 1.1309623430962343e-05, + "loss": 0.5599403762817383, + "step": 18500 + }, + { + "epoch": 77.82513089005235, + "grad_norm": 1.0287295579910278, + "learning_rate": 1.1100418410041842e-05, + "loss": 0.5632502746582031, + "step": 18600 + }, + { + "epoch": 78.24293193717277, + "grad_norm": 1.048791766166687, + "learning_rate": 1.089121338912134e-05, + "loss": 0.5621784591674804, + "step": 18700 + }, + { + "epoch": 78.66178010471204, + "grad_norm": 1.03757643699646, + "learning_rate": 1.0682008368200837e-05, + "loss": 0.5616426467895508, + "step": 18800 + }, + { + "epoch": 79.07958115183246, + "grad_norm": 1.305603265762329, + "learning_rate": 1.0472803347280336e-05, + "loss": 0.5662485504150391, + "step": 18900 + }, + { + "epoch": 79.49842931937172, + "grad_norm": 1.0828039646148682, + "learning_rate": 1.0263598326359834e-05, + "loss": 0.5587220764160157, + "step": 19000 + }, + { + "epoch": 79.91727748691099, + "grad_norm": 1.0541635751724243, + "learning_rate": 1.0054393305439331e-05, + "loss": 0.5656935882568359, + "step": 19100 + }, + { + "epoch": 80.33507853403141, + "grad_norm": 1.4421244859695435, + "learning_rate": 9.845188284518828e-06, + "loss": 0.5583715057373047, + "step": 19200 + }, + { + "epoch": 80.75392670157068, + "grad_norm": 0.9934247732162476, + "learning_rate": 9.635983263598326e-06, + "loss": 0.5621566390991211, + "step": 19300 + }, + { + "epoch": 81.1717277486911, + "grad_norm": 1.331549048423767, + "learning_rate": 9.426778242677825e-06, + "loss": 0.5624060821533203, + "step": 19400 + }, + { + "epoch": 81.59057591623036, + "grad_norm": 1.1185020208358765, + "learning_rate": 9.217573221757323e-06, + "loss": 0.5596007537841797, + "step": 19500 + }, + { + "epoch": 82.00837696335078, + "grad_norm": 1.0355136394500732, + "learning_rate": 9.008368200836822e-06, + "loss": 0.5647842788696289, + "step": 19600 + }, + { + "epoch": 82.42722513089005, + "grad_norm": 0.9967537522315979, + "learning_rate": 8.79916317991632e-06, + "loss": 0.5558248519897461, + "step": 19700 + }, + { + "epoch": 82.84607329842932, + "grad_norm": 1.1115660667419434, + "learning_rate": 8.589958158995815e-06, + "loss": 0.5625948333740234, + "step": 19800 + }, + { + "epoch": 83.26387434554974, + "grad_norm": 1.1838023662567139, + "learning_rate": 8.380753138075314e-06, + "loss": 0.559094467163086, + "step": 19900 + }, + { + "epoch": 83.682722513089, + "grad_norm": 1.232723593711853, + "learning_rate": 8.171548117154812e-06, + "loss": 0.5604278564453125, + "step": 20000 + }, + { + "epoch": 84.10052356020942, + "grad_norm": 0.9662663340568542, + "learning_rate": 7.962343096234311e-06, + "loss": 0.560697135925293, + "step": 20100 + }, + { + "epoch": 84.51937172774869, + "grad_norm": 0.95435631275177, + "learning_rate": 7.753138075313808e-06, + "loss": 0.5556485748291016, + "step": 20200 + }, + { + "epoch": 84.93821989528796, + "grad_norm": 1.1006091833114624, + "learning_rate": 7.543933054393305e-06, + "loss": 0.5629526138305664, + "step": 20300 + }, + { + "epoch": 85.35602094240838, + "grad_norm": 1.0648730993270874, + "learning_rate": 7.336820083682008e-06, + "loss": 0.5561338043212891, + "step": 20400 + }, + { + "epoch": 85.77486910994764, + "grad_norm": 1.0455604791641235, + "learning_rate": 7.127615062761507e-06, + "loss": 0.5590327835083008, + "step": 20500 + }, + { + "epoch": 86.19267015706806, + "grad_norm": 1.2354342937469482, + "learning_rate": 6.918410041841005e-06, + "loss": 0.558480224609375, + "step": 20600 + }, + { + "epoch": 86.61151832460733, + "grad_norm": 1.1213362216949463, + "learning_rate": 6.709205020920502e-06, + "loss": 0.5574909973144532, + "step": 20700 + }, + { + "epoch": 87.02931937172775, + "grad_norm": 1.2145981788635254, + "learning_rate": 6.5000000000000004e-06, + "loss": 0.5595388793945313, + "step": 20800 + }, + { + "epoch": 87.44816753926702, + "grad_norm": 1.1763968467712402, + "learning_rate": 6.290794979079498e-06, + "loss": 0.5566361618041992, + "step": 20900 + }, + { + "epoch": 87.86701570680628, + "grad_norm": 0.9883760213851929, + "learning_rate": 6.081589958158996e-06, + "loss": 0.558988037109375, + "step": 21000 + }, + { + "epoch": 88.2848167539267, + "grad_norm": 1.3407195806503296, + "learning_rate": 5.872384937238494e-06, + "loss": 0.555633430480957, + "step": 21100 + }, + { + "epoch": 88.70366492146597, + "grad_norm": 1.2197387218475342, + "learning_rate": 5.663179916317992e-06, + "loss": 0.5576942443847657, + "step": 21200 + }, + { + "epoch": 89.12146596858639, + "grad_norm": 0.9664437770843506, + "learning_rate": 5.45397489539749e-06, + "loss": 0.5581797409057617, + "step": 21300 + }, + { + "epoch": 89.54031413612566, + "grad_norm": 1.2320648431777954, + "learning_rate": 5.244769874476987e-06, + "loss": 0.5559272003173829, + "step": 21400 + }, + { + "epoch": 89.95916230366493, + "grad_norm": 1.1831936836242676, + "learning_rate": 5.035564853556485e-06, + "loss": 0.5578675842285157, + "step": 21500 + }, + { + "epoch": 90.37696335078535, + "grad_norm": 1.0145848989486694, + "learning_rate": 4.826359832635984e-06, + "loss": 0.555514259338379, + "step": 21600 + }, + { + "epoch": 90.79581151832461, + "grad_norm": 1.1567530632019043, + "learning_rate": 4.617154811715481e-06, + "loss": 0.5568828964233399, + "step": 21700 + }, + { + "epoch": 91.21361256544503, + "grad_norm": 1.1194156408309937, + "learning_rate": 4.4079497907949796e-06, + "loss": 0.5556546783447266, + "step": 21800 + }, + { + "epoch": 91.6324607329843, + "grad_norm": 1.058899164199829, + "learning_rate": 4.198744769874477e-06, + "loss": 0.5552133178710937, + "step": 21900 + }, + { + "epoch": 92.0502617801047, + "grad_norm": 1.0123540163040161, + "learning_rate": 3.989539748953975e-06, + "loss": 0.55712158203125, + "step": 22000 + }, + { + "epoch": 92.46910994764399, + "grad_norm": 1.0693333148956299, + "learning_rate": 3.780334728033473e-06, + "loss": 0.5530570983886719, + "step": 22100 + }, + { + "epoch": 92.88795811518325, + "grad_norm": 1.020864725112915, + "learning_rate": 3.571129707112971e-06, + "loss": 0.5573068618774414, + "step": 22200 + }, + { + "epoch": 93.30575916230366, + "grad_norm": 1.1115072965621948, + "learning_rate": 3.3619246861924683e-06, + "loss": 0.5556851959228516, + "step": 22300 + }, + { + "epoch": 93.72460732984293, + "grad_norm": 1.0190234184265137, + "learning_rate": 3.1548117154811716e-06, + "loss": 0.5554112243652344, + "step": 22400 + }, + { + "epoch": 94.14240837696335, + "grad_norm": 1.0990245342254639, + "learning_rate": 2.9456066945606695e-06, + "loss": 0.5539827346801758, + "step": 22500 + }, + { + "epoch": 94.56125654450261, + "grad_norm": 1.0113505125045776, + "learning_rate": 2.7364016736401674e-06, + "loss": 0.5531864929199218, + "step": 22600 + }, + { + "epoch": 94.98010471204188, + "grad_norm": 1.0651323795318604, + "learning_rate": 2.5271966527196657e-06, + "loss": 0.5547758865356446, + "step": 22700 + }, + { + "epoch": 95.3979057591623, + "grad_norm": 0.9893053770065308, + "learning_rate": 2.317991631799163e-06, + "loss": 0.5521963882446289, + "step": 22800 + }, + { + "epoch": 95.81675392670157, + "grad_norm": 1.2413371801376343, + "learning_rate": 2.108786610878661e-06, + "loss": 0.5545172119140624, + "step": 22900 + }, + { + "epoch": 96.23455497382199, + "grad_norm": 1.1037617921829224, + "learning_rate": 1.899581589958159e-06, + "loss": 0.5509216690063476, + "step": 23000 + }, + { + "epoch": 96.65340314136125, + "grad_norm": 0.9777401089668274, + "learning_rate": 1.690376569037657e-06, + "loss": 0.5538136672973633, + "step": 23100 + }, + { + "epoch": 97.07120418848167, + "grad_norm": 1.0018055438995361, + "learning_rate": 1.4811715481171548e-06, + "loss": 0.5540202331542968, + "step": 23200 + }, + { + "epoch": 97.49005235602094, + "grad_norm": 1.0007930994033813, + "learning_rate": 1.2719665271966528e-06, + "loss": 0.5524462509155273, + "step": 23300 + }, + { + "epoch": 97.9089005235602, + "grad_norm": 1.1463111639022827, + "learning_rate": 1.0627615062761507e-06, + "loss": 0.5535177612304687, + "step": 23400 + }, + { + "epoch": 98.32670157068063, + "grad_norm": 0.980787456035614, + "learning_rate": 8.535564853556486e-07, + "loss": 0.553234977722168, + "step": 23500 + }, + { + "epoch": 98.74554973821989, + "grad_norm": 1.0415117740631104, + "learning_rate": 6.443514644351465e-07, + "loss": 0.5528529357910156, + "step": 23600 + } + ], + "logging_steps": 100, + "max_steps": 23900, + "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": 3078500329193472.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/training_args.bin b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc664521f815e55efb1e2ec57db59f2857c50993 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/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": 485 +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/generation_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/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/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/model.safetensors b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..411e424b59f66ec6b800ddfcbcc47a353617f6e5 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6e29581480bcbe1f72571adffbdbdf6608ba31623030d2ad1a571ecf1f78a5 +size 174758344 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/optimizer.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e86cac14a407c89430048bcda72e57850a720eae --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2870d25e655ef5e2c9345d9be02fd3583af0c933f3f89e77be73596b5283e67a +size 349565771 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/rng_state.pth b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7131a6ae08ca880d07fd67d6b585e9d158821c73 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc0648346ca0ab6425752e816a7a3346785d6c6c47a29f4d8100a085a627e0f +size 14645 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/scaler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ea6e97e1262355d807ac38da16d8c46272a31b4b --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffb8d5d20920fab1210b30fd07fdcc2cbf665db7d6723609ce1accad5263e99 +size 1383 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/scheduler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1c5d45e3706a3286212a4b5e4aa8a5781d20d2d9 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464711f5f929504fcb4b2e7fd37fb1d5a77ae4f2859d1157aa156bc8f5e6c95a +size 1465 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/trainer_state.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..6ffbe05c63f199116922f44e497b7d45e494531c --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/trainer_state.json @@ -0,0 +1,1686 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 23661, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.418848167539267, + "grad_norm": 1.7357312440872192, + "learning_rate": 4.9792887029288705e-05, + "loss": 1.957039794921875, + "step": 100 + }, + { + "epoch": 0.837696335078534, + "grad_norm": 1.7951552867889404, + "learning_rate": 4.9583682008368206e-05, + "loss": 1.2064629364013673, + "step": 200 + }, + { + "epoch": 1.255497382198953, + "grad_norm": 1.674418330192566, + "learning_rate": 4.93744769874477e-05, + "loss": 1.0603108978271485, + "step": 300 + }, + { + "epoch": 1.67434554973822, + "grad_norm": 1.6522367000579834, + "learning_rate": 4.91652719665272e-05, + "loss": 0.9886434936523437, + "step": 400 + }, + { + "epoch": 2.0921465968586386, + "grad_norm": 1.483288288116455, + "learning_rate": 4.89560669456067e-05, + "loss": 0.9375139617919922, + "step": 500 + }, + { + "epoch": 2.510994764397906, + "grad_norm": 1.5848816633224487, + "learning_rate": 4.8746861924686196e-05, + "loss": 0.8872322082519531, + "step": 600 + }, + { + "epoch": 2.9298429319371726, + "grad_norm": 1.5845175981521606, + "learning_rate": 4.85376569037657e-05, + "loss": 0.8752645111083984, + "step": 700 + }, + { + "epoch": 3.3476439790575916, + "grad_norm": 1.454902172088623, + "learning_rate": 4.832845188284519e-05, + "loss": 0.8418380737304687, + "step": 800 + }, + { + "epoch": 3.7664921465968586, + "grad_norm": 1.3893290758132935, + "learning_rate": 4.8119246861924685e-05, + "loss": 0.8182624053955078, + "step": 900 + }, + { + "epoch": 4.184293193717277, + "grad_norm": 1.504209280014038, + "learning_rate": 4.7910041841004186e-05, + "loss": 0.8018088531494141, + "step": 1000 + }, + { + "epoch": 4.603141361256545, + "grad_norm": 1.6646430492401123, + "learning_rate": 4.770083682008368e-05, + "loss": 0.7877240753173829, + "step": 1100 + }, + { + "epoch": 5.020942408376963, + "grad_norm": 1.3648449182510376, + "learning_rate": 4.749163179916318e-05, + "loss": 0.7797740936279297, + "step": 1200 + }, + { + "epoch": 5.439790575916231, + "grad_norm": 1.410872459411621, + "learning_rate": 4.7282426778242675e-05, + "loss": 0.7617485809326172, + "step": 1300 + }, + { + "epoch": 5.858638743455497, + "grad_norm": 1.4345377683639526, + "learning_rate": 4.7073221757322176e-05, + "loss": 0.7631221771240234, + "step": 1400 + }, + { + "epoch": 6.276439790575917, + "grad_norm": 1.327006459236145, + "learning_rate": 4.686401673640168e-05, + "loss": 0.7484178161621093, + "step": 1500 + }, + { + "epoch": 6.695287958115183, + "grad_norm": 1.420089602470398, + "learning_rate": 4.665481171548117e-05, + "loss": 0.7441964721679688, + "step": 1600 + }, + { + "epoch": 7.113089005235602, + "grad_norm": 1.5513347387313843, + "learning_rate": 4.644560669456067e-05, + "loss": 0.7383489227294922, + "step": 1700 + }, + { + "epoch": 7.531937172774869, + "grad_norm": 1.3362606763839722, + "learning_rate": 4.6236401673640166e-05, + "loss": 0.7281642913818359, + "step": 1800 + }, + { + "epoch": 7.950785340314136, + "grad_norm": 1.2809451818466187, + "learning_rate": 4.602719665271967e-05, + "loss": 0.7310231018066407, + "step": 1900 + }, + { + "epoch": 8.368586387434554, + "grad_norm": 1.2832854986190796, + "learning_rate": 4.581799163179917e-05, + "loss": 0.7165196990966797, + "step": 2000 + }, + { + "epoch": 8.787434554973823, + "grad_norm": 1.1414157152175903, + "learning_rate": 4.560878661087866e-05, + "loss": 0.7179119873046875, + "step": 2100 + }, + { + "epoch": 9.205235602094241, + "grad_norm": 1.0745928287506104, + "learning_rate": 4.539958158995816e-05, + "loss": 0.7131906890869141, + "step": 2200 + }, + { + "epoch": 9.624083769633508, + "grad_norm": 1.1124597787857056, + "learning_rate": 4.519037656903766e-05, + "loss": 0.7061318206787109, + "step": 2300 + }, + { + "epoch": 10.041884816753926, + "grad_norm": 0.9845342040061951, + "learning_rate": 4.498117154811716e-05, + "loss": 0.7075148773193359, + "step": 2400 + }, + { + "epoch": 10.460732984293193, + "grad_norm": 1.1672662496566772, + "learning_rate": 4.477196652719666e-05, + "loss": 0.7008012390136719, + "step": 2500 + }, + { + "epoch": 10.879581151832461, + "grad_norm": 1.181514859199524, + "learning_rate": 4.456276150627615e-05, + "loss": 0.6990177154541015, + "step": 2600 + }, + { + "epoch": 11.29738219895288, + "grad_norm": 1.1406160593032837, + "learning_rate": 4.4353556485355653e-05, + "loss": 0.690523681640625, + "step": 2700 + }, + { + "epoch": 11.716230366492146, + "grad_norm": 1.1152310371398926, + "learning_rate": 4.414435146443515e-05, + "loss": 0.6935369110107422, + "step": 2800 + }, + { + "epoch": 12.134031413612565, + "grad_norm": 1.283378005027771, + "learning_rate": 4.393514644351465e-05, + "loss": 0.6885635375976562, + "step": 2900 + }, + { + "epoch": 12.552879581151833, + "grad_norm": 1.2980977296829224, + "learning_rate": 4.372594142259415e-05, + "loss": 0.6849569702148437, + "step": 3000 + }, + { + "epoch": 12.9717277486911, + "grad_norm": 1.1399869918823242, + "learning_rate": 4.3516736401673643e-05, + "loss": 0.6880906677246094, + "step": 3100 + }, + { + "epoch": 13.389528795811518, + "grad_norm": 1.2640913724899292, + "learning_rate": 4.3307531380753144e-05, + "loss": 0.6769008636474609, + "step": 3200 + }, + { + "epoch": 13.808376963350785, + "grad_norm": 1.2051986455917358, + "learning_rate": 4.309832635983264e-05, + "loss": 0.6841930389404297, + "step": 3300 + }, + { + "epoch": 14.226178010471203, + "grad_norm": 1.5682283639907837, + "learning_rate": 4.288912133891214e-05, + "loss": 0.6762271118164063, + "step": 3400 + }, + { + "epoch": 14.645026178010472, + "grad_norm": 1.2480769157409668, + "learning_rate": 4.267991631799163e-05, + "loss": 0.6741954040527344, + "step": 3500 + }, + { + "epoch": 15.06282722513089, + "grad_norm": 1.1682356595993042, + "learning_rate": 4.247071129707113e-05, + "loss": 0.6774851989746093, + "step": 3600 + }, + { + "epoch": 15.481675392670157, + "grad_norm": 1.1353213787078857, + "learning_rate": 4.226150627615063e-05, + "loss": 0.6634797668457031, + "step": 3700 + }, + { + "epoch": 15.900523560209423, + "grad_norm": 1.2949745655059814, + "learning_rate": 4.205230125523012e-05, + "loss": 0.6736211395263672, + "step": 3800 + }, + { + "epoch": 16.318324607329842, + "grad_norm": 1.1021099090576172, + "learning_rate": 4.184309623430962e-05, + "loss": 0.6624949645996093, + "step": 3900 + }, + { + "epoch": 16.73717277486911, + "grad_norm": 1.2462520599365234, + "learning_rate": 4.1633891213389124e-05, + "loss": 0.6662584686279297, + "step": 4000 + }, + { + "epoch": 17.15497382198953, + "grad_norm": 1.2026138305664062, + "learning_rate": 4.142468619246862e-05, + "loss": 0.665372543334961, + "step": 4100 + }, + { + "epoch": 17.573821989528795, + "grad_norm": 1.1689097881317139, + "learning_rate": 4.121548117154812e-05, + "loss": 0.6616575622558594, + "step": 4200 + }, + { + "epoch": 17.992670157068062, + "grad_norm": 1.1259592771530151, + "learning_rate": 4.100627615062761e-05, + "loss": 0.6627973937988281, + "step": 4300 + }, + { + "epoch": 18.410471204188482, + "grad_norm": 1.1528080701828003, + "learning_rate": 4.0797071129707114e-05, + "loss": 0.6545208740234375, + "step": 4400 + }, + { + "epoch": 18.82931937172775, + "grad_norm": 1.078765869140625, + "learning_rate": 4.0587866108786615e-05, + "loss": 0.659375, + "step": 4500 + }, + { + "epoch": 19.24712041884817, + "grad_norm": 1.1452678442001343, + "learning_rate": 4.037866108786611e-05, + "loss": 0.6517630767822266, + "step": 4600 + }, + { + "epoch": 19.665968586387436, + "grad_norm": 1.3625253438949585, + "learning_rate": 4.016945606694561e-05, + "loss": 0.6546914672851563, + "step": 4700 + }, + { + "epoch": 20.083769633507853, + "grad_norm": 1.0734823942184448, + "learning_rate": 3.9960251046025104e-05, + "loss": 0.653277359008789, + "step": 4800 + }, + { + "epoch": 20.50261780104712, + "grad_norm": 1.0875906944274902, + "learning_rate": 3.9751046025104605e-05, + "loss": 0.6477639770507813, + "step": 4900 + }, + { + "epoch": 20.921465968586386, + "grad_norm": 1.2992547750473022, + "learning_rate": 3.9541841004184106e-05, + "loss": 0.6525312805175781, + "step": 5000 + }, + { + "epoch": 21.339267015706806, + "grad_norm": 1.1078609228134155, + "learning_rate": 3.93326359832636e-05, + "loss": 0.643624038696289, + "step": 5100 + }, + { + "epoch": 21.758115183246073, + "grad_norm": 1.1027839183807373, + "learning_rate": 3.91234309623431e-05, + "loss": 0.64830322265625, + "step": 5200 + }, + { + "epoch": 22.175916230366493, + "grad_norm": 1.1493128538131714, + "learning_rate": 3.8914225941422595e-05, + "loss": 0.6440758514404297, + "step": 5300 + }, + { + "epoch": 22.59476439790576, + "grad_norm": 1.1990758180618286, + "learning_rate": 3.8705020920502096e-05, + "loss": 0.6450751495361328, + "step": 5400 + }, + { + "epoch": 23.012565445026176, + "grad_norm": 1.1392757892608643, + "learning_rate": 3.84958158995816e-05, + "loss": 0.6439768981933593, + "step": 5500 + }, + { + "epoch": 23.431413612565446, + "grad_norm": 1.145913004875183, + "learning_rate": 3.828661087866109e-05, + "loss": 0.6345698547363281, + "step": 5600 + }, + { + "epoch": 23.850261780104713, + "grad_norm": 1.1432591676712036, + "learning_rate": 3.807740585774059e-05, + "loss": 0.6436957550048829, + "step": 5700 + }, + { + "epoch": 24.26806282722513, + "grad_norm": 1.0853745937347412, + "learning_rate": 3.7868200836820086e-05, + "loss": 0.634792594909668, + "step": 5800 + }, + { + "epoch": 24.686910994764396, + "grad_norm": 1.0998246669769287, + "learning_rate": 3.765899581589959e-05, + "loss": 0.6373896789550781, + "step": 5900 + }, + { + "epoch": 25.104712041884817, + "grad_norm": 1.427016258239746, + "learning_rate": 3.744979079497908e-05, + "loss": 0.639299545288086, + "step": 6000 + }, + { + "epoch": 25.523560209424083, + "grad_norm": 1.0360475778579712, + "learning_rate": 3.724058577405858e-05, + "loss": 0.6306960296630859, + "step": 6100 + }, + { + "epoch": 25.94240837696335, + "grad_norm": 1.029296875, + "learning_rate": 3.7031380753138076e-05, + "loss": 0.635133056640625, + "step": 6200 + }, + { + "epoch": 26.36020942408377, + "grad_norm": 1.0714229345321655, + "learning_rate": 3.682217573221757e-05, + "loss": 0.6279976272583008, + "step": 6300 + }, + { + "epoch": 26.779057591623037, + "grad_norm": 1.0668662786483765, + "learning_rate": 3.661297071129707e-05, + "loss": 0.6319166564941406, + "step": 6400 + }, + { + "epoch": 27.196858638743457, + "grad_norm": 1.2612731456756592, + "learning_rate": 3.640376569037657e-05, + "loss": 0.626447639465332, + "step": 6500 + }, + { + "epoch": 27.615706806282724, + "grad_norm": 1.111774206161499, + "learning_rate": 3.6194560669456066e-05, + "loss": 0.6283223724365234, + "step": 6600 + }, + { + "epoch": 28.03350785340314, + "grad_norm": 1.1588354110717773, + "learning_rate": 3.5985355648535567e-05, + "loss": 0.6337715148925781, + "step": 6700 + }, + { + "epoch": 28.452356020942407, + "grad_norm": 1.2656804323196411, + "learning_rate": 3.577615062761506e-05, + "loss": 0.6196572494506836, + "step": 6800 + }, + { + "epoch": 28.871204188481677, + "grad_norm": 1.0904902219772339, + "learning_rate": 3.556694560669456e-05, + "loss": 0.6265386581420899, + "step": 6900 + }, + { + "epoch": 29.289005235602094, + "grad_norm": 1.2348970174789429, + "learning_rate": 3.535774058577406e-05, + "loss": 0.6187874221801758, + "step": 7000 + }, + { + "epoch": 29.70785340314136, + "grad_norm": 1.0990043878555298, + "learning_rate": 3.5148535564853556e-05, + "loss": 0.6251428985595703, + "step": 7100 + }, + { + "epoch": 30.12565445026178, + "grad_norm": 1.3289461135864258, + "learning_rate": 3.493933054393306e-05, + "loss": 0.6217424011230469, + "step": 7200 + }, + { + "epoch": 30.544502617801047, + "grad_norm": 1.1826465129852295, + "learning_rate": 3.473012552301255e-05, + "loss": 0.6176059722900391, + "step": 7300 + }, + { + "epoch": 30.963350785340314, + "grad_norm": 1.1363434791564941, + "learning_rate": 3.452092050209205e-05, + "loss": 0.6250752258300781, + "step": 7400 + }, + { + "epoch": 31.381151832460734, + "grad_norm": 1.0488321781158447, + "learning_rate": 3.431171548117155e-05, + "loss": 0.6131296157836914, + "step": 7500 + }, + { + "epoch": 31.8, + "grad_norm": 1.0740634202957153, + "learning_rate": 3.410251046025105e-05, + "loss": 0.62077392578125, + "step": 7600 + }, + { + "epoch": 32.21780104712042, + "grad_norm": 1.2768574953079224, + "learning_rate": 3.389330543933055e-05, + "loss": 0.6132323074340821, + "step": 7700 + }, + { + "epoch": 32.636649214659684, + "grad_norm": 1.2454967498779297, + "learning_rate": 3.368410041841004e-05, + "loss": 0.6179965972900391, + "step": 7800 + }, + { + "epoch": 33.054450261780104, + "grad_norm": 1.0509141683578491, + "learning_rate": 3.347489539748954e-05, + "loss": 0.6159653091430664, + "step": 7900 + }, + { + "epoch": 33.47329842931937, + "grad_norm": 1.2346339225769043, + "learning_rate": 3.3265690376569044e-05, + "loss": 0.608684196472168, + "step": 8000 + }, + { + "epoch": 33.89214659685864, + "grad_norm": 1.0819355249404907, + "learning_rate": 3.305648535564854e-05, + "loss": 0.6147115707397461, + "step": 8100 + }, + { + "epoch": 34.30994764397906, + "grad_norm": 1.2290990352630615, + "learning_rate": 3.284728033472804e-05, + "loss": 0.6080178833007812, + "step": 8200 + }, + { + "epoch": 34.728795811518324, + "grad_norm": 1.0522081851959229, + "learning_rate": 3.263807531380753e-05, + "loss": 0.6099481964111328, + "step": 8300 + }, + { + "epoch": 35.146596858638745, + "grad_norm": 1.1879432201385498, + "learning_rate": 3.2428870292887034e-05, + "loss": 0.6108789443969727, + "step": 8400 + }, + { + "epoch": 35.56544502617801, + "grad_norm": 1.2454171180725098, + "learning_rate": 3.2219665271966535e-05, + "loss": 0.6051754760742187, + "step": 8500 + }, + { + "epoch": 35.98429319371728, + "grad_norm": 1.2238366603851318, + "learning_rate": 3.201046025104603e-05, + "loss": 0.6135285949707031, + "step": 8600 + }, + { + "epoch": 36.4020942408377, + "grad_norm": 1.3203046321868896, + "learning_rate": 3.180125523012552e-05, + "loss": 0.6003643417358399, + "step": 8700 + }, + { + "epoch": 36.820942408376965, + "grad_norm": 1.3004391193389893, + "learning_rate": 3.1592050209205024e-05, + "loss": 0.6084416961669922, + "step": 8800 + }, + { + "epoch": 37.238743455497385, + "grad_norm": 1.0923435688018799, + "learning_rate": 3.138284518828452e-05, + "loss": 0.6027616119384765, + "step": 8900 + }, + { + "epoch": 37.65759162303665, + "grad_norm": 1.3689918518066406, + "learning_rate": 3.117364016736402e-05, + "loss": 0.6034185409545898, + "step": 9000 + }, + { + "epoch": 38.075392670157065, + "grad_norm": 1.0931211709976196, + "learning_rate": 3.096443514644351e-05, + "loss": 0.6048267364501954, + "step": 9100 + }, + { + "epoch": 38.49424083769634, + "grad_norm": 1.2372386455535889, + "learning_rate": 3.0755230125523014e-05, + "loss": 0.5964799880981445, + "step": 9200 + }, + { + "epoch": 38.913089005235605, + "grad_norm": 1.2137774229049683, + "learning_rate": 3.054602510460251e-05, + "loss": 0.6053957748413086, + "step": 9300 + }, + { + "epoch": 39.33089005235602, + "grad_norm": 1.2441918849945068, + "learning_rate": 3.033682008368201e-05, + "loss": 0.5963822937011719, + "step": 9400 + }, + { + "epoch": 39.749738219895285, + "grad_norm": 1.1947072744369507, + "learning_rate": 3.0127615062761506e-05, + "loss": 0.6023126983642578, + "step": 9500 + }, + { + "epoch": 40.167539267015705, + "grad_norm": 1.234154462814331, + "learning_rate": 2.9918410041841004e-05, + "loss": 0.6001630401611329, + "step": 9600 + }, + { + "epoch": 40.58638743455497, + "grad_norm": 1.163256287574768, + "learning_rate": 2.9709205020920505e-05, + "loss": 0.5957479858398438, + "step": 9700 + }, + { + "epoch": 41.00418848167539, + "grad_norm": 1.098540186882019, + "learning_rate": 2.95e-05, + "loss": 0.6069541168212891, + "step": 9800 + }, + { + "epoch": 41.42303664921466, + "grad_norm": 1.241861343383789, + "learning_rate": 2.92907949790795e-05, + "loss": 0.589141960144043, + "step": 9900 + }, + { + "epoch": 41.841884816753925, + "grad_norm": 1.175836205482483, + "learning_rate": 2.9081589958158994e-05, + "loss": 0.6017288970947265, + "step": 10000 + }, + { + "epoch": 42.259685863874346, + "grad_norm": 1.2884583473205566, + "learning_rate": 2.88744769874477e-05, + "loss": 0.5935973358154297, + "step": 10100 + }, + { + "epoch": 42.67853403141361, + "grad_norm": 1.247544765472412, + "learning_rate": 2.8665271966527198e-05, + "loss": 0.5953170776367187, + "step": 10200 + }, + { + "epoch": 43.09633507853403, + "grad_norm": 1.0641762018203735, + "learning_rate": 2.8456066945606695e-05, + "loss": 0.5974231338500977, + "step": 10300 + }, + { + "epoch": 43.5151832460733, + "grad_norm": 1.1697312593460083, + "learning_rate": 2.8246861924686196e-05, + "loss": 0.5913193893432617, + "step": 10400 + }, + { + "epoch": 43.934031413612566, + "grad_norm": 1.1365479230880737, + "learning_rate": 2.803765690376569e-05, + "loss": 0.598421401977539, + "step": 10500 + }, + { + "epoch": 44.351832460732986, + "grad_norm": 1.1157909631729126, + "learning_rate": 2.782845188284519e-05, + "loss": 0.5873412322998047, + "step": 10600 + }, + { + "epoch": 44.77068062827225, + "grad_norm": 1.348643183708191, + "learning_rate": 2.7619246861924685e-05, + "loss": 0.5936133193969727, + "step": 10700 + }, + { + "epoch": 45.18848167539267, + "grad_norm": 1.197517991065979, + "learning_rate": 2.7410041841004186e-05, + "loss": 0.5921408462524415, + "step": 10800 + }, + { + "epoch": 45.60732984293194, + "grad_norm": 1.2170952558517456, + "learning_rate": 2.7200836820083687e-05, + "loss": 0.5896556091308593, + "step": 10900 + }, + { + "epoch": 46.02513089005235, + "grad_norm": 1.0762948989868164, + "learning_rate": 2.699163179916318e-05, + "loss": 0.5945636749267578, + "step": 11000 + }, + { + "epoch": 46.443979057591626, + "grad_norm": 1.1585177183151245, + "learning_rate": 2.678242677824268e-05, + "loss": 0.5853750610351562, + "step": 11100 + }, + { + "epoch": 46.86282722513089, + "grad_norm": 1.3420946598052979, + "learning_rate": 2.6573221757322176e-05, + "loss": 0.5932060623168945, + "step": 11200 + }, + { + "epoch": 47.280628272251306, + "grad_norm": 1.1126630306243896, + "learning_rate": 2.6364016736401677e-05, + "loss": 0.5834246063232422, + "step": 11300 + }, + { + "epoch": 47.69947643979057, + "grad_norm": 1.2244997024536133, + "learning_rate": 2.615481171548117e-05, + "loss": 0.5885814666748047, + "step": 11400 + }, + { + "epoch": 48.11727748691099, + "grad_norm": 1.3700648546218872, + "learning_rate": 2.594560669456067e-05, + "loss": 0.5896315383911133, + "step": 11500 + }, + { + "epoch": 48.53612565445026, + "grad_norm": 1.2028729915618896, + "learning_rate": 2.573640167364017e-05, + "loss": 0.5825551223754882, + "step": 11600 + }, + { + "epoch": 48.954973821989526, + "grad_norm": 1.198599934577942, + "learning_rate": 2.5527196652719663e-05, + "loss": 0.592343978881836, + "step": 11700 + }, + { + "epoch": 49.372774869109946, + "grad_norm": 1.1620557308197021, + "learning_rate": 2.5317991631799164e-05, + "loss": 0.5804216766357422, + "step": 11800 + }, + { + "epoch": 49.79162303664921, + "grad_norm": 1.2490957975387573, + "learning_rate": 2.5108786610878658e-05, + "loss": 0.5864405059814453, + "step": 11900 + }, + { + "epoch": 50.20942408376963, + "grad_norm": 1.1138325929641724, + "learning_rate": 2.489958158995816e-05, + "loss": 0.5846857070922852, + "step": 12000 + }, + { + "epoch": 50.6282722513089, + "grad_norm": 1.2332500219345093, + "learning_rate": 2.4692468619246865e-05, + "loss": 0.5829949188232422, + "step": 12100 + }, + { + "epoch": 51.04607329842932, + "grad_norm": 1.257340908050537, + "learning_rate": 2.4483263598326363e-05, + "loss": 0.5898705291748046, + "step": 12200 + }, + { + "epoch": 51.46492146596859, + "grad_norm": 1.2143198251724243, + "learning_rate": 2.427405857740586e-05, + "loss": 0.5786220550537109, + "step": 12300 + }, + { + "epoch": 51.88376963350785, + "grad_norm": 1.1260303258895874, + "learning_rate": 2.4064853556485358e-05, + "loss": 0.5868261337280274, + "step": 12400 + }, + { + "epoch": 52.301570680628274, + "grad_norm": 1.1678194999694824, + "learning_rate": 2.3855648535564852e-05, + "loss": 0.5809542846679687, + "step": 12500 + }, + { + "epoch": 52.72041884816754, + "grad_norm": 1.1895207166671753, + "learning_rate": 2.3646443514644353e-05, + "loss": 0.5844503784179688, + "step": 12600 + }, + { + "epoch": 53.13821989528796, + "grad_norm": 1.1448301076889038, + "learning_rate": 2.343723849372385e-05, + "loss": 0.5809010314941406, + "step": 12700 + }, + { + "epoch": 53.55706806282723, + "grad_norm": 1.1571141481399536, + "learning_rate": 2.3228033472803348e-05, + "loss": 0.5787462997436523, + "step": 12800 + }, + { + "epoch": 53.975916230366494, + "grad_norm": 1.0440938472747803, + "learning_rate": 2.3018828451882845e-05, + "loss": 0.5878799438476563, + "step": 12900 + }, + { + "epoch": 54.393717277486914, + "grad_norm": 1.132901668548584, + "learning_rate": 2.2809623430962343e-05, + "loss": 0.575037841796875, + "step": 13000 + }, + { + "epoch": 54.81256544502618, + "grad_norm": 1.2370219230651855, + "learning_rate": 2.2600418410041844e-05, + "loss": 0.5822734451293945, + "step": 13100 + }, + { + "epoch": 55.230366492146594, + "grad_norm": 1.1507346630096436, + "learning_rate": 2.239121338912134e-05, + "loss": 0.5782026672363281, + "step": 13200 + }, + { + "epoch": 55.64921465968587, + "grad_norm": 0.9882214665412903, + "learning_rate": 2.218200836820084e-05, + "loss": 0.580045394897461, + "step": 13300 + }, + { + "epoch": 56.06701570680628, + "grad_norm": 1.1273308992385864, + "learning_rate": 2.1972803347280336e-05, + "loss": 0.581448974609375, + "step": 13400 + }, + { + "epoch": 56.48586387434555, + "grad_norm": 1.1246113777160645, + "learning_rate": 2.1763598326359834e-05, + "loss": 0.5761925506591797, + "step": 13500 + }, + { + "epoch": 56.904712041884814, + "grad_norm": 1.1773682832717896, + "learning_rate": 2.155439330543933e-05, + "loss": 0.5803777313232422, + "step": 13600 + }, + { + "epoch": 57.322513089005234, + "grad_norm": 1.1531919240951538, + "learning_rate": 2.134518828451883e-05, + "loss": 0.5734993362426758, + "step": 13700 + }, + { + "epoch": 57.7413612565445, + "grad_norm": 1.0658059120178223, + "learning_rate": 2.1135983263598326e-05, + "loss": 0.5804447937011719, + "step": 13800 + }, + { + "epoch": 58.15916230366492, + "grad_norm": 1.256008267402649, + "learning_rate": 2.0926778242677823e-05, + "loss": 0.5771566772460938, + "step": 13900 + }, + { + "epoch": 58.57801047120419, + "grad_norm": 1.1181727647781372, + "learning_rate": 2.071757322175732e-05, + "loss": 0.5735276794433594, + "step": 14000 + }, + { + "epoch": 58.996858638743454, + "grad_norm": 1.1943111419677734, + "learning_rate": 2.0510460251046027e-05, + "loss": 0.5823272705078125, + "step": 14100 + }, + { + "epoch": 59.414659685863874, + "grad_norm": 1.245831847190857, + "learning_rate": 2.0301255230125525e-05, + "loss": 0.5691431427001953, + "step": 14200 + }, + { + "epoch": 59.83350785340314, + "grad_norm": 1.0968621969223022, + "learning_rate": 2.0092050209205022e-05, + "loss": 0.5803122329711914, + "step": 14300 + }, + { + "epoch": 60.25130890052356, + "grad_norm": 1.0285043716430664, + "learning_rate": 1.9884937238493725e-05, + "loss": 0.5736106872558594, + "step": 14400 + }, + { + "epoch": 60.67015706806283, + "grad_norm": 1.0914031267166138, + "learning_rate": 1.9675732217573223e-05, + "loss": 0.5746928405761719, + "step": 14500 + }, + { + "epoch": 61.08795811518325, + "grad_norm": 1.043164849281311, + "learning_rate": 1.946652719665272e-05, + "loss": 0.5775559997558594, + "step": 14600 + }, + { + "epoch": 61.506806282722515, + "grad_norm": 1.0833253860473633, + "learning_rate": 1.9257322175732218e-05, + "loss": 0.5722423553466797, + "step": 14700 + }, + { + "epoch": 61.92565445026178, + "grad_norm": 1.1481914520263672, + "learning_rate": 1.904811715481172e-05, + "loss": 0.5769286346435547, + "step": 14800 + }, + { + "epoch": 62.3434554973822, + "grad_norm": 1.0194867849349976, + "learning_rate": 1.8838912133891216e-05, + "loss": 0.5702044296264649, + "step": 14900 + }, + { + "epoch": 62.76230366492147, + "grad_norm": 1.091729760169983, + "learning_rate": 1.8629707112970713e-05, + "loss": 0.5723474502563477, + "step": 15000 + }, + { + "epoch": 63.18010471204188, + "grad_norm": 1.1202044486999512, + "learning_rate": 1.842050209205021e-05, + "loss": 0.5727936935424804, + "step": 15100 + }, + { + "epoch": 63.598952879581155, + "grad_norm": 2.251441240310669, + "learning_rate": 1.821129707112971e-05, + "loss": 0.5719662857055664, + "step": 15200 + }, + { + "epoch": 64.01675392670157, + "grad_norm": 0.9448971152305603, + "learning_rate": 1.8002092050209206e-05, + "loss": 0.5750114822387695, + "step": 15300 + }, + { + "epoch": 64.43560209424083, + "grad_norm": 1.6223911046981812, + "learning_rate": 1.7792887029288703e-05, + "loss": 0.5684125900268555, + "step": 15400 + }, + { + "epoch": 64.8544502617801, + "grad_norm": 1.105802297592163, + "learning_rate": 1.75836820083682e-05, + "loss": 0.5749607467651368, + "step": 15500 + }, + { + "epoch": 65.27225130890052, + "grad_norm": 1.0070587396621704, + "learning_rate": 1.73744769874477e-05, + "loss": 0.5693588256835938, + "step": 15600 + }, + { + "epoch": 65.69109947643979, + "grad_norm": 1.1097147464752197, + "learning_rate": 1.7165271966527196e-05, + "loss": 0.5717815780639648, + "step": 15700 + }, + { + "epoch": 66.10890052356021, + "grad_norm": 1.2500536441802979, + "learning_rate": 1.6956066945606697e-05, + "loss": 0.571502685546875, + "step": 15800 + }, + { + "epoch": 66.52774869109948, + "grad_norm": 1.0019428730010986, + "learning_rate": 1.6746861924686194e-05, + "loss": 0.567553482055664, + "step": 15900 + }, + { + "epoch": 66.94659685863874, + "grad_norm": 1.0604379177093506, + "learning_rate": 1.653765690376569e-05, + "loss": 0.5749691390991211, + "step": 16000 + }, + { + "epoch": 67.36439790575916, + "grad_norm": 1.049307942390442, + "learning_rate": 1.632845188284519e-05, + "loss": 0.5671145248413086, + "step": 16100 + }, + { + "epoch": 67.78324607329843, + "grad_norm": 1.0208990573883057, + "learning_rate": 1.6119246861924687e-05, + "loss": 0.5698457717895508, + "step": 16200 + }, + { + "epoch": 68.20104712041885, + "grad_norm": 0.9725692272186279, + "learning_rate": 1.5910041841004184e-05, + "loss": 0.5694425964355468, + "step": 16300 + }, + { + "epoch": 68.61989528795812, + "grad_norm": 1.1082414388656616, + "learning_rate": 1.5700836820083685e-05, + "loss": 0.5668373107910156, + "step": 16400 + }, + { + "epoch": 69.03769633507854, + "grad_norm": 0.9503616690635681, + "learning_rate": 1.5491631799163182e-05, + "loss": 0.5709575653076172, + "step": 16500 + }, + { + "epoch": 69.4565445026178, + "grad_norm": 1.174117922782898, + "learning_rate": 1.528242677824268e-05, + "loss": 0.5630858230590821, + "step": 16600 + }, + { + "epoch": 69.87539267015707, + "grad_norm": 1.233062744140625, + "learning_rate": 1.5073221757322176e-05, + "loss": 0.5713355255126953, + "step": 16700 + }, + { + "epoch": 70.29319371727749, + "grad_norm": 1.1545337438583374, + "learning_rate": 1.4864016736401673e-05, + "loss": 0.5669760513305664, + "step": 16800 + }, + { + "epoch": 70.71204188481676, + "grad_norm": 1.2455624341964722, + "learning_rate": 1.4654811715481172e-05, + "loss": 0.5687417984008789, + "step": 16900 + }, + { + "epoch": 71.12984293193718, + "grad_norm": 1.1097911596298218, + "learning_rate": 1.444560669456067e-05, + "loss": 0.5687915420532227, + "step": 17000 + }, + { + "epoch": 71.54869109947644, + "grad_norm": 1.3409907817840576, + "learning_rate": 1.4236401673640167e-05, + "loss": 0.5652975845336914, + "step": 17100 + }, + { + "epoch": 71.96753926701571, + "grad_norm": 1.0018601417541504, + "learning_rate": 1.4027196652719665e-05, + "loss": 0.5693225479125976, + "step": 17200 + }, + { + "epoch": 72.38534031413613, + "grad_norm": 0.9709707498550415, + "learning_rate": 1.3817991631799162e-05, + "loss": 0.5642803955078125, + "step": 17300 + }, + { + "epoch": 72.8041884816754, + "grad_norm": 1.0293502807617188, + "learning_rate": 1.3608786610878663e-05, + "loss": 0.567535514831543, + "step": 17400 + }, + { + "epoch": 73.22198952879582, + "grad_norm": 1.0947306156158447, + "learning_rate": 1.339958158995816e-05, + "loss": 0.5657819747924805, + "step": 17500 + }, + { + "epoch": 73.64083769633508, + "grad_norm": 1.0627623796463013, + "learning_rate": 1.3190376569037658e-05, + "loss": 0.5648831939697265, + "step": 17600 + }, + { + "epoch": 74.0586387434555, + "grad_norm": 1.092600703239441, + "learning_rate": 1.2981171548117154e-05, + "loss": 0.567056770324707, + "step": 17700 + }, + { + "epoch": 74.47748691099477, + "grad_norm": 1.1139910221099854, + "learning_rate": 1.2771966527196651e-05, + "loss": 0.5629258728027344, + "step": 17800 + }, + { + "epoch": 74.89633507853404, + "grad_norm": 1.0925103425979614, + "learning_rate": 1.2562761506276152e-05, + "loss": 0.5671181869506836, + "step": 17900 + }, + { + "epoch": 75.31413612565446, + "grad_norm": 1.4127650260925293, + "learning_rate": 1.235355648535565e-05, + "loss": 0.5614471054077148, + "step": 18000 + }, + { + "epoch": 75.73298429319372, + "grad_norm": 0.9931116104125977, + "learning_rate": 1.2144351464435147e-05, + "loss": 0.565269546508789, + "step": 18100 + }, + { + "epoch": 76.15078534031413, + "grad_norm": 1.1718937158584595, + "learning_rate": 1.1935146443514645e-05, + "loss": 0.5644131851196289, + "step": 18200 + }, + { + "epoch": 76.5696335078534, + "grad_norm": 0.9517426490783691, + "learning_rate": 1.1725941422594142e-05, + "loss": 0.5629844284057617, + "step": 18300 + }, + { + "epoch": 76.98848167539268, + "grad_norm": 1.0832480192184448, + "learning_rate": 1.1518828451882845e-05, + "loss": 0.5671321487426758, + "step": 18400 + }, + { + "epoch": 77.40628272251308, + "grad_norm": 1.1618616580963135, + "learning_rate": 1.1309623430962343e-05, + "loss": 0.5599403762817383, + "step": 18500 + }, + { + "epoch": 77.82513089005235, + "grad_norm": 1.0287295579910278, + "learning_rate": 1.1100418410041842e-05, + "loss": 0.5632502746582031, + "step": 18600 + }, + { + "epoch": 78.24293193717277, + "grad_norm": 1.048791766166687, + "learning_rate": 1.089121338912134e-05, + "loss": 0.5621784591674804, + "step": 18700 + }, + { + "epoch": 78.66178010471204, + "grad_norm": 1.03757643699646, + "learning_rate": 1.0682008368200837e-05, + "loss": 0.5616426467895508, + "step": 18800 + }, + { + "epoch": 79.07958115183246, + "grad_norm": 1.305603265762329, + "learning_rate": 1.0472803347280336e-05, + "loss": 0.5662485504150391, + "step": 18900 + }, + { + "epoch": 79.49842931937172, + "grad_norm": 1.0828039646148682, + "learning_rate": 1.0263598326359834e-05, + "loss": 0.5587220764160157, + "step": 19000 + }, + { + "epoch": 79.91727748691099, + "grad_norm": 1.0541635751724243, + "learning_rate": 1.0054393305439331e-05, + "loss": 0.5656935882568359, + "step": 19100 + }, + { + "epoch": 80.33507853403141, + "grad_norm": 1.4421244859695435, + "learning_rate": 9.845188284518828e-06, + "loss": 0.5583715057373047, + "step": 19200 + }, + { + "epoch": 80.75392670157068, + "grad_norm": 0.9934247732162476, + "learning_rate": 9.635983263598326e-06, + "loss": 0.5621566390991211, + "step": 19300 + }, + { + "epoch": 81.1717277486911, + "grad_norm": 1.331549048423767, + "learning_rate": 9.426778242677825e-06, + "loss": 0.5624060821533203, + "step": 19400 + }, + { + "epoch": 81.59057591623036, + "grad_norm": 1.1185020208358765, + "learning_rate": 9.217573221757323e-06, + "loss": 0.5596007537841797, + "step": 19500 + }, + { + "epoch": 82.00837696335078, + "grad_norm": 1.0355136394500732, + "learning_rate": 9.008368200836822e-06, + "loss": 0.5647842788696289, + "step": 19600 + }, + { + "epoch": 82.42722513089005, + "grad_norm": 0.9967537522315979, + "learning_rate": 8.79916317991632e-06, + "loss": 0.5558248519897461, + "step": 19700 + }, + { + "epoch": 82.84607329842932, + "grad_norm": 1.1115660667419434, + "learning_rate": 8.589958158995815e-06, + "loss": 0.5625948333740234, + "step": 19800 + }, + { + "epoch": 83.26387434554974, + "grad_norm": 1.1838023662567139, + "learning_rate": 8.380753138075314e-06, + "loss": 0.559094467163086, + "step": 19900 + }, + { + "epoch": 83.682722513089, + "grad_norm": 1.232723593711853, + "learning_rate": 8.171548117154812e-06, + "loss": 0.5604278564453125, + "step": 20000 + }, + { + "epoch": 84.10052356020942, + "grad_norm": 0.9662663340568542, + "learning_rate": 7.962343096234311e-06, + "loss": 0.560697135925293, + "step": 20100 + }, + { + "epoch": 84.51937172774869, + "grad_norm": 0.95435631275177, + "learning_rate": 7.753138075313808e-06, + "loss": 0.5556485748291016, + "step": 20200 + }, + { + "epoch": 84.93821989528796, + "grad_norm": 1.1006091833114624, + "learning_rate": 7.543933054393305e-06, + "loss": 0.5629526138305664, + "step": 20300 + }, + { + "epoch": 85.35602094240838, + "grad_norm": 1.0648730993270874, + "learning_rate": 7.336820083682008e-06, + "loss": 0.5561338043212891, + "step": 20400 + }, + { + "epoch": 85.77486910994764, + "grad_norm": 1.0455604791641235, + "learning_rate": 7.127615062761507e-06, + "loss": 0.5590327835083008, + "step": 20500 + }, + { + "epoch": 86.19267015706806, + "grad_norm": 1.2354342937469482, + "learning_rate": 6.918410041841005e-06, + "loss": 0.558480224609375, + "step": 20600 + }, + { + "epoch": 86.61151832460733, + "grad_norm": 1.1213362216949463, + "learning_rate": 6.709205020920502e-06, + "loss": 0.5574909973144532, + "step": 20700 + }, + { + "epoch": 87.02931937172775, + "grad_norm": 1.2145981788635254, + "learning_rate": 6.5000000000000004e-06, + "loss": 0.5595388793945313, + "step": 20800 + }, + { + "epoch": 87.44816753926702, + "grad_norm": 1.1763968467712402, + "learning_rate": 6.290794979079498e-06, + "loss": 0.5566361618041992, + "step": 20900 + }, + { + "epoch": 87.86701570680628, + "grad_norm": 0.9883760213851929, + "learning_rate": 6.081589958158996e-06, + "loss": 0.558988037109375, + "step": 21000 + }, + { + "epoch": 88.2848167539267, + "grad_norm": 1.3407195806503296, + "learning_rate": 5.872384937238494e-06, + "loss": 0.555633430480957, + "step": 21100 + }, + { + "epoch": 88.70366492146597, + "grad_norm": 1.2197387218475342, + "learning_rate": 5.663179916317992e-06, + "loss": 0.5576942443847657, + "step": 21200 + }, + { + "epoch": 89.12146596858639, + "grad_norm": 0.9664437770843506, + "learning_rate": 5.45397489539749e-06, + "loss": 0.5581797409057617, + "step": 21300 + }, + { + "epoch": 89.54031413612566, + "grad_norm": 1.2320648431777954, + "learning_rate": 5.244769874476987e-06, + "loss": 0.5559272003173829, + "step": 21400 + }, + { + "epoch": 89.95916230366493, + "grad_norm": 1.1831936836242676, + "learning_rate": 5.035564853556485e-06, + "loss": 0.5578675842285157, + "step": 21500 + }, + { + "epoch": 90.37696335078535, + "grad_norm": 1.0145848989486694, + "learning_rate": 4.826359832635984e-06, + "loss": 0.555514259338379, + "step": 21600 + }, + { + "epoch": 90.79581151832461, + "grad_norm": 1.1567530632019043, + "learning_rate": 4.617154811715481e-06, + "loss": 0.5568828964233399, + "step": 21700 + }, + { + "epoch": 91.21361256544503, + "grad_norm": 1.1194156408309937, + "learning_rate": 4.4079497907949796e-06, + "loss": 0.5556546783447266, + "step": 21800 + }, + { + "epoch": 91.6324607329843, + "grad_norm": 1.058899164199829, + "learning_rate": 4.198744769874477e-06, + "loss": 0.5552133178710937, + "step": 21900 + }, + { + "epoch": 92.0502617801047, + "grad_norm": 1.0123540163040161, + "learning_rate": 3.989539748953975e-06, + "loss": 0.55712158203125, + "step": 22000 + }, + { + "epoch": 92.46910994764399, + "grad_norm": 1.0693333148956299, + "learning_rate": 3.780334728033473e-06, + "loss": 0.5530570983886719, + "step": 22100 + }, + { + "epoch": 92.88795811518325, + "grad_norm": 1.020864725112915, + "learning_rate": 3.571129707112971e-06, + "loss": 0.5573068618774414, + "step": 22200 + }, + { + "epoch": 93.30575916230366, + "grad_norm": 1.1115072965621948, + "learning_rate": 3.3619246861924683e-06, + "loss": 0.5556851959228516, + "step": 22300 + }, + { + "epoch": 93.72460732984293, + "grad_norm": 1.0190234184265137, + "learning_rate": 3.1548117154811716e-06, + "loss": 0.5554112243652344, + "step": 22400 + }, + { + "epoch": 94.14240837696335, + "grad_norm": 1.0990245342254639, + "learning_rate": 2.9456066945606695e-06, + "loss": 0.5539827346801758, + "step": 22500 + }, + { + "epoch": 94.56125654450261, + "grad_norm": 1.0113505125045776, + "learning_rate": 2.7364016736401674e-06, + "loss": 0.5531864929199218, + "step": 22600 + }, + { + "epoch": 94.98010471204188, + "grad_norm": 1.0651323795318604, + "learning_rate": 2.5271966527196657e-06, + "loss": 0.5547758865356446, + "step": 22700 + }, + { + "epoch": 95.3979057591623, + "grad_norm": 0.9893053770065308, + "learning_rate": 2.317991631799163e-06, + "loss": 0.5521963882446289, + "step": 22800 + }, + { + "epoch": 95.81675392670157, + "grad_norm": 1.2413371801376343, + "learning_rate": 2.108786610878661e-06, + "loss": 0.5545172119140624, + "step": 22900 + }, + { + "epoch": 96.23455497382199, + "grad_norm": 1.1037617921829224, + "learning_rate": 1.899581589958159e-06, + "loss": 0.5509216690063476, + "step": 23000 + }, + { + "epoch": 96.65340314136125, + "grad_norm": 0.9777401089668274, + "learning_rate": 1.690376569037657e-06, + "loss": 0.5538136672973633, + "step": 23100 + }, + { + "epoch": 97.07120418848167, + "grad_norm": 1.0018055438995361, + "learning_rate": 1.4811715481171548e-06, + "loss": 0.5540202331542968, + "step": 23200 + }, + { + "epoch": 97.49005235602094, + "grad_norm": 1.0007930994033813, + "learning_rate": 1.2719665271966528e-06, + "loss": 0.5524462509155273, + "step": 23300 + }, + { + "epoch": 97.9089005235602, + "grad_norm": 1.1463111639022827, + "learning_rate": 1.0627615062761507e-06, + "loss": 0.5535177612304687, + "step": 23400 + }, + { + "epoch": 98.32670157068063, + "grad_norm": 0.980787456035614, + "learning_rate": 8.535564853556486e-07, + "loss": 0.553234977722168, + "step": 23500 + }, + { + "epoch": 98.74554973821989, + "grad_norm": 1.0415117740631104, + "learning_rate": 6.443514644351465e-07, + "loss": 0.5528529357910156, + "step": 23600 + } + ], + "logging_steps": 100, + "max_steps": 23900, + "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": 3086420886945792.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/training_args.bin b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23661/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc664521f815e55efb1e2ec57db59f2857c50993 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/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": 485 +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/generation_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/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/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/model.safetensors b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a447299d441f129631bc0776d8d83656dab93dea --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f5eb68bc71d51104ee2d2891328a3e2432633708c4fafc641266f8ee8b8b1b +size 174758344 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/optimizer.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2805de2d4a833700027da9911e7aa5b40911bd2c --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e242973b149303ec918ede6a52d64be861f78810db8be472b4eaae7d98a11c +size 349565771 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/rng_state.pth b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..d12d433108fc6804fa76e111e87bd79f218592ce --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10729ca30890f7f718ff9fa0ca049450cee2aa0e6feec6c4adb913c14f47d24b +size 14645 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/scaler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..357916d99a1cdd346bdab967881ba6c8e9b79962 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99c61c54490f04a13d2e9a28878a6b93906d4ec9b093050ac102bbef86d4d18 +size 1383 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/scheduler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..438a4afd21c96d9d29c0c6db86d64f0ca68930b9 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d52959bbafee1158acb80f8a70d4bd82923537492d6e6bc920636c5bbd57f2 +size 1465 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/trainer_state.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c732b8a26aad24e946f0c4ba347ab164361bad36 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/trainer_state.json @@ -0,0 +1,1693 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.16335078534031, + "eval_steps": 100, + "global_step": 23700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.418848167539267, + "grad_norm": 1.7357312440872192, + "learning_rate": 4.9792887029288705e-05, + "loss": 1.957039794921875, + "step": 100 + }, + { + "epoch": 0.837696335078534, + "grad_norm": 1.7951552867889404, + "learning_rate": 4.9583682008368206e-05, + "loss": 1.2064629364013673, + "step": 200 + }, + { + "epoch": 1.255497382198953, + "grad_norm": 1.674418330192566, + "learning_rate": 4.93744769874477e-05, + "loss": 1.0603108978271485, + "step": 300 + }, + { + "epoch": 1.67434554973822, + "grad_norm": 1.6522367000579834, + "learning_rate": 4.91652719665272e-05, + "loss": 0.9886434936523437, + "step": 400 + }, + { + "epoch": 2.0921465968586386, + "grad_norm": 1.483288288116455, + "learning_rate": 4.89560669456067e-05, + "loss": 0.9375139617919922, + "step": 500 + }, + { + "epoch": 2.510994764397906, + "grad_norm": 1.5848816633224487, + "learning_rate": 4.8746861924686196e-05, + "loss": 0.8872322082519531, + "step": 600 + }, + { + "epoch": 2.9298429319371726, + "grad_norm": 1.5845175981521606, + "learning_rate": 4.85376569037657e-05, + "loss": 0.8752645111083984, + "step": 700 + }, + { + "epoch": 3.3476439790575916, + "grad_norm": 1.454902172088623, + "learning_rate": 4.832845188284519e-05, + "loss": 0.8418380737304687, + "step": 800 + }, + { + "epoch": 3.7664921465968586, + "grad_norm": 1.3893290758132935, + "learning_rate": 4.8119246861924685e-05, + "loss": 0.8182624053955078, + "step": 900 + }, + { + "epoch": 4.184293193717277, + "grad_norm": 1.504209280014038, + "learning_rate": 4.7910041841004186e-05, + "loss": 0.8018088531494141, + "step": 1000 + }, + { + "epoch": 4.603141361256545, + "grad_norm": 1.6646430492401123, + "learning_rate": 4.770083682008368e-05, + "loss": 0.7877240753173829, + "step": 1100 + }, + { + "epoch": 5.020942408376963, + "grad_norm": 1.3648449182510376, + "learning_rate": 4.749163179916318e-05, + "loss": 0.7797740936279297, + "step": 1200 + }, + { + "epoch": 5.439790575916231, + "grad_norm": 1.410872459411621, + "learning_rate": 4.7282426778242675e-05, + "loss": 0.7617485809326172, + "step": 1300 + }, + { + "epoch": 5.858638743455497, + "grad_norm": 1.4345377683639526, + "learning_rate": 4.7073221757322176e-05, + "loss": 0.7631221771240234, + "step": 1400 + }, + { + "epoch": 6.276439790575917, + "grad_norm": 1.327006459236145, + "learning_rate": 4.686401673640168e-05, + "loss": 0.7484178161621093, + "step": 1500 + }, + { + "epoch": 6.695287958115183, + "grad_norm": 1.420089602470398, + "learning_rate": 4.665481171548117e-05, + "loss": 0.7441964721679688, + "step": 1600 + }, + { + "epoch": 7.113089005235602, + "grad_norm": 1.5513347387313843, + "learning_rate": 4.644560669456067e-05, + "loss": 0.7383489227294922, + "step": 1700 + }, + { + "epoch": 7.531937172774869, + "grad_norm": 1.3362606763839722, + "learning_rate": 4.6236401673640166e-05, + "loss": 0.7281642913818359, + "step": 1800 + }, + { + "epoch": 7.950785340314136, + "grad_norm": 1.2809451818466187, + "learning_rate": 4.602719665271967e-05, + "loss": 0.7310231018066407, + "step": 1900 + }, + { + "epoch": 8.368586387434554, + "grad_norm": 1.2832854986190796, + "learning_rate": 4.581799163179917e-05, + "loss": 0.7165196990966797, + "step": 2000 + }, + { + "epoch": 8.787434554973823, + "grad_norm": 1.1414157152175903, + "learning_rate": 4.560878661087866e-05, + "loss": 0.7179119873046875, + "step": 2100 + }, + { + "epoch": 9.205235602094241, + "grad_norm": 1.0745928287506104, + "learning_rate": 4.539958158995816e-05, + "loss": 0.7131906890869141, + "step": 2200 + }, + { + "epoch": 9.624083769633508, + "grad_norm": 1.1124597787857056, + "learning_rate": 4.519037656903766e-05, + "loss": 0.7061318206787109, + "step": 2300 + }, + { + "epoch": 10.041884816753926, + "grad_norm": 0.9845342040061951, + "learning_rate": 4.498117154811716e-05, + "loss": 0.7075148773193359, + "step": 2400 + }, + { + "epoch": 10.460732984293193, + "grad_norm": 1.1672662496566772, + "learning_rate": 4.477196652719666e-05, + "loss": 0.7008012390136719, + "step": 2500 + }, + { + "epoch": 10.879581151832461, + "grad_norm": 1.181514859199524, + "learning_rate": 4.456276150627615e-05, + "loss": 0.6990177154541015, + "step": 2600 + }, + { + "epoch": 11.29738219895288, + "grad_norm": 1.1406160593032837, + "learning_rate": 4.4353556485355653e-05, + "loss": 0.690523681640625, + "step": 2700 + }, + { + "epoch": 11.716230366492146, + "grad_norm": 1.1152310371398926, + "learning_rate": 4.414435146443515e-05, + "loss": 0.6935369110107422, + "step": 2800 + }, + { + "epoch": 12.134031413612565, + "grad_norm": 1.283378005027771, + "learning_rate": 4.393514644351465e-05, + "loss": 0.6885635375976562, + "step": 2900 + }, + { + "epoch": 12.552879581151833, + "grad_norm": 1.2980977296829224, + "learning_rate": 4.372594142259415e-05, + "loss": 0.6849569702148437, + "step": 3000 + }, + { + "epoch": 12.9717277486911, + "grad_norm": 1.1399869918823242, + "learning_rate": 4.3516736401673643e-05, + "loss": 0.6880906677246094, + "step": 3100 + }, + { + "epoch": 13.389528795811518, + "grad_norm": 1.2640913724899292, + "learning_rate": 4.3307531380753144e-05, + "loss": 0.6769008636474609, + "step": 3200 + }, + { + "epoch": 13.808376963350785, + "grad_norm": 1.2051986455917358, + "learning_rate": 4.309832635983264e-05, + "loss": 0.6841930389404297, + "step": 3300 + }, + { + "epoch": 14.226178010471203, + "grad_norm": 1.5682283639907837, + "learning_rate": 4.288912133891214e-05, + "loss": 0.6762271118164063, + "step": 3400 + }, + { + "epoch": 14.645026178010472, + "grad_norm": 1.2480769157409668, + "learning_rate": 4.267991631799163e-05, + "loss": 0.6741954040527344, + "step": 3500 + }, + { + "epoch": 15.06282722513089, + "grad_norm": 1.1682356595993042, + "learning_rate": 4.247071129707113e-05, + "loss": 0.6774851989746093, + "step": 3600 + }, + { + "epoch": 15.481675392670157, + "grad_norm": 1.1353213787078857, + "learning_rate": 4.226150627615063e-05, + "loss": 0.6634797668457031, + "step": 3700 + }, + { + "epoch": 15.900523560209423, + "grad_norm": 1.2949745655059814, + "learning_rate": 4.205230125523012e-05, + "loss": 0.6736211395263672, + "step": 3800 + }, + { + "epoch": 16.318324607329842, + "grad_norm": 1.1021099090576172, + "learning_rate": 4.184309623430962e-05, + "loss": 0.6624949645996093, + "step": 3900 + }, + { + "epoch": 16.73717277486911, + "grad_norm": 1.2462520599365234, + "learning_rate": 4.1633891213389124e-05, + "loss": 0.6662584686279297, + "step": 4000 + }, + { + "epoch": 17.15497382198953, + "grad_norm": 1.2026138305664062, + "learning_rate": 4.142468619246862e-05, + "loss": 0.665372543334961, + "step": 4100 + }, + { + "epoch": 17.573821989528795, + "grad_norm": 1.1689097881317139, + "learning_rate": 4.121548117154812e-05, + "loss": 0.6616575622558594, + "step": 4200 + }, + { + "epoch": 17.992670157068062, + "grad_norm": 1.1259592771530151, + "learning_rate": 4.100627615062761e-05, + "loss": 0.6627973937988281, + "step": 4300 + }, + { + "epoch": 18.410471204188482, + "grad_norm": 1.1528080701828003, + "learning_rate": 4.0797071129707114e-05, + "loss": 0.6545208740234375, + "step": 4400 + }, + { + "epoch": 18.82931937172775, + "grad_norm": 1.078765869140625, + "learning_rate": 4.0587866108786615e-05, + "loss": 0.659375, + "step": 4500 + }, + { + "epoch": 19.24712041884817, + "grad_norm": 1.1452678442001343, + "learning_rate": 4.037866108786611e-05, + "loss": 0.6517630767822266, + "step": 4600 + }, + { + "epoch": 19.665968586387436, + "grad_norm": 1.3625253438949585, + "learning_rate": 4.016945606694561e-05, + "loss": 0.6546914672851563, + "step": 4700 + }, + { + "epoch": 20.083769633507853, + "grad_norm": 1.0734823942184448, + "learning_rate": 3.9960251046025104e-05, + "loss": 0.653277359008789, + "step": 4800 + }, + { + "epoch": 20.50261780104712, + "grad_norm": 1.0875906944274902, + "learning_rate": 3.9751046025104605e-05, + "loss": 0.6477639770507813, + "step": 4900 + }, + { + "epoch": 20.921465968586386, + "grad_norm": 1.2992547750473022, + "learning_rate": 3.9541841004184106e-05, + "loss": 0.6525312805175781, + "step": 5000 + }, + { + "epoch": 21.339267015706806, + "grad_norm": 1.1078609228134155, + "learning_rate": 3.93326359832636e-05, + "loss": 0.643624038696289, + "step": 5100 + }, + { + "epoch": 21.758115183246073, + "grad_norm": 1.1027839183807373, + "learning_rate": 3.91234309623431e-05, + "loss": 0.64830322265625, + "step": 5200 + }, + { + "epoch": 22.175916230366493, + "grad_norm": 1.1493128538131714, + "learning_rate": 3.8914225941422595e-05, + "loss": 0.6440758514404297, + "step": 5300 + }, + { + "epoch": 22.59476439790576, + "grad_norm": 1.1990758180618286, + "learning_rate": 3.8705020920502096e-05, + "loss": 0.6450751495361328, + "step": 5400 + }, + { + "epoch": 23.012565445026176, + "grad_norm": 1.1392757892608643, + "learning_rate": 3.84958158995816e-05, + "loss": 0.6439768981933593, + "step": 5500 + }, + { + "epoch": 23.431413612565446, + "grad_norm": 1.145913004875183, + "learning_rate": 3.828661087866109e-05, + "loss": 0.6345698547363281, + "step": 5600 + }, + { + "epoch": 23.850261780104713, + "grad_norm": 1.1432591676712036, + "learning_rate": 3.807740585774059e-05, + "loss": 0.6436957550048829, + "step": 5700 + }, + { + "epoch": 24.26806282722513, + "grad_norm": 1.0853745937347412, + "learning_rate": 3.7868200836820086e-05, + "loss": 0.634792594909668, + "step": 5800 + }, + { + "epoch": 24.686910994764396, + "grad_norm": 1.0998246669769287, + "learning_rate": 3.765899581589959e-05, + "loss": 0.6373896789550781, + "step": 5900 + }, + { + "epoch": 25.104712041884817, + "grad_norm": 1.427016258239746, + "learning_rate": 3.744979079497908e-05, + "loss": 0.639299545288086, + "step": 6000 + }, + { + "epoch": 25.523560209424083, + "grad_norm": 1.0360475778579712, + "learning_rate": 3.724058577405858e-05, + "loss": 0.6306960296630859, + "step": 6100 + }, + { + "epoch": 25.94240837696335, + "grad_norm": 1.029296875, + "learning_rate": 3.7031380753138076e-05, + "loss": 0.635133056640625, + "step": 6200 + }, + { + "epoch": 26.36020942408377, + "grad_norm": 1.0714229345321655, + "learning_rate": 3.682217573221757e-05, + "loss": 0.6279976272583008, + "step": 6300 + }, + { + "epoch": 26.779057591623037, + "grad_norm": 1.0668662786483765, + "learning_rate": 3.661297071129707e-05, + "loss": 0.6319166564941406, + "step": 6400 + }, + { + "epoch": 27.196858638743457, + "grad_norm": 1.2612731456756592, + "learning_rate": 3.640376569037657e-05, + "loss": 0.626447639465332, + "step": 6500 + }, + { + "epoch": 27.615706806282724, + "grad_norm": 1.111774206161499, + "learning_rate": 3.6194560669456066e-05, + "loss": 0.6283223724365234, + "step": 6600 + }, + { + "epoch": 28.03350785340314, + "grad_norm": 1.1588354110717773, + "learning_rate": 3.5985355648535567e-05, + "loss": 0.6337715148925781, + "step": 6700 + }, + { + "epoch": 28.452356020942407, + "grad_norm": 1.2656804323196411, + "learning_rate": 3.577615062761506e-05, + "loss": 0.6196572494506836, + "step": 6800 + }, + { + "epoch": 28.871204188481677, + "grad_norm": 1.0904902219772339, + "learning_rate": 3.556694560669456e-05, + "loss": 0.6265386581420899, + "step": 6900 + }, + { + "epoch": 29.289005235602094, + "grad_norm": 1.2348970174789429, + "learning_rate": 3.535774058577406e-05, + "loss": 0.6187874221801758, + "step": 7000 + }, + { + "epoch": 29.70785340314136, + "grad_norm": 1.0990043878555298, + "learning_rate": 3.5148535564853556e-05, + "loss": 0.6251428985595703, + "step": 7100 + }, + { + "epoch": 30.12565445026178, + "grad_norm": 1.3289461135864258, + "learning_rate": 3.493933054393306e-05, + "loss": 0.6217424011230469, + "step": 7200 + }, + { + "epoch": 30.544502617801047, + "grad_norm": 1.1826465129852295, + "learning_rate": 3.473012552301255e-05, + "loss": 0.6176059722900391, + "step": 7300 + }, + { + "epoch": 30.963350785340314, + "grad_norm": 1.1363434791564941, + "learning_rate": 3.452092050209205e-05, + "loss": 0.6250752258300781, + "step": 7400 + }, + { + "epoch": 31.381151832460734, + "grad_norm": 1.0488321781158447, + "learning_rate": 3.431171548117155e-05, + "loss": 0.6131296157836914, + "step": 7500 + }, + { + "epoch": 31.8, + "grad_norm": 1.0740634202957153, + "learning_rate": 3.410251046025105e-05, + "loss": 0.62077392578125, + "step": 7600 + }, + { + "epoch": 32.21780104712042, + "grad_norm": 1.2768574953079224, + "learning_rate": 3.389330543933055e-05, + "loss": 0.6132323074340821, + "step": 7700 + }, + { + "epoch": 32.636649214659684, + "grad_norm": 1.2454967498779297, + "learning_rate": 3.368410041841004e-05, + "loss": 0.6179965972900391, + "step": 7800 + }, + { + "epoch": 33.054450261780104, + "grad_norm": 1.0509141683578491, + "learning_rate": 3.347489539748954e-05, + "loss": 0.6159653091430664, + "step": 7900 + }, + { + "epoch": 33.47329842931937, + "grad_norm": 1.2346339225769043, + "learning_rate": 3.3265690376569044e-05, + "loss": 0.608684196472168, + "step": 8000 + }, + { + "epoch": 33.89214659685864, + "grad_norm": 1.0819355249404907, + "learning_rate": 3.305648535564854e-05, + "loss": 0.6147115707397461, + "step": 8100 + }, + { + "epoch": 34.30994764397906, + "grad_norm": 1.2290990352630615, + "learning_rate": 3.284728033472804e-05, + "loss": 0.6080178833007812, + "step": 8200 + }, + { + "epoch": 34.728795811518324, + "grad_norm": 1.0522081851959229, + "learning_rate": 3.263807531380753e-05, + "loss": 0.6099481964111328, + "step": 8300 + }, + { + "epoch": 35.146596858638745, + "grad_norm": 1.1879432201385498, + "learning_rate": 3.2428870292887034e-05, + "loss": 0.6108789443969727, + "step": 8400 + }, + { + "epoch": 35.56544502617801, + "grad_norm": 1.2454171180725098, + "learning_rate": 3.2219665271966535e-05, + "loss": 0.6051754760742187, + "step": 8500 + }, + { + "epoch": 35.98429319371728, + "grad_norm": 1.2238366603851318, + "learning_rate": 3.201046025104603e-05, + "loss": 0.6135285949707031, + "step": 8600 + }, + { + "epoch": 36.4020942408377, + "grad_norm": 1.3203046321868896, + "learning_rate": 3.180125523012552e-05, + "loss": 0.6003643417358399, + "step": 8700 + }, + { + "epoch": 36.820942408376965, + "grad_norm": 1.3004391193389893, + "learning_rate": 3.1592050209205024e-05, + "loss": 0.6084416961669922, + "step": 8800 + }, + { + "epoch": 37.238743455497385, + "grad_norm": 1.0923435688018799, + "learning_rate": 3.138284518828452e-05, + "loss": 0.6027616119384765, + "step": 8900 + }, + { + "epoch": 37.65759162303665, + "grad_norm": 1.3689918518066406, + "learning_rate": 3.117364016736402e-05, + "loss": 0.6034185409545898, + "step": 9000 + }, + { + "epoch": 38.075392670157065, + "grad_norm": 1.0931211709976196, + "learning_rate": 3.096443514644351e-05, + "loss": 0.6048267364501954, + "step": 9100 + }, + { + "epoch": 38.49424083769634, + "grad_norm": 1.2372386455535889, + "learning_rate": 3.0755230125523014e-05, + "loss": 0.5964799880981445, + "step": 9200 + }, + { + "epoch": 38.913089005235605, + "grad_norm": 1.2137774229049683, + "learning_rate": 3.054602510460251e-05, + "loss": 0.6053957748413086, + "step": 9300 + }, + { + "epoch": 39.33089005235602, + "grad_norm": 1.2441918849945068, + "learning_rate": 3.033682008368201e-05, + "loss": 0.5963822937011719, + "step": 9400 + }, + { + "epoch": 39.749738219895285, + "grad_norm": 1.1947072744369507, + "learning_rate": 3.0127615062761506e-05, + "loss": 0.6023126983642578, + "step": 9500 + }, + { + "epoch": 40.167539267015705, + "grad_norm": 1.234154462814331, + "learning_rate": 2.9918410041841004e-05, + "loss": 0.6001630401611329, + "step": 9600 + }, + { + "epoch": 40.58638743455497, + "grad_norm": 1.163256287574768, + "learning_rate": 2.9709205020920505e-05, + "loss": 0.5957479858398438, + "step": 9700 + }, + { + "epoch": 41.00418848167539, + "grad_norm": 1.098540186882019, + "learning_rate": 2.95e-05, + "loss": 0.6069541168212891, + "step": 9800 + }, + { + "epoch": 41.42303664921466, + "grad_norm": 1.241861343383789, + "learning_rate": 2.92907949790795e-05, + "loss": 0.589141960144043, + "step": 9900 + }, + { + "epoch": 41.841884816753925, + "grad_norm": 1.175836205482483, + "learning_rate": 2.9081589958158994e-05, + "loss": 0.6017288970947265, + "step": 10000 + }, + { + "epoch": 42.259685863874346, + "grad_norm": 1.2884583473205566, + "learning_rate": 2.88744769874477e-05, + "loss": 0.5935973358154297, + "step": 10100 + }, + { + "epoch": 42.67853403141361, + "grad_norm": 1.247544765472412, + "learning_rate": 2.8665271966527198e-05, + "loss": 0.5953170776367187, + "step": 10200 + }, + { + "epoch": 43.09633507853403, + "grad_norm": 1.0641762018203735, + "learning_rate": 2.8456066945606695e-05, + "loss": 0.5974231338500977, + "step": 10300 + }, + { + "epoch": 43.5151832460733, + "grad_norm": 1.1697312593460083, + "learning_rate": 2.8246861924686196e-05, + "loss": 0.5913193893432617, + "step": 10400 + }, + { + "epoch": 43.934031413612566, + "grad_norm": 1.1365479230880737, + "learning_rate": 2.803765690376569e-05, + "loss": 0.598421401977539, + "step": 10500 + }, + { + "epoch": 44.351832460732986, + "grad_norm": 1.1157909631729126, + "learning_rate": 2.782845188284519e-05, + "loss": 0.5873412322998047, + "step": 10600 + }, + { + "epoch": 44.77068062827225, + "grad_norm": 1.348643183708191, + "learning_rate": 2.7619246861924685e-05, + "loss": 0.5936133193969727, + "step": 10700 + }, + { + "epoch": 45.18848167539267, + "grad_norm": 1.197517991065979, + "learning_rate": 2.7410041841004186e-05, + "loss": 0.5921408462524415, + "step": 10800 + }, + { + "epoch": 45.60732984293194, + "grad_norm": 1.2170952558517456, + "learning_rate": 2.7200836820083687e-05, + "loss": 0.5896556091308593, + "step": 10900 + }, + { + "epoch": 46.02513089005235, + "grad_norm": 1.0762948989868164, + "learning_rate": 2.699163179916318e-05, + "loss": 0.5945636749267578, + "step": 11000 + }, + { + "epoch": 46.443979057591626, + "grad_norm": 1.1585177183151245, + "learning_rate": 2.678242677824268e-05, + "loss": 0.5853750610351562, + "step": 11100 + }, + { + "epoch": 46.86282722513089, + "grad_norm": 1.3420946598052979, + "learning_rate": 2.6573221757322176e-05, + "loss": 0.5932060623168945, + "step": 11200 + }, + { + "epoch": 47.280628272251306, + "grad_norm": 1.1126630306243896, + "learning_rate": 2.6364016736401677e-05, + "loss": 0.5834246063232422, + "step": 11300 + }, + { + "epoch": 47.69947643979057, + "grad_norm": 1.2244997024536133, + "learning_rate": 2.615481171548117e-05, + "loss": 0.5885814666748047, + "step": 11400 + }, + { + "epoch": 48.11727748691099, + "grad_norm": 1.3700648546218872, + "learning_rate": 2.594560669456067e-05, + "loss": 0.5896315383911133, + "step": 11500 + }, + { + "epoch": 48.53612565445026, + "grad_norm": 1.2028729915618896, + "learning_rate": 2.573640167364017e-05, + "loss": 0.5825551223754882, + "step": 11600 + }, + { + "epoch": 48.954973821989526, + "grad_norm": 1.198599934577942, + "learning_rate": 2.5527196652719663e-05, + "loss": 0.592343978881836, + "step": 11700 + }, + { + "epoch": 49.372774869109946, + "grad_norm": 1.1620557308197021, + "learning_rate": 2.5317991631799164e-05, + "loss": 0.5804216766357422, + "step": 11800 + }, + { + "epoch": 49.79162303664921, + "grad_norm": 1.2490957975387573, + "learning_rate": 2.5108786610878658e-05, + "loss": 0.5864405059814453, + "step": 11900 + }, + { + "epoch": 50.20942408376963, + "grad_norm": 1.1138325929641724, + "learning_rate": 2.489958158995816e-05, + "loss": 0.5846857070922852, + "step": 12000 + }, + { + "epoch": 50.6282722513089, + "grad_norm": 1.2332500219345093, + "learning_rate": 2.4692468619246865e-05, + "loss": 0.5829949188232422, + "step": 12100 + }, + { + "epoch": 51.04607329842932, + "grad_norm": 1.257340908050537, + "learning_rate": 2.4483263598326363e-05, + "loss": 0.5898705291748046, + "step": 12200 + }, + { + "epoch": 51.46492146596859, + "grad_norm": 1.2143198251724243, + "learning_rate": 2.427405857740586e-05, + "loss": 0.5786220550537109, + "step": 12300 + }, + { + "epoch": 51.88376963350785, + "grad_norm": 1.1260303258895874, + "learning_rate": 2.4064853556485358e-05, + "loss": 0.5868261337280274, + "step": 12400 + }, + { + "epoch": 52.301570680628274, + "grad_norm": 1.1678194999694824, + "learning_rate": 2.3855648535564852e-05, + "loss": 0.5809542846679687, + "step": 12500 + }, + { + "epoch": 52.72041884816754, + "grad_norm": 1.1895207166671753, + "learning_rate": 2.3646443514644353e-05, + "loss": 0.5844503784179688, + "step": 12600 + }, + { + "epoch": 53.13821989528796, + "grad_norm": 1.1448301076889038, + "learning_rate": 2.343723849372385e-05, + "loss": 0.5809010314941406, + "step": 12700 + }, + { + "epoch": 53.55706806282723, + "grad_norm": 1.1571141481399536, + "learning_rate": 2.3228033472803348e-05, + "loss": 0.5787462997436523, + "step": 12800 + }, + { + "epoch": 53.975916230366494, + "grad_norm": 1.0440938472747803, + "learning_rate": 2.3018828451882845e-05, + "loss": 0.5878799438476563, + "step": 12900 + }, + { + "epoch": 54.393717277486914, + "grad_norm": 1.132901668548584, + "learning_rate": 2.2809623430962343e-05, + "loss": 0.575037841796875, + "step": 13000 + }, + { + "epoch": 54.81256544502618, + "grad_norm": 1.2370219230651855, + "learning_rate": 2.2600418410041844e-05, + "loss": 0.5822734451293945, + "step": 13100 + }, + { + "epoch": 55.230366492146594, + "grad_norm": 1.1507346630096436, + "learning_rate": 2.239121338912134e-05, + "loss": 0.5782026672363281, + "step": 13200 + }, + { + "epoch": 55.64921465968587, + "grad_norm": 0.9882214665412903, + "learning_rate": 2.218200836820084e-05, + "loss": 0.580045394897461, + "step": 13300 + }, + { + "epoch": 56.06701570680628, + "grad_norm": 1.1273308992385864, + "learning_rate": 2.1972803347280336e-05, + "loss": 0.581448974609375, + "step": 13400 + }, + { + "epoch": 56.48586387434555, + "grad_norm": 1.1246113777160645, + "learning_rate": 2.1763598326359834e-05, + "loss": 0.5761925506591797, + "step": 13500 + }, + { + "epoch": 56.904712041884814, + "grad_norm": 1.1773682832717896, + "learning_rate": 2.155439330543933e-05, + "loss": 0.5803777313232422, + "step": 13600 + }, + { + "epoch": 57.322513089005234, + "grad_norm": 1.1531919240951538, + "learning_rate": 2.134518828451883e-05, + "loss": 0.5734993362426758, + "step": 13700 + }, + { + "epoch": 57.7413612565445, + "grad_norm": 1.0658059120178223, + "learning_rate": 2.1135983263598326e-05, + "loss": 0.5804447937011719, + "step": 13800 + }, + { + "epoch": 58.15916230366492, + "grad_norm": 1.256008267402649, + "learning_rate": 2.0926778242677823e-05, + "loss": 0.5771566772460938, + "step": 13900 + }, + { + "epoch": 58.57801047120419, + "grad_norm": 1.1181727647781372, + "learning_rate": 2.071757322175732e-05, + "loss": 0.5735276794433594, + "step": 14000 + }, + { + "epoch": 58.996858638743454, + "grad_norm": 1.1943111419677734, + "learning_rate": 2.0510460251046027e-05, + "loss": 0.5823272705078125, + "step": 14100 + }, + { + "epoch": 59.414659685863874, + "grad_norm": 1.245831847190857, + "learning_rate": 2.0301255230125525e-05, + "loss": 0.5691431427001953, + "step": 14200 + }, + { + "epoch": 59.83350785340314, + "grad_norm": 1.0968621969223022, + "learning_rate": 2.0092050209205022e-05, + "loss": 0.5803122329711914, + "step": 14300 + }, + { + "epoch": 60.25130890052356, + "grad_norm": 1.0285043716430664, + "learning_rate": 1.9884937238493725e-05, + "loss": 0.5736106872558594, + "step": 14400 + }, + { + "epoch": 60.67015706806283, + "grad_norm": 1.0914031267166138, + "learning_rate": 1.9675732217573223e-05, + "loss": 0.5746928405761719, + "step": 14500 + }, + { + "epoch": 61.08795811518325, + "grad_norm": 1.043164849281311, + "learning_rate": 1.946652719665272e-05, + "loss": 0.5775559997558594, + "step": 14600 + }, + { + "epoch": 61.506806282722515, + "grad_norm": 1.0833253860473633, + "learning_rate": 1.9257322175732218e-05, + "loss": 0.5722423553466797, + "step": 14700 + }, + { + "epoch": 61.92565445026178, + "grad_norm": 1.1481914520263672, + "learning_rate": 1.904811715481172e-05, + "loss": 0.5769286346435547, + "step": 14800 + }, + { + "epoch": 62.3434554973822, + "grad_norm": 1.0194867849349976, + "learning_rate": 1.8838912133891216e-05, + "loss": 0.5702044296264649, + "step": 14900 + }, + { + "epoch": 62.76230366492147, + "grad_norm": 1.091729760169983, + "learning_rate": 1.8629707112970713e-05, + "loss": 0.5723474502563477, + "step": 15000 + }, + { + "epoch": 63.18010471204188, + "grad_norm": 1.1202044486999512, + "learning_rate": 1.842050209205021e-05, + "loss": 0.5727936935424804, + "step": 15100 + }, + { + "epoch": 63.598952879581155, + "grad_norm": 2.251441240310669, + "learning_rate": 1.821129707112971e-05, + "loss": 0.5719662857055664, + "step": 15200 + }, + { + "epoch": 64.01675392670157, + "grad_norm": 0.9448971152305603, + "learning_rate": 1.8002092050209206e-05, + "loss": 0.5750114822387695, + "step": 15300 + }, + { + "epoch": 64.43560209424083, + "grad_norm": 1.6223911046981812, + "learning_rate": 1.7792887029288703e-05, + "loss": 0.5684125900268555, + "step": 15400 + }, + { + "epoch": 64.8544502617801, + "grad_norm": 1.105802297592163, + "learning_rate": 1.75836820083682e-05, + "loss": 0.5749607467651368, + "step": 15500 + }, + { + "epoch": 65.27225130890052, + "grad_norm": 1.0070587396621704, + "learning_rate": 1.73744769874477e-05, + "loss": 0.5693588256835938, + "step": 15600 + }, + { + "epoch": 65.69109947643979, + "grad_norm": 1.1097147464752197, + "learning_rate": 1.7165271966527196e-05, + "loss": 0.5717815780639648, + "step": 15700 + }, + { + "epoch": 66.10890052356021, + "grad_norm": 1.2500536441802979, + "learning_rate": 1.6956066945606697e-05, + "loss": 0.571502685546875, + "step": 15800 + }, + { + "epoch": 66.52774869109948, + "grad_norm": 1.0019428730010986, + "learning_rate": 1.6746861924686194e-05, + "loss": 0.567553482055664, + "step": 15900 + }, + { + "epoch": 66.94659685863874, + "grad_norm": 1.0604379177093506, + "learning_rate": 1.653765690376569e-05, + "loss": 0.5749691390991211, + "step": 16000 + }, + { + "epoch": 67.36439790575916, + "grad_norm": 1.049307942390442, + "learning_rate": 1.632845188284519e-05, + "loss": 0.5671145248413086, + "step": 16100 + }, + { + "epoch": 67.78324607329843, + "grad_norm": 1.0208990573883057, + "learning_rate": 1.6119246861924687e-05, + "loss": 0.5698457717895508, + "step": 16200 + }, + { + "epoch": 68.20104712041885, + "grad_norm": 0.9725692272186279, + "learning_rate": 1.5910041841004184e-05, + "loss": 0.5694425964355468, + "step": 16300 + }, + { + "epoch": 68.61989528795812, + "grad_norm": 1.1082414388656616, + "learning_rate": 1.5700836820083685e-05, + "loss": 0.5668373107910156, + "step": 16400 + }, + { + "epoch": 69.03769633507854, + "grad_norm": 0.9503616690635681, + "learning_rate": 1.5491631799163182e-05, + "loss": 0.5709575653076172, + "step": 16500 + }, + { + "epoch": 69.4565445026178, + "grad_norm": 1.174117922782898, + "learning_rate": 1.528242677824268e-05, + "loss": 0.5630858230590821, + "step": 16600 + }, + { + "epoch": 69.87539267015707, + "grad_norm": 1.233062744140625, + "learning_rate": 1.5073221757322176e-05, + "loss": 0.5713355255126953, + "step": 16700 + }, + { + "epoch": 70.29319371727749, + "grad_norm": 1.1545337438583374, + "learning_rate": 1.4864016736401673e-05, + "loss": 0.5669760513305664, + "step": 16800 + }, + { + "epoch": 70.71204188481676, + "grad_norm": 1.2455624341964722, + "learning_rate": 1.4654811715481172e-05, + "loss": 0.5687417984008789, + "step": 16900 + }, + { + "epoch": 71.12984293193718, + "grad_norm": 1.1097911596298218, + "learning_rate": 1.444560669456067e-05, + "loss": 0.5687915420532227, + "step": 17000 + }, + { + "epoch": 71.54869109947644, + "grad_norm": 1.3409907817840576, + "learning_rate": 1.4236401673640167e-05, + "loss": 0.5652975845336914, + "step": 17100 + }, + { + "epoch": 71.96753926701571, + "grad_norm": 1.0018601417541504, + "learning_rate": 1.4027196652719665e-05, + "loss": 0.5693225479125976, + "step": 17200 + }, + { + "epoch": 72.38534031413613, + "grad_norm": 0.9709707498550415, + "learning_rate": 1.3817991631799162e-05, + "loss": 0.5642803955078125, + "step": 17300 + }, + { + "epoch": 72.8041884816754, + "grad_norm": 1.0293502807617188, + "learning_rate": 1.3608786610878663e-05, + "loss": 0.567535514831543, + "step": 17400 + }, + { + "epoch": 73.22198952879582, + "grad_norm": 1.0947306156158447, + "learning_rate": 1.339958158995816e-05, + "loss": 0.5657819747924805, + "step": 17500 + }, + { + "epoch": 73.64083769633508, + "grad_norm": 1.0627623796463013, + "learning_rate": 1.3190376569037658e-05, + "loss": 0.5648831939697265, + "step": 17600 + }, + { + "epoch": 74.0586387434555, + "grad_norm": 1.092600703239441, + "learning_rate": 1.2981171548117154e-05, + "loss": 0.567056770324707, + "step": 17700 + }, + { + "epoch": 74.47748691099477, + "grad_norm": 1.1139910221099854, + "learning_rate": 1.2771966527196651e-05, + "loss": 0.5629258728027344, + "step": 17800 + }, + { + "epoch": 74.89633507853404, + "grad_norm": 1.0925103425979614, + "learning_rate": 1.2562761506276152e-05, + "loss": 0.5671181869506836, + "step": 17900 + }, + { + "epoch": 75.31413612565446, + "grad_norm": 1.4127650260925293, + "learning_rate": 1.235355648535565e-05, + "loss": 0.5614471054077148, + "step": 18000 + }, + { + "epoch": 75.73298429319372, + "grad_norm": 0.9931116104125977, + "learning_rate": 1.2144351464435147e-05, + "loss": 0.565269546508789, + "step": 18100 + }, + { + "epoch": 76.15078534031413, + "grad_norm": 1.1718937158584595, + "learning_rate": 1.1935146443514645e-05, + "loss": 0.5644131851196289, + "step": 18200 + }, + { + "epoch": 76.5696335078534, + "grad_norm": 0.9517426490783691, + "learning_rate": 1.1725941422594142e-05, + "loss": 0.5629844284057617, + "step": 18300 + }, + { + "epoch": 76.98848167539268, + "grad_norm": 1.0832480192184448, + "learning_rate": 1.1518828451882845e-05, + "loss": 0.5671321487426758, + "step": 18400 + }, + { + "epoch": 77.40628272251308, + "grad_norm": 1.1618616580963135, + "learning_rate": 1.1309623430962343e-05, + "loss": 0.5599403762817383, + "step": 18500 + }, + { + "epoch": 77.82513089005235, + "grad_norm": 1.0287295579910278, + "learning_rate": 1.1100418410041842e-05, + "loss": 0.5632502746582031, + "step": 18600 + }, + { + "epoch": 78.24293193717277, + "grad_norm": 1.048791766166687, + "learning_rate": 1.089121338912134e-05, + "loss": 0.5621784591674804, + "step": 18700 + }, + { + "epoch": 78.66178010471204, + "grad_norm": 1.03757643699646, + "learning_rate": 1.0682008368200837e-05, + "loss": 0.5616426467895508, + "step": 18800 + }, + { + "epoch": 79.07958115183246, + "grad_norm": 1.305603265762329, + "learning_rate": 1.0472803347280336e-05, + "loss": 0.5662485504150391, + "step": 18900 + }, + { + "epoch": 79.49842931937172, + "grad_norm": 1.0828039646148682, + "learning_rate": 1.0263598326359834e-05, + "loss": 0.5587220764160157, + "step": 19000 + }, + { + "epoch": 79.91727748691099, + "grad_norm": 1.0541635751724243, + "learning_rate": 1.0054393305439331e-05, + "loss": 0.5656935882568359, + "step": 19100 + }, + { + "epoch": 80.33507853403141, + "grad_norm": 1.4421244859695435, + "learning_rate": 9.845188284518828e-06, + "loss": 0.5583715057373047, + "step": 19200 + }, + { + "epoch": 80.75392670157068, + "grad_norm": 0.9934247732162476, + "learning_rate": 9.635983263598326e-06, + "loss": 0.5621566390991211, + "step": 19300 + }, + { + "epoch": 81.1717277486911, + "grad_norm": 1.331549048423767, + "learning_rate": 9.426778242677825e-06, + "loss": 0.5624060821533203, + "step": 19400 + }, + { + "epoch": 81.59057591623036, + "grad_norm": 1.1185020208358765, + "learning_rate": 9.217573221757323e-06, + "loss": 0.5596007537841797, + "step": 19500 + }, + { + "epoch": 82.00837696335078, + "grad_norm": 1.0355136394500732, + "learning_rate": 9.008368200836822e-06, + "loss": 0.5647842788696289, + "step": 19600 + }, + { + "epoch": 82.42722513089005, + "grad_norm": 0.9967537522315979, + "learning_rate": 8.79916317991632e-06, + "loss": 0.5558248519897461, + "step": 19700 + }, + { + "epoch": 82.84607329842932, + "grad_norm": 1.1115660667419434, + "learning_rate": 8.589958158995815e-06, + "loss": 0.5625948333740234, + "step": 19800 + }, + { + "epoch": 83.26387434554974, + "grad_norm": 1.1838023662567139, + "learning_rate": 8.380753138075314e-06, + "loss": 0.559094467163086, + "step": 19900 + }, + { + "epoch": 83.682722513089, + "grad_norm": 1.232723593711853, + "learning_rate": 8.171548117154812e-06, + "loss": 0.5604278564453125, + "step": 20000 + }, + { + "epoch": 84.10052356020942, + "grad_norm": 0.9662663340568542, + "learning_rate": 7.962343096234311e-06, + "loss": 0.560697135925293, + "step": 20100 + }, + { + "epoch": 84.51937172774869, + "grad_norm": 0.95435631275177, + "learning_rate": 7.753138075313808e-06, + "loss": 0.5556485748291016, + "step": 20200 + }, + { + "epoch": 84.93821989528796, + "grad_norm": 1.1006091833114624, + "learning_rate": 7.543933054393305e-06, + "loss": 0.5629526138305664, + "step": 20300 + }, + { + "epoch": 85.35602094240838, + "grad_norm": 1.0648730993270874, + "learning_rate": 7.336820083682008e-06, + "loss": 0.5561338043212891, + "step": 20400 + }, + { + "epoch": 85.77486910994764, + "grad_norm": 1.0455604791641235, + "learning_rate": 7.127615062761507e-06, + "loss": 0.5590327835083008, + "step": 20500 + }, + { + "epoch": 86.19267015706806, + "grad_norm": 1.2354342937469482, + "learning_rate": 6.918410041841005e-06, + "loss": 0.558480224609375, + "step": 20600 + }, + { + "epoch": 86.61151832460733, + "grad_norm": 1.1213362216949463, + "learning_rate": 6.709205020920502e-06, + "loss": 0.5574909973144532, + "step": 20700 + }, + { + "epoch": 87.02931937172775, + "grad_norm": 1.2145981788635254, + "learning_rate": 6.5000000000000004e-06, + "loss": 0.5595388793945313, + "step": 20800 + }, + { + "epoch": 87.44816753926702, + "grad_norm": 1.1763968467712402, + "learning_rate": 6.290794979079498e-06, + "loss": 0.5566361618041992, + "step": 20900 + }, + { + "epoch": 87.86701570680628, + "grad_norm": 0.9883760213851929, + "learning_rate": 6.081589958158996e-06, + "loss": 0.558988037109375, + "step": 21000 + }, + { + "epoch": 88.2848167539267, + "grad_norm": 1.3407195806503296, + "learning_rate": 5.872384937238494e-06, + "loss": 0.555633430480957, + "step": 21100 + }, + { + "epoch": 88.70366492146597, + "grad_norm": 1.2197387218475342, + "learning_rate": 5.663179916317992e-06, + "loss": 0.5576942443847657, + "step": 21200 + }, + { + "epoch": 89.12146596858639, + "grad_norm": 0.9664437770843506, + "learning_rate": 5.45397489539749e-06, + "loss": 0.5581797409057617, + "step": 21300 + }, + { + "epoch": 89.54031413612566, + "grad_norm": 1.2320648431777954, + "learning_rate": 5.244769874476987e-06, + "loss": 0.5559272003173829, + "step": 21400 + }, + { + "epoch": 89.95916230366493, + "grad_norm": 1.1831936836242676, + "learning_rate": 5.035564853556485e-06, + "loss": 0.5578675842285157, + "step": 21500 + }, + { + "epoch": 90.37696335078535, + "grad_norm": 1.0145848989486694, + "learning_rate": 4.826359832635984e-06, + "loss": 0.555514259338379, + "step": 21600 + }, + { + "epoch": 90.79581151832461, + "grad_norm": 1.1567530632019043, + "learning_rate": 4.617154811715481e-06, + "loss": 0.5568828964233399, + "step": 21700 + }, + { + "epoch": 91.21361256544503, + "grad_norm": 1.1194156408309937, + "learning_rate": 4.4079497907949796e-06, + "loss": 0.5556546783447266, + "step": 21800 + }, + { + "epoch": 91.6324607329843, + "grad_norm": 1.058899164199829, + "learning_rate": 4.198744769874477e-06, + "loss": 0.5552133178710937, + "step": 21900 + }, + { + "epoch": 92.0502617801047, + "grad_norm": 1.0123540163040161, + "learning_rate": 3.989539748953975e-06, + "loss": 0.55712158203125, + "step": 22000 + }, + { + "epoch": 92.46910994764399, + "grad_norm": 1.0693333148956299, + "learning_rate": 3.780334728033473e-06, + "loss": 0.5530570983886719, + "step": 22100 + }, + { + "epoch": 92.88795811518325, + "grad_norm": 1.020864725112915, + "learning_rate": 3.571129707112971e-06, + "loss": 0.5573068618774414, + "step": 22200 + }, + { + "epoch": 93.30575916230366, + "grad_norm": 1.1115072965621948, + "learning_rate": 3.3619246861924683e-06, + "loss": 0.5556851959228516, + "step": 22300 + }, + { + "epoch": 93.72460732984293, + "grad_norm": 1.0190234184265137, + "learning_rate": 3.1548117154811716e-06, + "loss": 0.5554112243652344, + "step": 22400 + }, + { + "epoch": 94.14240837696335, + "grad_norm": 1.0990245342254639, + "learning_rate": 2.9456066945606695e-06, + "loss": 0.5539827346801758, + "step": 22500 + }, + { + "epoch": 94.56125654450261, + "grad_norm": 1.0113505125045776, + "learning_rate": 2.7364016736401674e-06, + "loss": 0.5531864929199218, + "step": 22600 + }, + { + "epoch": 94.98010471204188, + "grad_norm": 1.0651323795318604, + "learning_rate": 2.5271966527196657e-06, + "loss": 0.5547758865356446, + "step": 22700 + }, + { + "epoch": 95.3979057591623, + "grad_norm": 0.9893053770065308, + "learning_rate": 2.317991631799163e-06, + "loss": 0.5521963882446289, + "step": 22800 + }, + { + "epoch": 95.81675392670157, + "grad_norm": 1.2413371801376343, + "learning_rate": 2.108786610878661e-06, + "loss": 0.5545172119140624, + "step": 22900 + }, + { + "epoch": 96.23455497382199, + "grad_norm": 1.1037617921829224, + "learning_rate": 1.899581589958159e-06, + "loss": 0.5509216690063476, + "step": 23000 + }, + { + "epoch": 96.65340314136125, + "grad_norm": 0.9777401089668274, + "learning_rate": 1.690376569037657e-06, + "loss": 0.5538136672973633, + "step": 23100 + }, + { + "epoch": 97.07120418848167, + "grad_norm": 1.0018055438995361, + "learning_rate": 1.4811715481171548e-06, + "loss": 0.5540202331542968, + "step": 23200 + }, + { + "epoch": 97.49005235602094, + "grad_norm": 1.0007930994033813, + "learning_rate": 1.2719665271966528e-06, + "loss": 0.5524462509155273, + "step": 23300 + }, + { + "epoch": 97.9089005235602, + "grad_norm": 1.1463111639022827, + "learning_rate": 1.0627615062761507e-06, + "loss": 0.5535177612304687, + "step": 23400 + }, + { + "epoch": 98.32670157068063, + "grad_norm": 0.980787456035614, + "learning_rate": 8.535564853556486e-07, + "loss": 0.553234977722168, + "step": 23500 + }, + { + "epoch": 98.74554973821989, + "grad_norm": 1.0415117740631104, + "learning_rate": 6.443514644351465e-07, + "loss": 0.5528529357910156, + "step": 23600 + }, + { + "epoch": 99.16335078534031, + "grad_norm": 1.0625003576278687, + "learning_rate": 4.3514644351464434e-07, + "loss": 0.5507633972167969, + "step": 23700 + } + ], + "logging_steps": 100, + "max_steps": 23900, + "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": 3091516173582336.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/training_args.bin b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc664521f815e55efb1e2ec57db59f2857c50993 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/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": 485 +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/generation_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/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/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/model.safetensors b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9d9997c3ccb280dfcff0f52ee9049ab7563db0cd --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77c8f229ca024d4cac7b32050a0a5fa95dcde8655d8d0fcd39c9ae30776a120 +size 174758344 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/optimizer.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b227c1cd87259eb9e2360721237bf605ad69e6f1 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cedeaa3e10d623b8a57763c4cf0978c06810984934479680e4ed3b2ea2524b8 +size 349565771 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/rng_state.pth b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e0521f7f34dff0b279c89fc5ac2da7d1313e4a68 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed368a800f1b438c3b2207e8816c3d617100354604fb0b7e2a3e2d5ce2214af +size 14645 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/scaler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..885eb49cc5c914170546fdb4c6a531151fb04862 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4180a34187165c8e76750903e95ab7e857338e180c9d76d2d2f65450f49528 +size 1383 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/scheduler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..08fa97f6266b0351b9c2a4b799c67f11915270e9 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d012409f4df3668c33c055a435f6ada4bbe30f94059f489bbd87971162d72565 +size 1465 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/trainer_state.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..ba3b7e4b1811257f70a12cf38640b535bd389297 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/trainer_state.json @@ -0,0 +1,1700 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.58219895287958, + "eval_steps": 100, + "global_step": 23800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.418848167539267, + "grad_norm": 1.7357312440872192, + "learning_rate": 4.9792887029288705e-05, + "loss": 1.957039794921875, + "step": 100 + }, + { + "epoch": 0.837696335078534, + "grad_norm": 1.7951552867889404, + "learning_rate": 4.9583682008368206e-05, + "loss": 1.2064629364013673, + "step": 200 + }, + { + "epoch": 1.255497382198953, + "grad_norm": 1.674418330192566, + "learning_rate": 4.93744769874477e-05, + "loss": 1.0603108978271485, + "step": 300 + }, + { + "epoch": 1.67434554973822, + "grad_norm": 1.6522367000579834, + "learning_rate": 4.91652719665272e-05, + "loss": 0.9886434936523437, + "step": 400 + }, + { + "epoch": 2.0921465968586386, + "grad_norm": 1.483288288116455, + "learning_rate": 4.89560669456067e-05, + "loss": 0.9375139617919922, + "step": 500 + }, + { + "epoch": 2.510994764397906, + "grad_norm": 1.5848816633224487, + "learning_rate": 4.8746861924686196e-05, + "loss": 0.8872322082519531, + "step": 600 + }, + { + "epoch": 2.9298429319371726, + "grad_norm": 1.5845175981521606, + "learning_rate": 4.85376569037657e-05, + "loss": 0.8752645111083984, + "step": 700 + }, + { + "epoch": 3.3476439790575916, + "grad_norm": 1.454902172088623, + "learning_rate": 4.832845188284519e-05, + "loss": 0.8418380737304687, + "step": 800 + }, + { + "epoch": 3.7664921465968586, + "grad_norm": 1.3893290758132935, + "learning_rate": 4.8119246861924685e-05, + "loss": 0.8182624053955078, + "step": 900 + }, + { + "epoch": 4.184293193717277, + "grad_norm": 1.504209280014038, + "learning_rate": 4.7910041841004186e-05, + "loss": 0.8018088531494141, + "step": 1000 + }, + { + "epoch": 4.603141361256545, + "grad_norm": 1.6646430492401123, + "learning_rate": 4.770083682008368e-05, + "loss": 0.7877240753173829, + "step": 1100 + }, + { + "epoch": 5.020942408376963, + "grad_norm": 1.3648449182510376, + "learning_rate": 4.749163179916318e-05, + "loss": 0.7797740936279297, + "step": 1200 + }, + { + "epoch": 5.439790575916231, + "grad_norm": 1.410872459411621, + "learning_rate": 4.7282426778242675e-05, + "loss": 0.7617485809326172, + "step": 1300 + }, + { + "epoch": 5.858638743455497, + "grad_norm": 1.4345377683639526, + "learning_rate": 4.7073221757322176e-05, + "loss": 0.7631221771240234, + "step": 1400 + }, + { + "epoch": 6.276439790575917, + "grad_norm": 1.327006459236145, + "learning_rate": 4.686401673640168e-05, + "loss": 0.7484178161621093, + "step": 1500 + }, + { + "epoch": 6.695287958115183, + "grad_norm": 1.420089602470398, + "learning_rate": 4.665481171548117e-05, + "loss": 0.7441964721679688, + "step": 1600 + }, + { + "epoch": 7.113089005235602, + "grad_norm": 1.5513347387313843, + "learning_rate": 4.644560669456067e-05, + "loss": 0.7383489227294922, + "step": 1700 + }, + { + "epoch": 7.531937172774869, + "grad_norm": 1.3362606763839722, + "learning_rate": 4.6236401673640166e-05, + "loss": 0.7281642913818359, + "step": 1800 + }, + { + "epoch": 7.950785340314136, + "grad_norm": 1.2809451818466187, + "learning_rate": 4.602719665271967e-05, + "loss": 0.7310231018066407, + "step": 1900 + }, + { + "epoch": 8.368586387434554, + "grad_norm": 1.2832854986190796, + "learning_rate": 4.581799163179917e-05, + "loss": 0.7165196990966797, + "step": 2000 + }, + { + "epoch": 8.787434554973823, + "grad_norm": 1.1414157152175903, + "learning_rate": 4.560878661087866e-05, + "loss": 0.7179119873046875, + "step": 2100 + }, + { + "epoch": 9.205235602094241, + "grad_norm": 1.0745928287506104, + "learning_rate": 4.539958158995816e-05, + "loss": 0.7131906890869141, + "step": 2200 + }, + { + "epoch": 9.624083769633508, + "grad_norm": 1.1124597787857056, + "learning_rate": 4.519037656903766e-05, + "loss": 0.7061318206787109, + "step": 2300 + }, + { + "epoch": 10.041884816753926, + "grad_norm": 0.9845342040061951, + "learning_rate": 4.498117154811716e-05, + "loss": 0.7075148773193359, + "step": 2400 + }, + { + "epoch": 10.460732984293193, + "grad_norm": 1.1672662496566772, + "learning_rate": 4.477196652719666e-05, + "loss": 0.7008012390136719, + "step": 2500 + }, + { + "epoch": 10.879581151832461, + "grad_norm": 1.181514859199524, + "learning_rate": 4.456276150627615e-05, + "loss": 0.6990177154541015, + "step": 2600 + }, + { + "epoch": 11.29738219895288, + "grad_norm": 1.1406160593032837, + "learning_rate": 4.4353556485355653e-05, + "loss": 0.690523681640625, + "step": 2700 + }, + { + "epoch": 11.716230366492146, + "grad_norm": 1.1152310371398926, + "learning_rate": 4.414435146443515e-05, + "loss": 0.6935369110107422, + "step": 2800 + }, + { + "epoch": 12.134031413612565, + "grad_norm": 1.283378005027771, + "learning_rate": 4.393514644351465e-05, + "loss": 0.6885635375976562, + "step": 2900 + }, + { + "epoch": 12.552879581151833, + "grad_norm": 1.2980977296829224, + "learning_rate": 4.372594142259415e-05, + "loss": 0.6849569702148437, + "step": 3000 + }, + { + "epoch": 12.9717277486911, + "grad_norm": 1.1399869918823242, + "learning_rate": 4.3516736401673643e-05, + "loss": 0.6880906677246094, + "step": 3100 + }, + { + "epoch": 13.389528795811518, + "grad_norm": 1.2640913724899292, + "learning_rate": 4.3307531380753144e-05, + "loss": 0.6769008636474609, + "step": 3200 + }, + { + "epoch": 13.808376963350785, + "grad_norm": 1.2051986455917358, + "learning_rate": 4.309832635983264e-05, + "loss": 0.6841930389404297, + "step": 3300 + }, + { + "epoch": 14.226178010471203, + "grad_norm": 1.5682283639907837, + "learning_rate": 4.288912133891214e-05, + "loss": 0.6762271118164063, + "step": 3400 + }, + { + "epoch": 14.645026178010472, + "grad_norm": 1.2480769157409668, + "learning_rate": 4.267991631799163e-05, + "loss": 0.6741954040527344, + "step": 3500 + }, + { + "epoch": 15.06282722513089, + "grad_norm": 1.1682356595993042, + "learning_rate": 4.247071129707113e-05, + "loss": 0.6774851989746093, + "step": 3600 + }, + { + "epoch": 15.481675392670157, + "grad_norm": 1.1353213787078857, + "learning_rate": 4.226150627615063e-05, + "loss": 0.6634797668457031, + "step": 3700 + }, + { + "epoch": 15.900523560209423, + "grad_norm": 1.2949745655059814, + "learning_rate": 4.205230125523012e-05, + "loss": 0.6736211395263672, + "step": 3800 + }, + { + "epoch": 16.318324607329842, + "grad_norm": 1.1021099090576172, + "learning_rate": 4.184309623430962e-05, + "loss": 0.6624949645996093, + "step": 3900 + }, + { + "epoch": 16.73717277486911, + "grad_norm": 1.2462520599365234, + "learning_rate": 4.1633891213389124e-05, + "loss": 0.6662584686279297, + "step": 4000 + }, + { + "epoch": 17.15497382198953, + "grad_norm": 1.2026138305664062, + "learning_rate": 4.142468619246862e-05, + "loss": 0.665372543334961, + "step": 4100 + }, + { + "epoch": 17.573821989528795, + "grad_norm": 1.1689097881317139, + "learning_rate": 4.121548117154812e-05, + "loss": 0.6616575622558594, + "step": 4200 + }, + { + "epoch": 17.992670157068062, + "grad_norm": 1.1259592771530151, + "learning_rate": 4.100627615062761e-05, + "loss": 0.6627973937988281, + "step": 4300 + }, + { + "epoch": 18.410471204188482, + "grad_norm": 1.1528080701828003, + "learning_rate": 4.0797071129707114e-05, + "loss": 0.6545208740234375, + "step": 4400 + }, + { + "epoch": 18.82931937172775, + "grad_norm": 1.078765869140625, + "learning_rate": 4.0587866108786615e-05, + "loss": 0.659375, + "step": 4500 + }, + { + "epoch": 19.24712041884817, + "grad_norm": 1.1452678442001343, + "learning_rate": 4.037866108786611e-05, + "loss": 0.6517630767822266, + "step": 4600 + }, + { + "epoch": 19.665968586387436, + "grad_norm": 1.3625253438949585, + "learning_rate": 4.016945606694561e-05, + "loss": 0.6546914672851563, + "step": 4700 + }, + { + "epoch": 20.083769633507853, + "grad_norm": 1.0734823942184448, + "learning_rate": 3.9960251046025104e-05, + "loss": 0.653277359008789, + "step": 4800 + }, + { + "epoch": 20.50261780104712, + "grad_norm": 1.0875906944274902, + "learning_rate": 3.9751046025104605e-05, + "loss": 0.6477639770507813, + "step": 4900 + }, + { + "epoch": 20.921465968586386, + "grad_norm": 1.2992547750473022, + "learning_rate": 3.9541841004184106e-05, + "loss": 0.6525312805175781, + "step": 5000 + }, + { + "epoch": 21.339267015706806, + "grad_norm": 1.1078609228134155, + "learning_rate": 3.93326359832636e-05, + "loss": 0.643624038696289, + "step": 5100 + }, + { + "epoch": 21.758115183246073, + "grad_norm": 1.1027839183807373, + "learning_rate": 3.91234309623431e-05, + "loss": 0.64830322265625, + "step": 5200 + }, + { + "epoch": 22.175916230366493, + "grad_norm": 1.1493128538131714, + "learning_rate": 3.8914225941422595e-05, + "loss": 0.6440758514404297, + "step": 5300 + }, + { + "epoch": 22.59476439790576, + "grad_norm": 1.1990758180618286, + "learning_rate": 3.8705020920502096e-05, + "loss": 0.6450751495361328, + "step": 5400 + }, + { + "epoch": 23.012565445026176, + "grad_norm": 1.1392757892608643, + "learning_rate": 3.84958158995816e-05, + "loss": 0.6439768981933593, + "step": 5500 + }, + { + "epoch": 23.431413612565446, + "grad_norm": 1.145913004875183, + "learning_rate": 3.828661087866109e-05, + "loss": 0.6345698547363281, + "step": 5600 + }, + { + "epoch": 23.850261780104713, + "grad_norm": 1.1432591676712036, + "learning_rate": 3.807740585774059e-05, + "loss": 0.6436957550048829, + "step": 5700 + }, + { + "epoch": 24.26806282722513, + "grad_norm": 1.0853745937347412, + "learning_rate": 3.7868200836820086e-05, + "loss": 0.634792594909668, + "step": 5800 + }, + { + "epoch": 24.686910994764396, + "grad_norm": 1.0998246669769287, + "learning_rate": 3.765899581589959e-05, + "loss": 0.6373896789550781, + "step": 5900 + }, + { + "epoch": 25.104712041884817, + "grad_norm": 1.427016258239746, + "learning_rate": 3.744979079497908e-05, + "loss": 0.639299545288086, + "step": 6000 + }, + { + "epoch": 25.523560209424083, + "grad_norm": 1.0360475778579712, + "learning_rate": 3.724058577405858e-05, + "loss": 0.6306960296630859, + "step": 6100 + }, + { + "epoch": 25.94240837696335, + "grad_norm": 1.029296875, + "learning_rate": 3.7031380753138076e-05, + "loss": 0.635133056640625, + "step": 6200 + }, + { + "epoch": 26.36020942408377, + "grad_norm": 1.0714229345321655, + "learning_rate": 3.682217573221757e-05, + "loss": 0.6279976272583008, + "step": 6300 + }, + { + "epoch": 26.779057591623037, + "grad_norm": 1.0668662786483765, + "learning_rate": 3.661297071129707e-05, + "loss": 0.6319166564941406, + "step": 6400 + }, + { + "epoch": 27.196858638743457, + "grad_norm": 1.2612731456756592, + "learning_rate": 3.640376569037657e-05, + "loss": 0.626447639465332, + "step": 6500 + }, + { + "epoch": 27.615706806282724, + "grad_norm": 1.111774206161499, + "learning_rate": 3.6194560669456066e-05, + "loss": 0.6283223724365234, + "step": 6600 + }, + { + "epoch": 28.03350785340314, + "grad_norm": 1.1588354110717773, + "learning_rate": 3.5985355648535567e-05, + "loss": 0.6337715148925781, + "step": 6700 + }, + { + "epoch": 28.452356020942407, + "grad_norm": 1.2656804323196411, + "learning_rate": 3.577615062761506e-05, + "loss": 0.6196572494506836, + "step": 6800 + }, + { + "epoch": 28.871204188481677, + "grad_norm": 1.0904902219772339, + "learning_rate": 3.556694560669456e-05, + "loss": 0.6265386581420899, + "step": 6900 + }, + { + "epoch": 29.289005235602094, + "grad_norm": 1.2348970174789429, + "learning_rate": 3.535774058577406e-05, + "loss": 0.6187874221801758, + "step": 7000 + }, + { + "epoch": 29.70785340314136, + "grad_norm": 1.0990043878555298, + "learning_rate": 3.5148535564853556e-05, + "loss": 0.6251428985595703, + "step": 7100 + }, + { + "epoch": 30.12565445026178, + "grad_norm": 1.3289461135864258, + "learning_rate": 3.493933054393306e-05, + "loss": 0.6217424011230469, + "step": 7200 + }, + { + "epoch": 30.544502617801047, + "grad_norm": 1.1826465129852295, + "learning_rate": 3.473012552301255e-05, + "loss": 0.6176059722900391, + "step": 7300 + }, + { + "epoch": 30.963350785340314, + "grad_norm": 1.1363434791564941, + "learning_rate": 3.452092050209205e-05, + "loss": 0.6250752258300781, + "step": 7400 + }, + { + "epoch": 31.381151832460734, + "grad_norm": 1.0488321781158447, + "learning_rate": 3.431171548117155e-05, + "loss": 0.6131296157836914, + "step": 7500 + }, + { + "epoch": 31.8, + "grad_norm": 1.0740634202957153, + "learning_rate": 3.410251046025105e-05, + "loss": 0.62077392578125, + "step": 7600 + }, + { + "epoch": 32.21780104712042, + "grad_norm": 1.2768574953079224, + "learning_rate": 3.389330543933055e-05, + "loss": 0.6132323074340821, + "step": 7700 + }, + { + "epoch": 32.636649214659684, + "grad_norm": 1.2454967498779297, + "learning_rate": 3.368410041841004e-05, + "loss": 0.6179965972900391, + "step": 7800 + }, + { + "epoch": 33.054450261780104, + "grad_norm": 1.0509141683578491, + "learning_rate": 3.347489539748954e-05, + "loss": 0.6159653091430664, + "step": 7900 + }, + { + "epoch": 33.47329842931937, + "grad_norm": 1.2346339225769043, + "learning_rate": 3.3265690376569044e-05, + "loss": 0.608684196472168, + "step": 8000 + }, + { + "epoch": 33.89214659685864, + "grad_norm": 1.0819355249404907, + "learning_rate": 3.305648535564854e-05, + "loss": 0.6147115707397461, + "step": 8100 + }, + { + "epoch": 34.30994764397906, + "grad_norm": 1.2290990352630615, + "learning_rate": 3.284728033472804e-05, + "loss": 0.6080178833007812, + "step": 8200 + }, + { + "epoch": 34.728795811518324, + "grad_norm": 1.0522081851959229, + "learning_rate": 3.263807531380753e-05, + "loss": 0.6099481964111328, + "step": 8300 + }, + { + "epoch": 35.146596858638745, + "grad_norm": 1.1879432201385498, + "learning_rate": 3.2428870292887034e-05, + "loss": 0.6108789443969727, + "step": 8400 + }, + { + "epoch": 35.56544502617801, + "grad_norm": 1.2454171180725098, + "learning_rate": 3.2219665271966535e-05, + "loss": 0.6051754760742187, + "step": 8500 + }, + { + "epoch": 35.98429319371728, + "grad_norm": 1.2238366603851318, + "learning_rate": 3.201046025104603e-05, + "loss": 0.6135285949707031, + "step": 8600 + }, + { + "epoch": 36.4020942408377, + "grad_norm": 1.3203046321868896, + "learning_rate": 3.180125523012552e-05, + "loss": 0.6003643417358399, + "step": 8700 + }, + { + "epoch": 36.820942408376965, + "grad_norm": 1.3004391193389893, + "learning_rate": 3.1592050209205024e-05, + "loss": 0.6084416961669922, + "step": 8800 + }, + { + "epoch": 37.238743455497385, + "grad_norm": 1.0923435688018799, + "learning_rate": 3.138284518828452e-05, + "loss": 0.6027616119384765, + "step": 8900 + }, + { + "epoch": 37.65759162303665, + "grad_norm": 1.3689918518066406, + "learning_rate": 3.117364016736402e-05, + "loss": 0.6034185409545898, + "step": 9000 + }, + { + "epoch": 38.075392670157065, + "grad_norm": 1.0931211709976196, + "learning_rate": 3.096443514644351e-05, + "loss": 0.6048267364501954, + "step": 9100 + }, + { + "epoch": 38.49424083769634, + "grad_norm": 1.2372386455535889, + "learning_rate": 3.0755230125523014e-05, + "loss": 0.5964799880981445, + "step": 9200 + }, + { + "epoch": 38.913089005235605, + "grad_norm": 1.2137774229049683, + "learning_rate": 3.054602510460251e-05, + "loss": 0.6053957748413086, + "step": 9300 + }, + { + "epoch": 39.33089005235602, + "grad_norm": 1.2441918849945068, + "learning_rate": 3.033682008368201e-05, + "loss": 0.5963822937011719, + "step": 9400 + }, + { + "epoch": 39.749738219895285, + "grad_norm": 1.1947072744369507, + "learning_rate": 3.0127615062761506e-05, + "loss": 0.6023126983642578, + "step": 9500 + }, + { + "epoch": 40.167539267015705, + "grad_norm": 1.234154462814331, + "learning_rate": 2.9918410041841004e-05, + "loss": 0.6001630401611329, + "step": 9600 + }, + { + "epoch": 40.58638743455497, + "grad_norm": 1.163256287574768, + "learning_rate": 2.9709205020920505e-05, + "loss": 0.5957479858398438, + "step": 9700 + }, + { + "epoch": 41.00418848167539, + "grad_norm": 1.098540186882019, + "learning_rate": 2.95e-05, + "loss": 0.6069541168212891, + "step": 9800 + }, + { + "epoch": 41.42303664921466, + "grad_norm": 1.241861343383789, + "learning_rate": 2.92907949790795e-05, + "loss": 0.589141960144043, + "step": 9900 + }, + { + "epoch": 41.841884816753925, + "grad_norm": 1.175836205482483, + "learning_rate": 2.9081589958158994e-05, + "loss": 0.6017288970947265, + "step": 10000 + }, + { + "epoch": 42.259685863874346, + "grad_norm": 1.2884583473205566, + "learning_rate": 2.88744769874477e-05, + "loss": 0.5935973358154297, + "step": 10100 + }, + { + "epoch": 42.67853403141361, + "grad_norm": 1.247544765472412, + "learning_rate": 2.8665271966527198e-05, + "loss": 0.5953170776367187, + "step": 10200 + }, + { + "epoch": 43.09633507853403, + "grad_norm": 1.0641762018203735, + "learning_rate": 2.8456066945606695e-05, + "loss": 0.5974231338500977, + "step": 10300 + }, + { + "epoch": 43.5151832460733, + "grad_norm": 1.1697312593460083, + "learning_rate": 2.8246861924686196e-05, + "loss": 0.5913193893432617, + "step": 10400 + }, + { + "epoch": 43.934031413612566, + "grad_norm": 1.1365479230880737, + "learning_rate": 2.803765690376569e-05, + "loss": 0.598421401977539, + "step": 10500 + }, + { + "epoch": 44.351832460732986, + "grad_norm": 1.1157909631729126, + "learning_rate": 2.782845188284519e-05, + "loss": 0.5873412322998047, + "step": 10600 + }, + { + "epoch": 44.77068062827225, + "grad_norm": 1.348643183708191, + "learning_rate": 2.7619246861924685e-05, + "loss": 0.5936133193969727, + "step": 10700 + }, + { + "epoch": 45.18848167539267, + "grad_norm": 1.197517991065979, + "learning_rate": 2.7410041841004186e-05, + "loss": 0.5921408462524415, + "step": 10800 + }, + { + "epoch": 45.60732984293194, + "grad_norm": 1.2170952558517456, + "learning_rate": 2.7200836820083687e-05, + "loss": 0.5896556091308593, + "step": 10900 + }, + { + "epoch": 46.02513089005235, + "grad_norm": 1.0762948989868164, + "learning_rate": 2.699163179916318e-05, + "loss": 0.5945636749267578, + "step": 11000 + }, + { + "epoch": 46.443979057591626, + "grad_norm": 1.1585177183151245, + "learning_rate": 2.678242677824268e-05, + "loss": 0.5853750610351562, + "step": 11100 + }, + { + "epoch": 46.86282722513089, + "grad_norm": 1.3420946598052979, + "learning_rate": 2.6573221757322176e-05, + "loss": 0.5932060623168945, + "step": 11200 + }, + { + "epoch": 47.280628272251306, + "grad_norm": 1.1126630306243896, + "learning_rate": 2.6364016736401677e-05, + "loss": 0.5834246063232422, + "step": 11300 + }, + { + "epoch": 47.69947643979057, + "grad_norm": 1.2244997024536133, + "learning_rate": 2.615481171548117e-05, + "loss": 0.5885814666748047, + "step": 11400 + }, + { + "epoch": 48.11727748691099, + "grad_norm": 1.3700648546218872, + "learning_rate": 2.594560669456067e-05, + "loss": 0.5896315383911133, + "step": 11500 + }, + { + "epoch": 48.53612565445026, + "grad_norm": 1.2028729915618896, + "learning_rate": 2.573640167364017e-05, + "loss": 0.5825551223754882, + "step": 11600 + }, + { + "epoch": 48.954973821989526, + "grad_norm": 1.198599934577942, + "learning_rate": 2.5527196652719663e-05, + "loss": 0.592343978881836, + "step": 11700 + }, + { + "epoch": 49.372774869109946, + "grad_norm": 1.1620557308197021, + "learning_rate": 2.5317991631799164e-05, + "loss": 0.5804216766357422, + "step": 11800 + }, + { + "epoch": 49.79162303664921, + "grad_norm": 1.2490957975387573, + "learning_rate": 2.5108786610878658e-05, + "loss": 0.5864405059814453, + "step": 11900 + }, + { + "epoch": 50.20942408376963, + "grad_norm": 1.1138325929641724, + "learning_rate": 2.489958158995816e-05, + "loss": 0.5846857070922852, + "step": 12000 + }, + { + "epoch": 50.6282722513089, + "grad_norm": 1.2332500219345093, + "learning_rate": 2.4692468619246865e-05, + "loss": 0.5829949188232422, + "step": 12100 + }, + { + "epoch": 51.04607329842932, + "grad_norm": 1.257340908050537, + "learning_rate": 2.4483263598326363e-05, + "loss": 0.5898705291748046, + "step": 12200 + }, + { + "epoch": 51.46492146596859, + "grad_norm": 1.2143198251724243, + "learning_rate": 2.427405857740586e-05, + "loss": 0.5786220550537109, + "step": 12300 + }, + { + "epoch": 51.88376963350785, + "grad_norm": 1.1260303258895874, + "learning_rate": 2.4064853556485358e-05, + "loss": 0.5868261337280274, + "step": 12400 + }, + { + "epoch": 52.301570680628274, + "grad_norm": 1.1678194999694824, + "learning_rate": 2.3855648535564852e-05, + "loss": 0.5809542846679687, + "step": 12500 + }, + { + "epoch": 52.72041884816754, + "grad_norm": 1.1895207166671753, + "learning_rate": 2.3646443514644353e-05, + "loss": 0.5844503784179688, + "step": 12600 + }, + { + "epoch": 53.13821989528796, + "grad_norm": 1.1448301076889038, + "learning_rate": 2.343723849372385e-05, + "loss": 0.5809010314941406, + "step": 12700 + }, + { + "epoch": 53.55706806282723, + "grad_norm": 1.1571141481399536, + "learning_rate": 2.3228033472803348e-05, + "loss": 0.5787462997436523, + "step": 12800 + }, + { + "epoch": 53.975916230366494, + "grad_norm": 1.0440938472747803, + "learning_rate": 2.3018828451882845e-05, + "loss": 0.5878799438476563, + "step": 12900 + }, + { + "epoch": 54.393717277486914, + "grad_norm": 1.132901668548584, + "learning_rate": 2.2809623430962343e-05, + "loss": 0.575037841796875, + "step": 13000 + }, + { + "epoch": 54.81256544502618, + "grad_norm": 1.2370219230651855, + "learning_rate": 2.2600418410041844e-05, + "loss": 0.5822734451293945, + "step": 13100 + }, + { + "epoch": 55.230366492146594, + "grad_norm": 1.1507346630096436, + "learning_rate": 2.239121338912134e-05, + "loss": 0.5782026672363281, + "step": 13200 + }, + { + "epoch": 55.64921465968587, + "grad_norm": 0.9882214665412903, + "learning_rate": 2.218200836820084e-05, + "loss": 0.580045394897461, + "step": 13300 + }, + { + "epoch": 56.06701570680628, + "grad_norm": 1.1273308992385864, + "learning_rate": 2.1972803347280336e-05, + "loss": 0.581448974609375, + "step": 13400 + }, + { + "epoch": 56.48586387434555, + "grad_norm": 1.1246113777160645, + "learning_rate": 2.1763598326359834e-05, + "loss": 0.5761925506591797, + "step": 13500 + }, + { + "epoch": 56.904712041884814, + "grad_norm": 1.1773682832717896, + "learning_rate": 2.155439330543933e-05, + "loss": 0.5803777313232422, + "step": 13600 + }, + { + "epoch": 57.322513089005234, + "grad_norm": 1.1531919240951538, + "learning_rate": 2.134518828451883e-05, + "loss": 0.5734993362426758, + "step": 13700 + }, + { + "epoch": 57.7413612565445, + "grad_norm": 1.0658059120178223, + "learning_rate": 2.1135983263598326e-05, + "loss": 0.5804447937011719, + "step": 13800 + }, + { + "epoch": 58.15916230366492, + "grad_norm": 1.256008267402649, + "learning_rate": 2.0926778242677823e-05, + "loss": 0.5771566772460938, + "step": 13900 + }, + { + "epoch": 58.57801047120419, + "grad_norm": 1.1181727647781372, + "learning_rate": 2.071757322175732e-05, + "loss": 0.5735276794433594, + "step": 14000 + }, + { + "epoch": 58.996858638743454, + "grad_norm": 1.1943111419677734, + "learning_rate": 2.0510460251046027e-05, + "loss": 0.5823272705078125, + "step": 14100 + }, + { + "epoch": 59.414659685863874, + "grad_norm": 1.245831847190857, + "learning_rate": 2.0301255230125525e-05, + "loss": 0.5691431427001953, + "step": 14200 + }, + { + "epoch": 59.83350785340314, + "grad_norm": 1.0968621969223022, + "learning_rate": 2.0092050209205022e-05, + "loss": 0.5803122329711914, + "step": 14300 + }, + { + "epoch": 60.25130890052356, + "grad_norm": 1.0285043716430664, + "learning_rate": 1.9884937238493725e-05, + "loss": 0.5736106872558594, + "step": 14400 + }, + { + "epoch": 60.67015706806283, + "grad_norm": 1.0914031267166138, + "learning_rate": 1.9675732217573223e-05, + "loss": 0.5746928405761719, + "step": 14500 + }, + { + "epoch": 61.08795811518325, + "grad_norm": 1.043164849281311, + "learning_rate": 1.946652719665272e-05, + "loss": 0.5775559997558594, + "step": 14600 + }, + { + "epoch": 61.506806282722515, + "grad_norm": 1.0833253860473633, + "learning_rate": 1.9257322175732218e-05, + "loss": 0.5722423553466797, + "step": 14700 + }, + { + "epoch": 61.92565445026178, + "grad_norm": 1.1481914520263672, + "learning_rate": 1.904811715481172e-05, + "loss": 0.5769286346435547, + "step": 14800 + }, + { + "epoch": 62.3434554973822, + "grad_norm": 1.0194867849349976, + "learning_rate": 1.8838912133891216e-05, + "loss": 0.5702044296264649, + "step": 14900 + }, + { + "epoch": 62.76230366492147, + "grad_norm": 1.091729760169983, + "learning_rate": 1.8629707112970713e-05, + "loss": 0.5723474502563477, + "step": 15000 + }, + { + "epoch": 63.18010471204188, + "grad_norm": 1.1202044486999512, + "learning_rate": 1.842050209205021e-05, + "loss": 0.5727936935424804, + "step": 15100 + }, + { + "epoch": 63.598952879581155, + "grad_norm": 2.251441240310669, + "learning_rate": 1.821129707112971e-05, + "loss": 0.5719662857055664, + "step": 15200 + }, + { + "epoch": 64.01675392670157, + "grad_norm": 0.9448971152305603, + "learning_rate": 1.8002092050209206e-05, + "loss": 0.5750114822387695, + "step": 15300 + }, + { + "epoch": 64.43560209424083, + "grad_norm": 1.6223911046981812, + "learning_rate": 1.7792887029288703e-05, + "loss": 0.5684125900268555, + "step": 15400 + }, + { + "epoch": 64.8544502617801, + "grad_norm": 1.105802297592163, + "learning_rate": 1.75836820083682e-05, + "loss": 0.5749607467651368, + "step": 15500 + }, + { + "epoch": 65.27225130890052, + "grad_norm": 1.0070587396621704, + "learning_rate": 1.73744769874477e-05, + "loss": 0.5693588256835938, + "step": 15600 + }, + { + "epoch": 65.69109947643979, + "grad_norm": 1.1097147464752197, + "learning_rate": 1.7165271966527196e-05, + "loss": 0.5717815780639648, + "step": 15700 + }, + { + "epoch": 66.10890052356021, + "grad_norm": 1.2500536441802979, + "learning_rate": 1.6956066945606697e-05, + "loss": 0.571502685546875, + "step": 15800 + }, + { + "epoch": 66.52774869109948, + "grad_norm": 1.0019428730010986, + "learning_rate": 1.6746861924686194e-05, + "loss": 0.567553482055664, + "step": 15900 + }, + { + "epoch": 66.94659685863874, + "grad_norm": 1.0604379177093506, + "learning_rate": 1.653765690376569e-05, + "loss": 0.5749691390991211, + "step": 16000 + }, + { + "epoch": 67.36439790575916, + "grad_norm": 1.049307942390442, + "learning_rate": 1.632845188284519e-05, + "loss": 0.5671145248413086, + "step": 16100 + }, + { + "epoch": 67.78324607329843, + "grad_norm": 1.0208990573883057, + "learning_rate": 1.6119246861924687e-05, + "loss": 0.5698457717895508, + "step": 16200 + }, + { + "epoch": 68.20104712041885, + "grad_norm": 0.9725692272186279, + "learning_rate": 1.5910041841004184e-05, + "loss": 0.5694425964355468, + "step": 16300 + }, + { + "epoch": 68.61989528795812, + "grad_norm": 1.1082414388656616, + "learning_rate": 1.5700836820083685e-05, + "loss": 0.5668373107910156, + "step": 16400 + }, + { + "epoch": 69.03769633507854, + "grad_norm": 0.9503616690635681, + "learning_rate": 1.5491631799163182e-05, + "loss": 0.5709575653076172, + "step": 16500 + }, + { + "epoch": 69.4565445026178, + "grad_norm": 1.174117922782898, + "learning_rate": 1.528242677824268e-05, + "loss": 0.5630858230590821, + "step": 16600 + }, + { + "epoch": 69.87539267015707, + "grad_norm": 1.233062744140625, + "learning_rate": 1.5073221757322176e-05, + "loss": 0.5713355255126953, + "step": 16700 + }, + { + "epoch": 70.29319371727749, + "grad_norm": 1.1545337438583374, + "learning_rate": 1.4864016736401673e-05, + "loss": 0.5669760513305664, + "step": 16800 + }, + { + "epoch": 70.71204188481676, + "grad_norm": 1.2455624341964722, + "learning_rate": 1.4654811715481172e-05, + "loss": 0.5687417984008789, + "step": 16900 + }, + { + "epoch": 71.12984293193718, + "grad_norm": 1.1097911596298218, + "learning_rate": 1.444560669456067e-05, + "loss": 0.5687915420532227, + "step": 17000 + }, + { + "epoch": 71.54869109947644, + "grad_norm": 1.3409907817840576, + "learning_rate": 1.4236401673640167e-05, + "loss": 0.5652975845336914, + "step": 17100 + }, + { + "epoch": 71.96753926701571, + "grad_norm": 1.0018601417541504, + "learning_rate": 1.4027196652719665e-05, + "loss": 0.5693225479125976, + "step": 17200 + }, + { + "epoch": 72.38534031413613, + "grad_norm": 0.9709707498550415, + "learning_rate": 1.3817991631799162e-05, + "loss": 0.5642803955078125, + "step": 17300 + }, + { + "epoch": 72.8041884816754, + "grad_norm": 1.0293502807617188, + "learning_rate": 1.3608786610878663e-05, + "loss": 0.567535514831543, + "step": 17400 + }, + { + "epoch": 73.22198952879582, + "grad_norm": 1.0947306156158447, + "learning_rate": 1.339958158995816e-05, + "loss": 0.5657819747924805, + "step": 17500 + }, + { + "epoch": 73.64083769633508, + "grad_norm": 1.0627623796463013, + "learning_rate": 1.3190376569037658e-05, + "loss": 0.5648831939697265, + "step": 17600 + }, + { + "epoch": 74.0586387434555, + "grad_norm": 1.092600703239441, + "learning_rate": 1.2981171548117154e-05, + "loss": 0.567056770324707, + "step": 17700 + }, + { + "epoch": 74.47748691099477, + "grad_norm": 1.1139910221099854, + "learning_rate": 1.2771966527196651e-05, + "loss": 0.5629258728027344, + "step": 17800 + }, + { + "epoch": 74.89633507853404, + "grad_norm": 1.0925103425979614, + "learning_rate": 1.2562761506276152e-05, + "loss": 0.5671181869506836, + "step": 17900 + }, + { + "epoch": 75.31413612565446, + "grad_norm": 1.4127650260925293, + "learning_rate": 1.235355648535565e-05, + "loss": 0.5614471054077148, + "step": 18000 + }, + { + "epoch": 75.73298429319372, + "grad_norm": 0.9931116104125977, + "learning_rate": 1.2144351464435147e-05, + "loss": 0.565269546508789, + "step": 18100 + }, + { + "epoch": 76.15078534031413, + "grad_norm": 1.1718937158584595, + "learning_rate": 1.1935146443514645e-05, + "loss": 0.5644131851196289, + "step": 18200 + }, + { + "epoch": 76.5696335078534, + "grad_norm": 0.9517426490783691, + "learning_rate": 1.1725941422594142e-05, + "loss": 0.5629844284057617, + "step": 18300 + }, + { + "epoch": 76.98848167539268, + "grad_norm": 1.0832480192184448, + "learning_rate": 1.1518828451882845e-05, + "loss": 0.5671321487426758, + "step": 18400 + }, + { + "epoch": 77.40628272251308, + "grad_norm": 1.1618616580963135, + "learning_rate": 1.1309623430962343e-05, + "loss": 0.5599403762817383, + "step": 18500 + }, + { + "epoch": 77.82513089005235, + "grad_norm": 1.0287295579910278, + "learning_rate": 1.1100418410041842e-05, + "loss": 0.5632502746582031, + "step": 18600 + }, + { + "epoch": 78.24293193717277, + "grad_norm": 1.048791766166687, + "learning_rate": 1.089121338912134e-05, + "loss": 0.5621784591674804, + "step": 18700 + }, + { + "epoch": 78.66178010471204, + "grad_norm": 1.03757643699646, + "learning_rate": 1.0682008368200837e-05, + "loss": 0.5616426467895508, + "step": 18800 + }, + { + "epoch": 79.07958115183246, + "grad_norm": 1.305603265762329, + "learning_rate": 1.0472803347280336e-05, + "loss": 0.5662485504150391, + "step": 18900 + }, + { + "epoch": 79.49842931937172, + "grad_norm": 1.0828039646148682, + "learning_rate": 1.0263598326359834e-05, + "loss": 0.5587220764160157, + "step": 19000 + }, + { + "epoch": 79.91727748691099, + "grad_norm": 1.0541635751724243, + "learning_rate": 1.0054393305439331e-05, + "loss": 0.5656935882568359, + "step": 19100 + }, + { + "epoch": 80.33507853403141, + "grad_norm": 1.4421244859695435, + "learning_rate": 9.845188284518828e-06, + "loss": 0.5583715057373047, + "step": 19200 + }, + { + "epoch": 80.75392670157068, + "grad_norm": 0.9934247732162476, + "learning_rate": 9.635983263598326e-06, + "loss": 0.5621566390991211, + "step": 19300 + }, + { + "epoch": 81.1717277486911, + "grad_norm": 1.331549048423767, + "learning_rate": 9.426778242677825e-06, + "loss": 0.5624060821533203, + "step": 19400 + }, + { + "epoch": 81.59057591623036, + "grad_norm": 1.1185020208358765, + "learning_rate": 9.217573221757323e-06, + "loss": 0.5596007537841797, + "step": 19500 + }, + { + "epoch": 82.00837696335078, + "grad_norm": 1.0355136394500732, + "learning_rate": 9.008368200836822e-06, + "loss": 0.5647842788696289, + "step": 19600 + }, + { + "epoch": 82.42722513089005, + "grad_norm": 0.9967537522315979, + "learning_rate": 8.79916317991632e-06, + "loss": 0.5558248519897461, + "step": 19700 + }, + { + "epoch": 82.84607329842932, + "grad_norm": 1.1115660667419434, + "learning_rate": 8.589958158995815e-06, + "loss": 0.5625948333740234, + "step": 19800 + }, + { + "epoch": 83.26387434554974, + "grad_norm": 1.1838023662567139, + "learning_rate": 8.380753138075314e-06, + "loss": 0.559094467163086, + "step": 19900 + }, + { + "epoch": 83.682722513089, + "grad_norm": 1.232723593711853, + "learning_rate": 8.171548117154812e-06, + "loss": 0.5604278564453125, + "step": 20000 + }, + { + "epoch": 84.10052356020942, + "grad_norm": 0.9662663340568542, + "learning_rate": 7.962343096234311e-06, + "loss": 0.560697135925293, + "step": 20100 + }, + { + "epoch": 84.51937172774869, + "grad_norm": 0.95435631275177, + "learning_rate": 7.753138075313808e-06, + "loss": 0.5556485748291016, + "step": 20200 + }, + { + "epoch": 84.93821989528796, + "grad_norm": 1.1006091833114624, + "learning_rate": 7.543933054393305e-06, + "loss": 0.5629526138305664, + "step": 20300 + }, + { + "epoch": 85.35602094240838, + "grad_norm": 1.0648730993270874, + "learning_rate": 7.336820083682008e-06, + "loss": 0.5561338043212891, + "step": 20400 + }, + { + "epoch": 85.77486910994764, + "grad_norm": 1.0455604791641235, + "learning_rate": 7.127615062761507e-06, + "loss": 0.5590327835083008, + "step": 20500 + }, + { + "epoch": 86.19267015706806, + "grad_norm": 1.2354342937469482, + "learning_rate": 6.918410041841005e-06, + "loss": 0.558480224609375, + "step": 20600 + }, + { + "epoch": 86.61151832460733, + "grad_norm": 1.1213362216949463, + "learning_rate": 6.709205020920502e-06, + "loss": 0.5574909973144532, + "step": 20700 + }, + { + "epoch": 87.02931937172775, + "grad_norm": 1.2145981788635254, + "learning_rate": 6.5000000000000004e-06, + "loss": 0.5595388793945313, + "step": 20800 + }, + { + "epoch": 87.44816753926702, + "grad_norm": 1.1763968467712402, + "learning_rate": 6.290794979079498e-06, + "loss": 0.5566361618041992, + "step": 20900 + }, + { + "epoch": 87.86701570680628, + "grad_norm": 0.9883760213851929, + "learning_rate": 6.081589958158996e-06, + "loss": 0.558988037109375, + "step": 21000 + }, + { + "epoch": 88.2848167539267, + "grad_norm": 1.3407195806503296, + "learning_rate": 5.872384937238494e-06, + "loss": 0.555633430480957, + "step": 21100 + }, + { + "epoch": 88.70366492146597, + "grad_norm": 1.2197387218475342, + "learning_rate": 5.663179916317992e-06, + "loss": 0.5576942443847657, + "step": 21200 + }, + { + "epoch": 89.12146596858639, + "grad_norm": 0.9664437770843506, + "learning_rate": 5.45397489539749e-06, + "loss": 0.5581797409057617, + "step": 21300 + }, + { + "epoch": 89.54031413612566, + "grad_norm": 1.2320648431777954, + "learning_rate": 5.244769874476987e-06, + "loss": 0.5559272003173829, + "step": 21400 + }, + { + "epoch": 89.95916230366493, + "grad_norm": 1.1831936836242676, + "learning_rate": 5.035564853556485e-06, + "loss": 0.5578675842285157, + "step": 21500 + }, + { + "epoch": 90.37696335078535, + "grad_norm": 1.0145848989486694, + "learning_rate": 4.826359832635984e-06, + "loss": 0.555514259338379, + "step": 21600 + }, + { + "epoch": 90.79581151832461, + "grad_norm": 1.1567530632019043, + "learning_rate": 4.617154811715481e-06, + "loss": 0.5568828964233399, + "step": 21700 + }, + { + "epoch": 91.21361256544503, + "grad_norm": 1.1194156408309937, + "learning_rate": 4.4079497907949796e-06, + "loss": 0.5556546783447266, + "step": 21800 + }, + { + "epoch": 91.6324607329843, + "grad_norm": 1.058899164199829, + "learning_rate": 4.198744769874477e-06, + "loss": 0.5552133178710937, + "step": 21900 + }, + { + "epoch": 92.0502617801047, + "grad_norm": 1.0123540163040161, + "learning_rate": 3.989539748953975e-06, + "loss": 0.55712158203125, + "step": 22000 + }, + { + "epoch": 92.46910994764399, + "grad_norm": 1.0693333148956299, + "learning_rate": 3.780334728033473e-06, + "loss": 0.5530570983886719, + "step": 22100 + }, + { + "epoch": 92.88795811518325, + "grad_norm": 1.020864725112915, + "learning_rate": 3.571129707112971e-06, + "loss": 0.5573068618774414, + "step": 22200 + }, + { + "epoch": 93.30575916230366, + "grad_norm": 1.1115072965621948, + "learning_rate": 3.3619246861924683e-06, + "loss": 0.5556851959228516, + "step": 22300 + }, + { + "epoch": 93.72460732984293, + "grad_norm": 1.0190234184265137, + "learning_rate": 3.1548117154811716e-06, + "loss": 0.5554112243652344, + "step": 22400 + }, + { + "epoch": 94.14240837696335, + "grad_norm": 1.0990245342254639, + "learning_rate": 2.9456066945606695e-06, + "loss": 0.5539827346801758, + "step": 22500 + }, + { + "epoch": 94.56125654450261, + "grad_norm": 1.0113505125045776, + "learning_rate": 2.7364016736401674e-06, + "loss": 0.5531864929199218, + "step": 22600 + }, + { + "epoch": 94.98010471204188, + "grad_norm": 1.0651323795318604, + "learning_rate": 2.5271966527196657e-06, + "loss": 0.5547758865356446, + "step": 22700 + }, + { + "epoch": 95.3979057591623, + "grad_norm": 0.9893053770065308, + "learning_rate": 2.317991631799163e-06, + "loss": 0.5521963882446289, + "step": 22800 + }, + { + "epoch": 95.81675392670157, + "grad_norm": 1.2413371801376343, + "learning_rate": 2.108786610878661e-06, + "loss": 0.5545172119140624, + "step": 22900 + }, + { + "epoch": 96.23455497382199, + "grad_norm": 1.1037617921829224, + "learning_rate": 1.899581589958159e-06, + "loss": 0.5509216690063476, + "step": 23000 + }, + { + "epoch": 96.65340314136125, + "grad_norm": 0.9777401089668274, + "learning_rate": 1.690376569037657e-06, + "loss": 0.5538136672973633, + "step": 23100 + }, + { + "epoch": 97.07120418848167, + "grad_norm": 1.0018055438995361, + "learning_rate": 1.4811715481171548e-06, + "loss": 0.5540202331542968, + "step": 23200 + }, + { + "epoch": 97.49005235602094, + "grad_norm": 1.0007930994033813, + "learning_rate": 1.2719665271966528e-06, + "loss": 0.5524462509155273, + "step": 23300 + }, + { + "epoch": 97.9089005235602, + "grad_norm": 1.1463111639022827, + "learning_rate": 1.0627615062761507e-06, + "loss": 0.5535177612304687, + "step": 23400 + }, + { + "epoch": 98.32670157068063, + "grad_norm": 0.980787456035614, + "learning_rate": 8.535564853556486e-07, + "loss": 0.553234977722168, + "step": 23500 + }, + { + "epoch": 98.74554973821989, + "grad_norm": 1.0415117740631104, + "learning_rate": 6.443514644351465e-07, + "loss": 0.5528529357910156, + "step": 23600 + }, + { + "epoch": 99.16335078534031, + "grad_norm": 1.0625003576278687, + "learning_rate": 4.3514644351464434e-07, + "loss": 0.5507633972167969, + "step": 23700 + }, + { + "epoch": 99.58219895287958, + "grad_norm": 1.0756092071533203, + "learning_rate": 2.2594142259414228e-07, + "loss": 0.5520084381103516, + "step": 23800 + } + ], + "logging_steps": 100, + "max_steps": 23900, + "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": 3104581011111936.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/training_args.bin b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc664521f815e55efb1e2ec57db59f2857c50993 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/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": 485 +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/generation_config.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..924a50ac2147ad1e4b27e42ba99bcc6278ee372a --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/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/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/model.safetensors b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8d43ad629fbd5041c41f371db54c4cabbf4338f7 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48960da6e81584fe9650dd36836b84b3643ac22391a7771ecea5c11ebcf3bcf8 +size 174758344 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/optimizer.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2930b6e5ad4a9104d52fc3888575390270227b6d --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea51a9267b9d63f60709ac678dc35bd936536d5640487e329985fff464be9e43 +size 349565771 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/rng_state.pth b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7061d4683984ff17a23b3bce4eb1305fc018c1da --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0de9c06116891d4ef4d02034d93c3c3e99a2831e4f7c77ece93a24a391fa2c3 +size 14645 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/scaler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..984b2e76df86237bfee127ab6864989a34c3786f --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83eba2ec6fa5109da86cf80e058481c258645e9ca8c790fa199d92caedf19875 +size 1383 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/scheduler.pt b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7f7c542bab4d8685ababe79b56b7788bcaa4668f --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c317f631e562546ec250b83f3e595b576c37126a75682314b089233cbad3858 +size 1465 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/trainer_state.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9033d576bfe08dd742320b8753033a731bd1ce82 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/trainer_state.json @@ -0,0 +1,1707 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 23900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.418848167539267, + "grad_norm": 1.7357312440872192, + "learning_rate": 4.9792887029288705e-05, + "loss": 1.957039794921875, + "step": 100 + }, + { + "epoch": 0.837696335078534, + "grad_norm": 1.7951552867889404, + "learning_rate": 4.9583682008368206e-05, + "loss": 1.2064629364013673, + "step": 200 + }, + { + "epoch": 1.255497382198953, + "grad_norm": 1.674418330192566, + "learning_rate": 4.93744769874477e-05, + "loss": 1.0603108978271485, + "step": 300 + }, + { + "epoch": 1.67434554973822, + "grad_norm": 1.6522367000579834, + "learning_rate": 4.91652719665272e-05, + "loss": 0.9886434936523437, + "step": 400 + }, + { + "epoch": 2.0921465968586386, + "grad_norm": 1.483288288116455, + "learning_rate": 4.89560669456067e-05, + "loss": 0.9375139617919922, + "step": 500 + }, + { + "epoch": 2.510994764397906, + "grad_norm": 1.5848816633224487, + "learning_rate": 4.8746861924686196e-05, + "loss": 0.8872322082519531, + "step": 600 + }, + { + "epoch": 2.9298429319371726, + "grad_norm": 1.5845175981521606, + "learning_rate": 4.85376569037657e-05, + "loss": 0.8752645111083984, + "step": 700 + }, + { + "epoch": 3.3476439790575916, + "grad_norm": 1.454902172088623, + "learning_rate": 4.832845188284519e-05, + "loss": 0.8418380737304687, + "step": 800 + }, + { + "epoch": 3.7664921465968586, + "grad_norm": 1.3893290758132935, + "learning_rate": 4.8119246861924685e-05, + "loss": 0.8182624053955078, + "step": 900 + }, + { + "epoch": 4.184293193717277, + "grad_norm": 1.504209280014038, + "learning_rate": 4.7910041841004186e-05, + "loss": 0.8018088531494141, + "step": 1000 + }, + { + "epoch": 4.603141361256545, + "grad_norm": 1.6646430492401123, + "learning_rate": 4.770083682008368e-05, + "loss": 0.7877240753173829, + "step": 1100 + }, + { + "epoch": 5.020942408376963, + "grad_norm": 1.3648449182510376, + "learning_rate": 4.749163179916318e-05, + "loss": 0.7797740936279297, + "step": 1200 + }, + { + "epoch": 5.439790575916231, + "grad_norm": 1.410872459411621, + "learning_rate": 4.7282426778242675e-05, + "loss": 0.7617485809326172, + "step": 1300 + }, + { + "epoch": 5.858638743455497, + "grad_norm": 1.4345377683639526, + "learning_rate": 4.7073221757322176e-05, + "loss": 0.7631221771240234, + "step": 1400 + }, + { + "epoch": 6.276439790575917, + "grad_norm": 1.327006459236145, + "learning_rate": 4.686401673640168e-05, + "loss": 0.7484178161621093, + "step": 1500 + }, + { + "epoch": 6.695287958115183, + "grad_norm": 1.420089602470398, + "learning_rate": 4.665481171548117e-05, + "loss": 0.7441964721679688, + "step": 1600 + }, + { + "epoch": 7.113089005235602, + "grad_norm": 1.5513347387313843, + "learning_rate": 4.644560669456067e-05, + "loss": 0.7383489227294922, + "step": 1700 + }, + { + "epoch": 7.531937172774869, + "grad_norm": 1.3362606763839722, + "learning_rate": 4.6236401673640166e-05, + "loss": 0.7281642913818359, + "step": 1800 + }, + { + "epoch": 7.950785340314136, + "grad_norm": 1.2809451818466187, + "learning_rate": 4.602719665271967e-05, + "loss": 0.7310231018066407, + "step": 1900 + }, + { + "epoch": 8.368586387434554, + "grad_norm": 1.2832854986190796, + "learning_rate": 4.581799163179917e-05, + "loss": 0.7165196990966797, + "step": 2000 + }, + { + "epoch": 8.787434554973823, + "grad_norm": 1.1414157152175903, + "learning_rate": 4.560878661087866e-05, + "loss": 0.7179119873046875, + "step": 2100 + }, + { + "epoch": 9.205235602094241, + "grad_norm": 1.0745928287506104, + "learning_rate": 4.539958158995816e-05, + "loss": 0.7131906890869141, + "step": 2200 + }, + { + "epoch": 9.624083769633508, + "grad_norm": 1.1124597787857056, + "learning_rate": 4.519037656903766e-05, + "loss": 0.7061318206787109, + "step": 2300 + }, + { + "epoch": 10.041884816753926, + "grad_norm": 0.9845342040061951, + "learning_rate": 4.498117154811716e-05, + "loss": 0.7075148773193359, + "step": 2400 + }, + { + "epoch": 10.460732984293193, + "grad_norm": 1.1672662496566772, + "learning_rate": 4.477196652719666e-05, + "loss": 0.7008012390136719, + "step": 2500 + }, + { + "epoch": 10.879581151832461, + "grad_norm": 1.181514859199524, + "learning_rate": 4.456276150627615e-05, + "loss": 0.6990177154541015, + "step": 2600 + }, + { + "epoch": 11.29738219895288, + "grad_norm": 1.1406160593032837, + "learning_rate": 4.4353556485355653e-05, + "loss": 0.690523681640625, + "step": 2700 + }, + { + "epoch": 11.716230366492146, + "grad_norm": 1.1152310371398926, + "learning_rate": 4.414435146443515e-05, + "loss": 0.6935369110107422, + "step": 2800 + }, + { + "epoch": 12.134031413612565, + "grad_norm": 1.283378005027771, + "learning_rate": 4.393514644351465e-05, + "loss": 0.6885635375976562, + "step": 2900 + }, + { + "epoch": 12.552879581151833, + "grad_norm": 1.2980977296829224, + "learning_rate": 4.372594142259415e-05, + "loss": 0.6849569702148437, + "step": 3000 + }, + { + "epoch": 12.9717277486911, + "grad_norm": 1.1399869918823242, + "learning_rate": 4.3516736401673643e-05, + "loss": 0.6880906677246094, + "step": 3100 + }, + { + "epoch": 13.389528795811518, + "grad_norm": 1.2640913724899292, + "learning_rate": 4.3307531380753144e-05, + "loss": 0.6769008636474609, + "step": 3200 + }, + { + "epoch": 13.808376963350785, + "grad_norm": 1.2051986455917358, + "learning_rate": 4.309832635983264e-05, + "loss": 0.6841930389404297, + "step": 3300 + }, + { + "epoch": 14.226178010471203, + "grad_norm": 1.5682283639907837, + "learning_rate": 4.288912133891214e-05, + "loss": 0.6762271118164063, + "step": 3400 + }, + { + "epoch": 14.645026178010472, + "grad_norm": 1.2480769157409668, + "learning_rate": 4.267991631799163e-05, + "loss": 0.6741954040527344, + "step": 3500 + }, + { + "epoch": 15.06282722513089, + "grad_norm": 1.1682356595993042, + "learning_rate": 4.247071129707113e-05, + "loss": 0.6774851989746093, + "step": 3600 + }, + { + "epoch": 15.481675392670157, + "grad_norm": 1.1353213787078857, + "learning_rate": 4.226150627615063e-05, + "loss": 0.6634797668457031, + "step": 3700 + }, + { + "epoch": 15.900523560209423, + "grad_norm": 1.2949745655059814, + "learning_rate": 4.205230125523012e-05, + "loss": 0.6736211395263672, + "step": 3800 + }, + { + "epoch": 16.318324607329842, + "grad_norm": 1.1021099090576172, + "learning_rate": 4.184309623430962e-05, + "loss": 0.6624949645996093, + "step": 3900 + }, + { + "epoch": 16.73717277486911, + "grad_norm": 1.2462520599365234, + "learning_rate": 4.1633891213389124e-05, + "loss": 0.6662584686279297, + "step": 4000 + }, + { + "epoch": 17.15497382198953, + "grad_norm": 1.2026138305664062, + "learning_rate": 4.142468619246862e-05, + "loss": 0.665372543334961, + "step": 4100 + }, + { + "epoch": 17.573821989528795, + "grad_norm": 1.1689097881317139, + "learning_rate": 4.121548117154812e-05, + "loss": 0.6616575622558594, + "step": 4200 + }, + { + "epoch": 17.992670157068062, + "grad_norm": 1.1259592771530151, + "learning_rate": 4.100627615062761e-05, + "loss": 0.6627973937988281, + "step": 4300 + }, + { + "epoch": 18.410471204188482, + "grad_norm": 1.1528080701828003, + "learning_rate": 4.0797071129707114e-05, + "loss": 0.6545208740234375, + "step": 4400 + }, + { + "epoch": 18.82931937172775, + "grad_norm": 1.078765869140625, + "learning_rate": 4.0587866108786615e-05, + "loss": 0.659375, + "step": 4500 + }, + { + "epoch": 19.24712041884817, + "grad_norm": 1.1452678442001343, + "learning_rate": 4.037866108786611e-05, + "loss": 0.6517630767822266, + "step": 4600 + }, + { + "epoch": 19.665968586387436, + "grad_norm": 1.3625253438949585, + "learning_rate": 4.016945606694561e-05, + "loss": 0.6546914672851563, + "step": 4700 + }, + { + "epoch": 20.083769633507853, + "grad_norm": 1.0734823942184448, + "learning_rate": 3.9960251046025104e-05, + "loss": 0.653277359008789, + "step": 4800 + }, + { + "epoch": 20.50261780104712, + "grad_norm": 1.0875906944274902, + "learning_rate": 3.9751046025104605e-05, + "loss": 0.6477639770507813, + "step": 4900 + }, + { + "epoch": 20.921465968586386, + "grad_norm": 1.2992547750473022, + "learning_rate": 3.9541841004184106e-05, + "loss": 0.6525312805175781, + "step": 5000 + }, + { + "epoch": 21.339267015706806, + "grad_norm": 1.1078609228134155, + "learning_rate": 3.93326359832636e-05, + "loss": 0.643624038696289, + "step": 5100 + }, + { + "epoch": 21.758115183246073, + "grad_norm": 1.1027839183807373, + "learning_rate": 3.91234309623431e-05, + "loss": 0.64830322265625, + "step": 5200 + }, + { + "epoch": 22.175916230366493, + "grad_norm": 1.1493128538131714, + "learning_rate": 3.8914225941422595e-05, + "loss": 0.6440758514404297, + "step": 5300 + }, + { + "epoch": 22.59476439790576, + "grad_norm": 1.1990758180618286, + "learning_rate": 3.8705020920502096e-05, + "loss": 0.6450751495361328, + "step": 5400 + }, + { + "epoch": 23.012565445026176, + "grad_norm": 1.1392757892608643, + "learning_rate": 3.84958158995816e-05, + "loss": 0.6439768981933593, + "step": 5500 + }, + { + "epoch": 23.431413612565446, + "grad_norm": 1.145913004875183, + "learning_rate": 3.828661087866109e-05, + "loss": 0.6345698547363281, + "step": 5600 + }, + { + "epoch": 23.850261780104713, + "grad_norm": 1.1432591676712036, + "learning_rate": 3.807740585774059e-05, + "loss": 0.6436957550048829, + "step": 5700 + }, + { + "epoch": 24.26806282722513, + "grad_norm": 1.0853745937347412, + "learning_rate": 3.7868200836820086e-05, + "loss": 0.634792594909668, + "step": 5800 + }, + { + "epoch": 24.686910994764396, + "grad_norm": 1.0998246669769287, + "learning_rate": 3.765899581589959e-05, + "loss": 0.6373896789550781, + "step": 5900 + }, + { + "epoch": 25.104712041884817, + "grad_norm": 1.427016258239746, + "learning_rate": 3.744979079497908e-05, + "loss": 0.639299545288086, + "step": 6000 + }, + { + "epoch": 25.523560209424083, + "grad_norm": 1.0360475778579712, + "learning_rate": 3.724058577405858e-05, + "loss": 0.6306960296630859, + "step": 6100 + }, + { + "epoch": 25.94240837696335, + "grad_norm": 1.029296875, + "learning_rate": 3.7031380753138076e-05, + "loss": 0.635133056640625, + "step": 6200 + }, + { + "epoch": 26.36020942408377, + "grad_norm": 1.0714229345321655, + "learning_rate": 3.682217573221757e-05, + "loss": 0.6279976272583008, + "step": 6300 + }, + { + "epoch": 26.779057591623037, + "grad_norm": 1.0668662786483765, + "learning_rate": 3.661297071129707e-05, + "loss": 0.6319166564941406, + "step": 6400 + }, + { + "epoch": 27.196858638743457, + "grad_norm": 1.2612731456756592, + "learning_rate": 3.640376569037657e-05, + "loss": 0.626447639465332, + "step": 6500 + }, + { + "epoch": 27.615706806282724, + "grad_norm": 1.111774206161499, + "learning_rate": 3.6194560669456066e-05, + "loss": 0.6283223724365234, + "step": 6600 + }, + { + "epoch": 28.03350785340314, + "grad_norm": 1.1588354110717773, + "learning_rate": 3.5985355648535567e-05, + "loss": 0.6337715148925781, + "step": 6700 + }, + { + "epoch": 28.452356020942407, + "grad_norm": 1.2656804323196411, + "learning_rate": 3.577615062761506e-05, + "loss": 0.6196572494506836, + "step": 6800 + }, + { + "epoch": 28.871204188481677, + "grad_norm": 1.0904902219772339, + "learning_rate": 3.556694560669456e-05, + "loss": 0.6265386581420899, + "step": 6900 + }, + { + "epoch": 29.289005235602094, + "grad_norm": 1.2348970174789429, + "learning_rate": 3.535774058577406e-05, + "loss": 0.6187874221801758, + "step": 7000 + }, + { + "epoch": 29.70785340314136, + "grad_norm": 1.0990043878555298, + "learning_rate": 3.5148535564853556e-05, + "loss": 0.6251428985595703, + "step": 7100 + }, + { + "epoch": 30.12565445026178, + "grad_norm": 1.3289461135864258, + "learning_rate": 3.493933054393306e-05, + "loss": 0.6217424011230469, + "step": 7200 + }, + { + "epoch": 30.544502617801047, + "grad_norm": 1.1826465129852295, + "learning_rate": 3.473012552301255e-05, + "loss": 0.6176059722900391, + "step": 7300 + }, + { + "epoch": 30.963350785340314, + "grad_norm": 1.1363434791564941, + "learning_rate": 3.452092050209205e-05, + "loss": 0.6250752258300781, + "step": 7400 + }, + { + "epoch": 31.381151832460734, + "grad_norm": 1.0488321781158447, + "learning_rate": 3.431171548117155e-05, + "loss": 0.6131296157836914, + "step": 7500 + }, + { + "epoch": 31.8, + "grad_norm": 1.0740634202957153, + "learning_rate": 3.410251046025105e-05, + "loss": 0.62077392578125, + "step": 7600 + }, + { + "epoch": 32.21780104712042, + "grad_norm": 1.2768574953079224, + "learning_rate": 3.389330543933055e-05, + "loss": 0.6132323074340821, + "step": 7700 + }, + { + "epoch": 32.636649214659684, + "grad_norm": 1.2454967498779297, + "learning_rate": 3.368410041841004e-05, + "loss": 0.6179965972900391, + "step": 7800 + }, + { + "epoch": 33.054450261780104, + "grad_norm": 1.0509141683578491, + "learning_rate": 3.347489539748954e-05, + "loss": 0.6159653091430664, + "step": 7900 + }, + { + "epoch": 33.47329842931937, + "grad_norm": 1.2346339225769043, + "learning_rate": 3.3265690376569044e-05, + "loss": 0.608684196472168, + "step": 8000 + }, + { + "epoch": 33.89214659685864, + "grad_norm": 1.0819355249404907, + "learning_rate": 3.305648535564854e-05, + "loss": 0.6147115707397461, + "step": 8100 + }, + { + "epoch": 34.30994764397906, + "grad_norm": 1.2290990352630615, + "learning_rate": 3.284728033472804e-05, + "loss": 0.6080178833007812, + "step": 8200 + }, + { + "epoch": 34.728795811518324, + "grad_norm": 1.0522081851959229, + "learning_rate": 3.263807531380753e-05, + "loss": 0.6099481964111328, + "step": 8300 + }, + { + "epoch": 35.146596858638745, + "grad_norm": 1.1879432201385498, + "learning_rate": 3.2428870292887034e-05, + "loss": 0.6108789443969727, + "step": 8400 + }, + { + "epoch": 35.56544502617801, + "grad_norm": 1.2454171180725098, + "learning_rate": 3.2219665271966535e-05, + "loss": 0.6051754760742187, + "step": 8500 + }, + { + "epoch": 35.98429319371728, + "grad_norm": 1.2238366603851318, + "learning_rate": 3.201046025104603e-05, + "loss": 0.6135285949707031, + "step": 8600 + }, + { + "epoch": 36.4020942408377, + "grad_norm": 1.3203046321868896, + "learning_rate": 3.180125523012552e-05, + "loss": 0.6003643417358399, + "step": 8700 + }, + { + "epoch": 36.820942408376965, + "grad_norm": 1.3004391193389893, + "learning_rate": 3.1592050209205024e-05, + "loss": 0.6084416961669922, + "step": 8800 + }, + { + "epoch": 37.238743455497385, + "grad_norm": 1.0923435688018799, + "learning_rate": 3.138284518828452e-05, + "loss": 0.6027616119384765, + "step": 8900 + }, + { + "epoch": 37.65759162303665, + "grad_norm": 1.3689918518066406, + "learning_rate": 3.117364016736402e-05, + "loss": 0.6034185409545898, + "step": 9000 + }, + { + "epoch": 38.075392670157065, + "grad_norm": 1.0931211709976196, + "learning_rate": 3.096443514644351e-05, + "loss": 0.6048267364501954, + "step": 9100 + }, + { + "epoch": 38.49424083769634, + "grad_norm": 1.2372386455535889, + "learning_rate": 3.0755230125523014e-05, + "loss": 0.5964799880981445, + "step": 9200 + }, + { + "epoch": 38.913089005235605, + "grad_norm": 1.2137774229049683, + "learning_rate": 3.054602510460251e-05, + "loss": 0.6053957748413086, + "step": 9300 + }, + { + "epoch": 39.33089005235602, + "grad_norm": 1.2441918849945068, + "learning_rate": 3.033682008368201e-05, + "loss": 0.5963822937011719, + "step": 9400 + }, + { + "epoch": 39.749738219895285, + "grad_norm": 1.1947072744369507, + "learning_rate": 3.0127615062761506e-05, + "loss": 0.6023126983642578, + "step": 9500 + }, + { + "epoch": 40.167539267015705, + "grad_norm": 1.234154462814331, + "learning_rate": 2.9918410041841004e-05, + "loss": 0.6001630401611329, + "step": 9600 + }, + { + "epoch": 40.58638743455497, + "grad_norm": 1.163256287574768, + "learning_rate": 2.9709205020920505e-05, + "loss": 0.5957479858398438, + "step": 9700 + }, + { + "epoch": 41.00418848167539, + "grad_norm": 1.098540186882019, + "learning_rate": 2.95e-05, + "loss": 0.6069541168212891, + "step": 9800 + }, + { + "epoch": 41.42303664921466, + "grad_norm": 1.241861343383789, + "learning_rate": 2.92907949790795e-05, + "loss": 0.589141960144043, + "step": 9900 + }, + { + "epoch": 41.841884816753925, + "grad_norm": 1.175836205482483, + "learning_rate": 2.9081589958158994e-05, + "loss": 0.6017288970947265, + "step": 10000 + }, + { + "epoch": 42.259685863874346, + "grad_norm": 1.2884583473205566, + "learning_rate": 2.88744769874477e-05, + "loss": 0.5935973358154297, + "step": 10100 + }, + { + "epoch": 42.67853403141361, + "grad_norm": 1.247544765472412, + "learning_rate": 2.8665271966527198e-05, + "loss": 0.5953170776367187, + "step": 10200 + }, + { + "epoch": 43.09633507853403, + "grad_norm": 1.0641762018203735, + "learning_rate": 2.8456066945606695e-05, + "loss": 0.5974231338500977, + "step": 10300 + }, + { + "epoch": 43.5151832460733, + "grad_norm": 1.1697312593460083, + "learning_rate": 2.8246861924686196e-05, + "loss": 0.5913193893432617, + "step": 10400 + }, + { + "epoch": 43.934031413612566, + "grad_norm": 1.1365479230880737, + "learning_rate": 2.803765690376569e-05, + "loss": 0.598421401977539, + "step": 10500 + }, + { + "epoch": 44.351832460732986, + "grad_norm": 1.1157909631729126, + "learning_rate": 2.782845188284519e-05, + "loss": 0.5873412322998047, + "step": 10600 + }, + { + "epoch": 44.77068062827225, + "grad_norm": 1.348643183708191, + "learning_rate": 2.7619246861924685e-05, + "loss": 0.5936133193969727, + "step": 10700 + }, + { + "epoch": 45.18848167539267, + "grad_norm": 1.197517991065979, + "learning_rate": 2.7410041841004186e-05, + "loss": 0.5921408462524415, + "step": 10800 + }, + { + "epoch": 45.60732984293194, + "grad_norm": 1.2170952558517456, + "learning_rate": 2.7200836820083687e-05, + "loss": 0.5896556091308593, + "step": 10900 + }, + { + "epoch": 46.02513089005235, + "grad_norm": 1.0762948989868164, + "learning_rate": 2.699163179916318e-05, + "loss": 0.5945636749267578, + "step": 11000 + }, + { + "epoch": 46.443979057591626, + "grad_norm": 1.1585177183151245, + "learning_rate": 2.678242677824268e-05, + "loss": 0.5853750610351562, + "step": 11100 + }, + { + "epoch": 46.86282722513089, + "grad_norm": 1.3420946598052979, + "learning_rate": 2.6573221757322176e-05, + "loss": 0.5932060623168945, + "step": 11200 + }, + { + "epoch": 47.280628272251306, + "grad_norm": 1.1126630306243896, + "learning_rate": 2.6364016736401677e-05, + "loss": 0.5834246063232422, + "step": 11300 + }, + { + "epoch": 47.69947643979057, + "grad_norm": 1.2244997024536133, + "learning_rate": 2.615481171548117e-05, + "loss": 0.5885814666748047, + "step": 11400 + }, + { + "epoch": 48.11727748691099, + "grad_norm": 1.3700648546218872, + "learning_rate": 2.594560669456067e-05, + "loss": 0.5896315383911133, + "step": 11500 + }, + { + "epoch": 48.53612565445026, + "grad_norm": 1.2028729915618896, + "learning_rate": 2.573640167364017e-05, + "loss": 0.5825551223754882, + "step": 11600 + }, + { + "epoch": 48.954973821989526, + "grad_norm": 1.198599934577942, + "learning_rate": 2.5527196652719663e-05, + "loss": 0.592343978881836, + "step": 11700 + }, + { + "epoch": 49.372774869109946, + "grad_norm": 1.1620557308197021, + "learning_rate": 2.5317991631799164e-05, + "loss": 0.5804216766357422, + "step": 11800 + }, + { + "epoch": 49.79162303664921, + "grad_norm": 1.2490957975387573, + "learning_rate": 2.5108786610878658e-05, + "loss": 0.5864405059814453, + "step": 11900 + }, + { + "epoch": 50.20942408376963, + "grad_norm": 1.1138325929641724, + "learning_rate": 2.489958158995816e-05, + "loss": 0.5846857070922852, + "step": 12000 + }, + { + "epoch": 50.6282722513089, + "grad_norm": 1.2332500219345093, + "learning_rate": 2.4692468619246865e-05, + "loss": 0.5829949188232422, + "step": 12100 + }, + { + "epoch": 51.04607329842932, + "grad_norm": 1.257340908050537, + "learning_rate": 2.4483263598326363e-05, + "loss": 0.5898705291748046, + "step": 12200 + }, + { + "epoch": 51.46492146596859, + "grad_norm": 1.2143198251724243, + "learning_rate": 2.427405857740586e-05, + "loss": 0.5786220550537109, + "step": 12300 + }, + { + "epoch": 51.88376963350785, + "grad_norm": 1.1260303258895874, + "learning_rate": 2.4064853556485358e-05, + "loss": 0.5868261337280274, + "step": 12400 + }, + { + "epoch": 52.301570680628274, + "grad_norm": 1.1678194999694824, + "learning_rate": 2.3855648535564852e-05, + "loss": 0.5809542846679687, + "step": 12500 + }, + { + "epoch": 52.72041884816754, + "grad_norm": 1.1895207166671753, + "learning_rate": 2.3646443514644353e-05, + "loss": 0.5844503784179688, + "step": 12600 + }, + { + "epoch": 53.13821989528796, + "grad_norm": 1.1448301076889038, + "learning_rate": 2.343723849372385e-05, + "loss": 0.5809010314941406, + "step": 12700 + }, + { + "epoch": 53.55706806282723, + "grad_norm": 1.1571141481399536, + "learning_rate": 2.3228033472803348e-05, + "loss": 0.5787462997436523, + "step": 12800 + }, + { + "epoch": 53.975916230366494, + "grad_norm": 1.0440938472747803, + "learning_rate": 2.3018828451882845e-05, + "loss": 0.5878799438476563, + "step": 12900 + }, + { + "epoch": 54.393717277486914, + "grad_norm": 1.132901668548584, + "learning_rate": 2.2809623430962343e-05, + "loss": 0.575037841796875, + "step": 13000 + }, + { + "epoch": 54.81256544502618, + "grad_norm": 1.2370219230651855, + "learning_rate": 2.2600418410041844e-05, + "loss": 0.5822734451293945, + "step": 13100 + }, + { + "epoch": 55.230366492146594, + "grad_norm": 1.1507346630096436, + "learning_rate": 2.239121338912134e-05, + "loss": 0.5782026672363281, + "step": 13200 + }, + { + "epoch": 55.64921465968587, + "grad_norm": 0.9882214665412903, + "learning_rate": 2.218200836820084e-05, + "loss": 0.580045394897461, + "step": 13300 + }, + { + "epoch": 56.06701570680628, + "grad_norm": 1.1273308992385864, + "learning_rate": 2.1972803347280336e-05, + "loss": 0.581448974609375, + "step": 13400 + }, + { + "epoch": 56.48586387434555, + "grad_norm": 1.1246113777160645, + "learning_rate": 2.1763598326359834e-05, + "loss": 0.5761925506591797, + "step": 13500 + }, + { + "epoch": 56.904712041884814, + "grad_norm": 1.1773682832717896, + "learning_rate": 2.155439330543933e-05, + "loss": 0.5803777313232422, + "step": 13600 + }, + { + "epoch": 57.322513089005234, + "grad_norm": 1.1531919240951538, + "learning_rate": 2.134518828451883e-05, + "loss": 0.5734993362426758, + "step": 13700 + }, + { + "epoch": 57.7413612565445, + "grad_norm": 1.0658059120178223, + "learning_rate": 2.1135983263598326e-05, + "loss": 0.5804447937011719, + "step": 13800 + }, + { + "epoch": 58.15916230366492, + "grad_norm": 1.256008267402649, + "learning_rate": 2.0926778242677823e-05, + "loss": 0.5771566772460938, + "step": 13900 + }, + { + "epoch": 58.57801047120419, + "grad_norm": 1.1181727647781372, + "learning_rate": 2.071757322175732e-05, + "loss": 0.5735276794433594, + "step": 14000 + }, + { + "epoch": 58.996858638743454, + "grad_norm": 1.1943111419677734, + "learning_rate": 2.0510460251046027e-05, + "loss": 0.5823272705078125, + "step": 14100 + }, + { + "epoch": 59.414659685863874, + "grad_norm": 1.245831847190857, + "learning_rate": 2.0301255230125525e-05, + "loss": 0.5691431427001953, + "step": 14200 + }, + { + "epoch": 59.83350785340314, + "grad_norm": 1.0968621969223022, + "learning_rate": 2.0092050209205022e-05, + "loss": 0.5803122329711914, + "step": 14300 + }, + { + "epoch": 60.25130890052356, + "grad_norm": 1.0285043716430664, + "learning_rate": 1.9884937238493725e-05, + "loss": 0.5736106872558594, + "step": 14400 + }, + { + "epoch": 60.67015706806283, + "grad_norm": 1.0914031267166138, + "learning_rate": 1.9675732217573223e-05, + "loss": 0.5746928405761719, + "step": 14500 + }, + { + "epoch": 61.08795811518325, + "grad_norm": 1.043164849281311, + "learning_rate": 1.946652719665272e-05, + "loss": 0.5775559997558594, + "step": 14600 + }, + { + "epoch": 61.506806282722515, + "grad_norm": 1.0833253860473633, + "learning_rate": 1.9257322175732218e-05, + "loss": 0.5722423553466797, + "step": 14700 + }, + { + "epoch": 61.92565445026178, + "grad_norm": 1.1481914520263672, + "learning_rate": 1.904811715481172e-05, + "loss": 0.5769286346435547, + "step": 14800 + }, + { + "epoch": 62.3434554973822, + "grad_norm": 1.0194867849349976, + "learning_rate": 1.8838912133891216e-05, + "loss": 0.5702044296264649, + "step": 14900 + }, + { + "epoch": 62.76230366492147, + "grad_norm": 1.091729760169983, + "learning_rate": 1.8629707112970713e-05, + "loss": 0.5723474502563477, + "step": 15000 + }, + { + "epoch": 63.18010471204188, + "grad_norm": 1.1202044486999512, + "learning_rate": 1.842050209205021e-05, + "loss": 0.5727936935424804, + "step": 15100 + }, + { + "epoch": 63.598952879581155, + "grad_norm": 2.251441240310669, + "learning_rate": 1.821129707112971e-05, + "loss": 0.5719662857055664, + "step": 15200 + }, + { + "epoch": 64.01675392670157, + "grad_norm": 0.9448971152305603, + "learning_rate": 1.8002092050209206e-05, + "loss": 0.5750114822387695, + "step": 15300 + }, + { + "epoch": 64.43560209424083, + "grad_norm": 1.6223911046981812, + "learning_rate": 1.7792887029288703e-05, + "loss": 0.5684125900268555, + "step": 15400 + }, + { + "epoch": 64.8544502617801, + "grad_norm": 1.105802297592163, + "learning_rate": 1.75836820083682e-05, + "loss": 0.5749607467651368, + "step": 15500 + }, + { + "epoch": 65.27225130890052, + "grad_norm": 1.0070587396621704, + "learning_rate": 1.73744769874477e-05, + "loss": 0.5693588256835938, + "step": 15600 + }, + { + "epoch": 65.69109947643979, + "grad_norm": 1.1097147464752197, + "learning_rate": 1.7165271966527196e-05, + "loss": 0.5717815780639648, + "step": 15700 + }, + { + "epoch": 66.10890052356021, + "grad_norm": 1.2500536441802979, + "learning_rate": 1.6956066945606697e-05, + "loss": 0.571502685546875, + "step": 15800 + }, + { + "epoch": 66.52774869109948, + "grad_norm": 1.0019428730010986, + "learning_rate": 1.6746861924686194e-05, + "loss": 0.567553482055664, + "step": 15900 + }, + { + "epoch": 66.94659685863874, + "grad_norm": 1.0604379177093506, + "learning_rate": 1.653765690376569e-05, + "loss": 0.5749691390991211, + "step": 16000 + }, + { + "epoch": 67.36439790575916, + "grad_norm": 1.049307942390442, + "learning_rate": 1.632845188284519e-05, + "loss": 0.5671145248413086, + "step": 16100 + }, + { + "epoch": 67.78324607329843, + "grad_norm": 1.0208990573883057, + "learning_rate": 1.6119246861924687e-05, + "loss": 0.5698457717895508, + "step": 16200 + }, + { + "epoch": 68.20104712041885, + "grad_norm": 0.9725692272186279, + "learning_rate": 1.5910041841004184e-05, + "loss": 0.5694425964355468, + "step": 16300 + }, + { + "epoch": 68.61989528795812, + "grad_norm": 1.1082414388656616, + "learning_rate": 1.5700836820083685e-05, + "loss": 0.5668373107910156, + "step": 16400 + }, + { + "epoch": 69.03769633507854, + "grad_norm": 0.9503616690635681, + "learning_rate": 1.5491631799163182e-05, + "loss": 0.5709575653076172, + "step": 16500 + }, + { + "epoch": 69.4565445026178, + "grad_norm": 1.174117922782898, + "learning_rate": 1.528242677824268e-05, + "loss": 0.5630858230590821, + "step": 16600 + }, + { + "epoch": 69.87539267015707, + "grad_norm": 1.233062744140625, + "learning_rate": 1.5073221757322176e-05, + "loss": 0.5713355255126953, + "step": 16700 + }, + { + "epoch": 70.29319371727749, + "grad_norm": 1.1545337438583374, + "learning_rate": 1.4864016736401673e-05, + "loss": 0.5669760513305664, + "step": 16800 + }, + { + "epoch": 70.71204188481676, + "grad_norm": 1.2455624341964722, + "learning_rate": 1.4654811715481172e-05, + "loss": 0.5687417984008789, + "step": 16900 + }, + { + "epoch": 71.12984293193718, + "grad_norm": 1.1097911596298218, + "learning_rate": 1.444560669456067e-05, + "loss": 0.5687915420532227, + "step": 17000 + }, + { + "epoch": 71.54869109947644, + "grad_norm": 1.3409907817840576, + "learning_rate": 1.4236401673640167e-05, + "loss": 0.5652975845336914, + "step": 17100 + }, + { + "epoch": 71.96753926701571, + "grad_norm": 1.0018601417541504, + "learning_rate": 1.4027196652719665e-05, + "loss": 0.5693225479125976, + "step": 17200 + }, + { + "epoch": 72.38534031413613, + "grad_norm": 0.9709707498550415, + "learning_rate": 1.3817991631799162e-05, + "loss": 0.5642803955078125, + "step": 17300 + }, + { + "epoch": 72.8041884816754, + "grad_norm": 1.0293502807617188, + "learning_rate": 1.3608786610878663e-05, + "loss": 0.567535514831543, + "step": 17400 + }, + { + "epoch": 73.22198952879582, + "grad_norm": 1.0947306156158447, + "learning_rate": 1.339958158995816e-05, + "loss": 0.5657819747924805, + "step": 17500 + }, + { + "epoch": 73.64083769633508, + "grad_norm": 1.0627623796463013, + "learning_rate": 1.3190376569037658e-05, + "loss": 0.5648831939697265, + "step": 17600 + }, + { + "epoch": 74.0586387434555, + "grad_norm": 1.092600703239441, + "learning_rate": 1.2981171548117154e-05, + "loss": 0.567056770324707, + "step": 17700 + }, + { + "epoch": 74.47748691099477, + "grad_norm": 1.1139910221099854, + "learning_rate": 1.2771966527196651e-05, + "loss": 0.5629258728027344, + "step": 17800 + }, + { + "epoch": 74.89633507853404, + "grad_norm": 1.0925103425979614, + "learning_rate": 1.2562761506276152e-05, + "loss": 0.5671181869506836, + "step": 17900 + }, + { + "epoch": 75.31413612565446, + "grad_norm": 1.4127650260925293, + "learning_rate": 1.235355648535565e-05, + "loss": 0.5614471054077148, + "step": 18000 + }, + { + "epoch": 75.73298429319372, + "grad_norm": 0.9931116104125977, + "learning_rate": 1.2144351464435147e-05, + "loss": 0.565269546508789, + "step": 18100 + }, + { + "epoch": 76.15078534031413, + "grad_norm": 1.1718937158584595, + "learning_rate": 1.1935146443514645e-05, + "loss": 0.5644131851196289, + "step": 18200 + }, + { + "epoch": 76.5696335078534, + "grad_norm": 0.9517426490783691, + "learning_rate": 1.1725941422594142e-05, + "loss": 0.5629844284057617, + "step": 18300 + }, + { + "epoch": 76.98848167539268, + "grad_norm": 1.0832480192184448, + "learning_rate": 1.1518828451882845e-05, + "loss": 0.5671321487426758, + "step": 18400 + }, + { + "epoch": 77.40628272251308, + "grad_norm": 1.1618616580963135, + "learning_rate": 1.1309623430962343e-05, + "loss": 0.5599403762817383, + "step": 18500 + }, + { + "epoch": 77.82513089005235, + "grad_norm": 1.0287295579910278, + "learning_rate": 1.1100418410041842e-05, + "loss": 0.5632502746582031, + "step": 18600 + }, + { + "epoch": 78.24293193717277, + "grad_norm": 1.048791766166687, + "learning_rate": 1.089121338912134e-05, + "loss": 0.5621784591674804, + "step": 18700 + }, + { + "epoch": 78.66178010471204, + "grad_norm": 1.03757643699646, + "learning_rate": 1.0682008368200837e-05, + "loss": 0.5616426467895508, + "step": 18800 + }, + { + "epoch": 79.07958115183246, + "grad_norm": 1.305603265762329, + "learning_rate": 1.0472803347280336e-05, + "loss": 0.5662485504150391, + "step": 18900 + }, + { + "epoch": 79.49842931937172, + "grad_norm": 1.0828039646148682, + "learning_rate": 1.0263598326359834e-05, + "loss": 0.5587220764160157, + "step": 19000 + }, + { + "epoch": 79.91727748691099, + "grad_norm": 1.0541635751724243, + "learning_rate": 1.0054393305439331e-05, + "loss": 0.5656935882568359, + "step": 19100 + }, + { + "epoch": 80.33507853403141, + "grad_norm": 1.4421244859695435, + "learning_rate": 9.845188284518828e-06, + "loss": 0.5583715057373047, + "step": 19200 + }, + { + "epoch": 80.75392670157068, + "grad_norm": 0.9934247732162476, + "learning_rate": 9.635983263598326e-06, + "loss": 0.5621566390991211, + "step": 19300 + }, + { + "epoch": 81.1717277486911, + "grad_norm": 1.331549048423767, + "learning_rate": 9.426778242677825e-06, + "loss": 0.5624060821533203, + "step": 19400 + }, + { + "epoch": 81.59057591623036, + "grad_norm": 1.1185020208358765, + "learning_rate": 9.217573221757323e-06, + "loss": 0.5596007537841797, + "step": 19500 + }, + { + "epoch": 82.00837696335078, + "grad_norm": 1.0355136394500732, + "learning_rate": 9.008368200836822e-06, + "loss": 0.5647842788696289, + "step": 19600 + }, + { + "epoch": 82.42722513089005, + "grad_norm": 0.9967537522315979, + "learning_rate": 8.79916317991632e-06, + "loss": 0.5558248519897461, + "step": 19700 + }, + { + "epoch": 82.84607329842932, + "grad_norm": 1.1115660667419434, + "learning_rate": 8.589958158995815e-06, + "loss": 0.5625948333740234, + "step": 19800 + }, + { + "epoch": 83.26387434554974, + "grad_norm": 1.1838023662567139, + "learning_rate": 8.380753138075314e-06, + "loss": 0.559094467163086, + "step": 19900 + }, + { + "epoch": 83.682722513089, + "grad_norm": 1.232723593711853, + "learning_rate": 8.171548117154812e-06, + "loss": 0.5604278564453125, + "step": 20000 + }, + { + "epoch": 84.10052356020942, + "grad_norm": 0.9662663340568542, + "learning_rate": 7.962343096234311e-06, + "loss": 0.560697135925293, + "step": 20100 + }, + { + "epoch": 84.51937172774869, + "grad_norm": 0.95435631275177, + "learning_rate": 7.753138075313808e-06, + "loss": 0.5556485748291016, + "step": 20200 + }, + { + "epoch": 84.93821989528796, + "grad_norm": 1.1006091833114624, + "learning_rate": 7.543933054393305e-06, + "loss": 0.5629526138305664, + "step": 20300 + }, + { + "epoch": 85.35602094240838, + "grad_norm": 1.0648730993270874, + "learning_rate": 7.336820083682008e-06, + "loss": 0.5561338043212891, + "step": 20400 + }, + { + "epoch": 85.77486910994764, + "grad_norm": 1.0455604791641235, + "learning_rate": 7.127615062761507e-06, + "loss": 0.5590327835083008, + "step": 20500 + }, + { + "epoch": 86.19267015706806, + "grad_norm": 1.2354342937469482, + "learning_rate": 6.918410041841005e-06, + "loss": 0.558480224609375, + "step": 20600 + }, + { + "epoch": 86.61151832460733, + "grad_norm": 1.1213362216949463, + "learning_rate": 6.709205020920502e-06, + "loss": 0.5574909973144532, + "step": 20700 + }, + { + "epoch": 87.02931937172775, + "grad_norm": 1.2145981788635254, + "learning_rate": 6.5000000000000004e-06, + "loss": 0.5595388793945313, + "step": 20800 + }, + { + "epoch": 87.44816753926702, + "grad_norm": 1.1763968467712402, + "learning_rate": 6.290794979079498e-06, + "loss": 0.5566361618041992, + "step": 20900 + }, + { + "epoch": 87.86701570680628, + "grad_norm": 0.9883760213851929, + "learning_rate": 6.081589958158996e-06, + "loss": 0.558988037109375, + "step": 21000 + }, + { + "epoch": 88.2848167539267, + "grad_norm": 1.3407195806503296, + "learning_rate": 5.872384937238494e-06, + "loss": 0.555633430480957, + "step": 21100 + }, + { + "epoch": 88.70366492146597, + "grad_norm": 1.2197387218475342, + "learning_rate": 5.663179916317992e-06, + "loss": 0.5576942443847657, + "step": 21200 + }, + { + "epoch": 89.12146596858639, + "grad_norm": 0.9664437770843506, + "learning_rate": 5.45397489539749e-06, + "loss": 0.5581797409057617, + "step": 21300 + }, + { + "epoch": 89.54031413612566, + "grad_norm": 1.2320648431777954, + "learning_rate": 5.244769874476987e-06, + "loss": 0.5559272003173829, + "step": 21400 + }, + { + "epoch": 89.95916230366493, + "grad_norm": 1.1831936836242676, + "learning_rate": 5.035564853556485e-06, + "loss": 0.5578675842285157, + "step": 21500 + }, + { + "epoch": 90.37696335078535, + "grad_norm": 1.0145848989486694, + "learning_rate": 4.826359832635984e-06, + "loss": 0.555514259338379, + "step": 21600 + }, + { + "epoch": 90.79581151832461, + "grad_norm": 1.1567530632019043, + "learning_rate": 4.617154811715481e-06, + "loss": 0.5568828964233399, + "step": 21700 + }, + { + "epoch": 91.21361256544503, + "grad_norm": 1.1194156408309937, + "learning_rate": 4.4079497907949796e-06, + "loss": 0.5556546783447266, + "step": 21800 + }, + { + "epoch": 91.6324607329843, + "grad_norm": 1.058899164199829, + "learning_rate": 4.198744769874477e-06, + "loss": 0.5552133178710937, + "step": 21900 + }, + { + "epoch": 92.0502617801047, + "grad_norm": 1.0123540163040161, + "learning_rate": 3.989539748953975e-06, + "loss": 0.55712158203125, + "step": 22000 + }, + { + "epoch": 92.46910994764399, + "grad_norm": 1.0693333148956299, + "learning_rate": 3.780334728033473e-06, + "loss": 0.5530570983886719, + "step": 22100 + }, + { + "epoch": 92.88795811518325, + "grad_norm": 1.020864725112915, + "learning_rate": 3.571129707112971e-06, + "loss": 0.5573068618774414, + "step": 22200 + }, + { + "epoch": 93.30575916230366, + "grad_norm": 1.1115072965621948, + "learning_rate": 3.3619246861924683e-06, + "loss": 0.5556851959228516, + "step": 22300 + }, + { + "epoch": 93.72460732984293, + "grad_norm": 1.0190234184265137, + "learning_rate": 3.1548117154811716e-06, + "loss": 0.5554112243652344, + "step": 22400 + }, + { + "epoch": 94.14240837696335, + "grad_norm": 1.0990245342254639, + "learning_rate": 2.9456066945606695e-06, + "loss": 0.5539827346801758, + "step": 22500 + }, + { + "epoch": 94.56125654450261, + "grad_norm": 1.0113505125045776, + "learning_rate": 2.7364016736401674e-06, + "loss": 0.5531864929199218, + "step": 22600 + }, + { + "epoch": 94.98010471204188, + "grad_norm": 1.0651323795318604, + "learning_rate": 2.5271966527196657e-06, + "loss": 0.5547758865356446, + "step": 22700 + }, + { + "epoch": 95.3979057591623, + "grad_norm": 0.9893053770065308, + "learning_rate": 2.317991631799163e-06, + "loss": 0.5521963882446289, + "step": 22800 + }, + { + "epoch": 95.81675392670157, + "grad_norm": 1.2413371801376343, + "learning_rate": 2.108786610878661e-06, + "loss": 0.5545172119140624, + "step": 22900 + }, + { + "epoch": 96.23455497382199, + "grad_norm": 1.1037617921829224, + "learning_rate": 1.899581589958159e-06, + "loss": 0.5509216690063476, + "step": 23000 + }, + { + "epoch": 96.65340314136125, + "grad_norm": 0.9777401089668274, + "learning_rate": 1.690376569037657e-06, + "loss": 0.5538136672973633, + "step": 23100 + }, + { + "epoch": 97.07120418848167, + "grad_norm": 1.0018055438995361, + "learning_rate": 1.4811715481171548e-06, + "loss": 0.5540202331542968, + "step": 23200 + }, + { + "epoch": 97.49005235602094, + "grad_norm": 1.0007930994033813, + "learning_rate": 1.2719665271966528e-06, + "loss": 0.5524462509155273, + "step": 23300 + }, + { + "epoch": 97.9089005235602, + "grad_norm": 1.1463111639022827, + "learning_rate": 1.0627615062761507e-06, + "loss": 0.5535177612304687, + "step": 23400 + }, + { + "epoch": 98.32670157068063, + "grad_norm": 0.980787456035614, + "learning_rate": 8.535564853556486e-07, + "loss": 0.553234977722168, + "step": 23500 + }, + { + "epoch": 98.74554973821989, + "grad_norm": 1.0415117740631104, + "learning_rate": 6.443514644351465e-07, + "loss": 0.5528529357910156, + "step": 23600 + }, + { + "epoch": 99.16335078534031, + "grad_norm": 1.0625003576278687, + "learning_rate": 4.3514644351464434e-07, + "loss": 0.5507633972167969, + "step": 23700 + }, + { + "epoch": 99.58219895287958, + "grad_norm": 1.0756092071533203, + "learning_rate": 2.2594142259414228e-07, + "loss": 0.5520084381103516, + "step": 23800 + }, + { + "epoch": 100.0, + "grad_norm": 1.1655535697937012, + "learning_rate": 1.673640167364017e-08, + "loss": 0.5513224029541015, + "step": 23900 + } + ], + "logging_steps": 100, + "max_steps": 23900, + "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": 3117596855500800.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/training_args.bin b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..91ca35f28a7353434b4fba1a6bd939d5f438495e --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/rtf_checkpoints/checkpoint-23900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c42f607c6bf91398dbbd545e9e95f2a72ca6d00036b0b7f1ae1c813d34a4cb +size 5137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/runtime_result.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d5edfbcdad56e8b1ccc9ad5c770de440302dd21b --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "c6", + "model": "realtabformer", + "run_id": "rtf-c6-20260329_231509", + "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/c6/realtabformer/rtf-c6-20260329_231509/rtf-c6-7636-20260418_083218.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/staged_features.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/test.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/train.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/val.csv b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/adapter_report.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..dc3dffd82a7729d0af521c031d72e0b8a61d459c --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/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/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/adapter_transforms_applied.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/model_input_manifest.json b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5d1a15ab6182f0b4df2106846605c15d90603828 --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "realtabformer", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/realtabformer/rtf-c6-20260329_231509/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/train_20260329_231510.log b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/train_20260329_231510.log new file mode 100644 index 0000000000000000000000000000000000000000..fa118b4d7a0802943254fc81ad857bb8d7bb5fbb --- /dev/null +++ b/syntheticSuccess/c6/realtabformer/rtf-c6-20260329_231509/train_20260329_231510.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c593588546caea885c8bc0ad25f9b58eece87a5d47e6b0e2e9106d460b86ee73 +size 1707182 diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/_tabpfgen_generate.py b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..81c455fceb9b5f12ce687ca301ed5ec568530e91 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/_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/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv") +target_col = "Type of Answer" + +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(7636) + +# 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/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen-c6-7636-20260422_200031.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen-c6-7636-20260422_200031.csv") diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/gen_20260422_200031.log b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/gen_20260422_200031.log new file mode 100644 index 0000000000000000000000000000000000000000..f75d2152745a77546ea955907aeb513f6affeec0 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/gen_20260422_200031.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d65d5950faf566e7ef8d39c6ddadf94d7bbf941e054206d7a551feb4955217e +size 755 diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/input_snapshot.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0c7e627ff39f71f89cfcfe7d5c87dd7ae0e7a960 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/public_gate_report.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7b25db05fad1406ffa89a01909d8f790dc89033d --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/runtime_result.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..242c9893fef89843aaf62292deaf39590371a33c --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c6", + "model": "tabpfgen", + "run_id": "tabpfgen-c6-20260422_200030", + "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/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen-c6-7636-20260422_200031.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/staged_features.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/test.csv b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/val.csv b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/adapter_report.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d235ea9404787f536c0b249809f9182c3e8af065 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/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/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/adapter_transforms_applied.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/model_input_manifest.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9d1e41dc7fa8118b59dec275dde6e9950156a412 --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "tabpfgen", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen-c6-7636-20260422_200031.csv b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen-c6-7636-20260422_200031.csv new file mode 100644 index 0000000000000000000000000000000000000000..021959e873ef57e4492b9bdea06695154cbf308c --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen-c6-7636-20260422_200031.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8963481e4274e605ae74329f65a056375b21220d0504731be311b0f07d54bd79 +size 937173 diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen_meta.json b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..2447cf3a09e60e72f96bbd1be477198ae1d3847d --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabpfgen/tabpfgen-c6-20260422_200030/staged/public/staged_features.json", + "target_col": "Type of Answer", + "is_classification": true, + "n_rows": 7636, + "n_cols": 8 +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/train_20260422_200031.log b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/train_20260422_200031.log new file mode 100644 index 0000000000000000000000000000000000000000..b93c930ddc815ba46d1bb6eb19596459b61beaab --- /dev/null +++ b/syntheticSuccess/c6/tabpfgen/tabpfgen-c6-20260422_200030/train_20260422_200031.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ed7933d5831d5ec40f319c21e4ce5dafafa2166700dd37d1a5a31442854fa5 +size 186 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/_tabsyn_sample.py b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..552062cc758748896d2a6feacbdb76f140c7d4a8 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446" +dataname = "tabsyn_c6" +output_csv = "/work/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/tabsyn-c6-7636-20260421_005324.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 7636 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/c6/tabsyn/tabsyn-c6-20260420_233446/_tabsyn_train.py b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..840e9d935cf98bf91297aa2cd27dcc1f16c15f6f --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/_tabsyn_train.py @@ -0,0 +1,62 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446" +dataname = "tabsyn_c6" +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/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_cat_test.npy b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c137c9333d828b98fe4e827908550abeb1d04cf5 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abed185fe13007008c1656876f5703e4548c0581ef96ae8155aa1f872ef3e322 +size 38368 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_cat_train.npy b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8daf4078a21519a49db0548e9c38dbf9c2ed78a7 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73635fb5c426ecbfe4996ae3be59b1d85090a4bd08ea2a3177e77fd14f98cb30 +size 343728 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_num_test.npy b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6d4bcce97fb70f11b1e488e10df25eba63aedbb4 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff443efa63dca8c3aa82fa2aa01653c220cf31d5e65e2e75f839f13a2dba5eb +size 7776 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_num_train.npy b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..0f72a0ca9033310e6a20be48b4d0ecb32f417f1c --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a40ad3a2d4b9ac9747cf8436a824ef3dec4635404174af5ba0268cf91c487c +size 68848 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/info.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/info.json new file mode 100644 index 0000000000000000000000000000000000000000..88e65f0559027f57510c6362976c28a9a7e53597 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/info.json @@ -0,0 +1,98 @@ +{ + "name": "tabsyn_c6", + "task_type": "multiclass", + "n_num_features": 2, + "n_cat_features": 5, + "train_size": 8590, + "num_col_idx": [ + 0, + 2 + ], + "cat_col_idx": [ + 1, + 4, + 5, + 6, + 7 + ], + "target_col_idx": [ + 3 + ], + "column_names": [ + "Student ID", + "Student Country", + "Question ID", + "Type of Answer", + "Question Level", + "Topic", + "Subtopic", + "Keywords" + ], + "train_num": 8590, + "test_num": 956, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c6/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 2, + "2": 1, + "3": 7, + "4": 3, + "5": 4, + "6": 5, + "7": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "2": 1, + "1": 2, + "7": 3, + "3": 4, + "4": 5, + "5": 6, + "6": 7 + }, + "idx_name_mapping": { + "0": "Student ID", + "1": "Student Country", + "2": "Question ID", + "3": "Type of Answer", + "4": "Question Level", + "5": "Topic", + "6": "Subtopic", + "7": "Keywords" + }, + "n_classes": 2, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/test.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5e9f7585fb29d425bcdfa49aee86a63c0ab87fcc --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20f3927c241a291fa290d7cadd2432a4179c30f0eaa175061c5aab839ea80e4 +size 20915 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/train.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b7f52b79330725b9bdfe01f663b23524b8667c80 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d443bf984dd72344aa05dd81b0296e2c5994be8118d9f87bb1434e6b886bdb8c +size 187468 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/y_test.npy b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b867f9398535b06b55185be0746d1b1977b11dae --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb4cd664b91f6ff8ebd5bcd76ea84d5d6117a8d8cfc8555ed863a0fe4e9fd47 +size 7776 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/y_train.npy b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..436ec6956e84de719e79a2bede1c563ff683baad --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/data/tabsyn_c6/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ff92f061640657f60687ee82d2ffaf24aa6547937a630c737c7e58e50632b8 +size 68848 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/gen_20260421_005324.log b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/gen_20260421_005324.log new file mode 100644 index 0000000000000000000000000000000000000000..6ca78b10d6cda1c613ccead152123c6d59000424 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/gen_20260421_005324.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3426c00444acac282f4691cfe4cbd8bf9672560bc84fa78474b168ff0c490638 +size 664 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/input_snapshot.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2487ed51fc0775513db9a5f1a5cc2489dbb17e93 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/public_gate_report.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4d1aeb1d2d5ab134d852e139d48328706d9ec3b5 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/runtime_result.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..88969f0f1355956723b027a62f83fc6f6c94f846 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c6", + "model": "tabsyn", + "run_id": "tabsyn-c6-20260420_233446", + "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/c6/tabsyn/tabsyn-c6-20260420_233446/tabsyn-c6-7636-20260421_005324.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/staged_features.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/test.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/train.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/val.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/adapter_report.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e6b4739c0e6c1dfe8104852b85c2361e4c1cba56 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/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/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/adapter_transforms_applied.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/model_input_manifest.json b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..20d7d83df00f9354b1d617a6c06539ccbecbdaed --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "tabsyn", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tabsyn/tabsyn-c6-20260420_233446/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/synthetic/tabsyn_c6/real.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/synthetic/tabsyn_c6/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b7f52b79330725b9bdfe01f663b23524b8667c80 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/synthetic/tabsyn_c6/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d443bf984dd72344aa05dd81b0296e2c5994be8118d9f87bb1434e6b886bdb8c +size 187468 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/synthetic/tabsyn_c6/test.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/synthetic/tabsyn_c6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5e9f7585fb29d425bcdfa49aee86a63c0ab87fcc --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/synthetic/tabsyn_c6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20f3927c241a291fa290d7cadd2432a4179c30f0eaa175061c5aab839ea80e4 +size 20915 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/tabsyn-c6-7636-20260421_005324.csv b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/tabsyn-c6-7636-20260421_005324.csv new file mode 100644 index 0000000000000000000000000000000000000000..5dbcf41fd4931280ca50b59d796bd864892b7b03 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/tabsyn-c6-7636-20260421_005324.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9866af88a775107a08d6af3431d1dadd3371a6f10e26b4c9e6b874dc1046b088 +size 263458 diff --git a/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/train_20260420_233446.log b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/train_20260420_233446.log new file mode 100644 index 0000000000000000000000000000000000000000..f1b44400c16a343d81b30e8658148b8c537c6c50 --- /dev/null +++ b/syntheticSuccess/c6/tabsyn/tabsyn-c6-20260420_233446/train_20260420_233446.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ea471fd5e6bebcf61779da5ee7e1915e05e2b2aa956c81aaadaa5b43a78da0 +size 2981789 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/_tvae_generate.py b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..615c23330ca7861c56fcfc2f9b15620140ed3450 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/_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/c6/tvae/tvae-c6-20260419_191329/models_300epochs/tvae_300epochs.pt") +total = 7636 +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/c6/tvae/tvae-c6-20260419_191329/tvae-c6-7636-20260419_191634.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/tvae-c6-7636-20260419_191634.csv") diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/_tvae_train.py b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7e96ae404dc79019e34dc5aba4de7bb8096865c3 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/_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/c6/tvae/tvae-c6-20260419_191329/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/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/c6/tvae/tvae-c6-20260419_191329/gen_20260419_191634.log b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/gen_20260419_191634.log new file mode 100644 index 0000000000000000000000000000000000000000..353a163487a6961cda42f3b1bcc8cfadaaad8146 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/gen_20260419_191634.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04fb633e3ebe5b861c96bed70ad7f200e3651c2054077bb002ccd5cbb0ce94da +size 137 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/input_snapshot.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f727c4c80d486ebc56fbd3a8a3d6c4815c95fc68 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c6", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "exists": true, + "size": 849500, + "sha256": "7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "exists": true, + "size": 108137, + "sha256": "9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv", + "exists": true, + "size": 107696, + "sha256": "d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_profile.json", + "exists": true, + "size": 4145, + "sha256": "70c4d3f4f544b9bff7543f502136d9b1403d8589ad5ef0a9695842d8ef9d5185" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c6/c6-dataset_contract_v1.json", + "exists": true, + "size": 4740, + "sha256": "602750e8159221cf97836d44d530098411b5f2cd6fc47c06776171da79d06593" + } + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/models_300epochs/train_20260419_191329.log b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/models_300epochs/train_20260419_191329.log new file mode 100644 index 0000000000000000000000000000000000000000..e7fd6c87842b77569874fd6ac5407d87ebf87498 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/models_300epochs/train_20260419_191329.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b5e86cdd4429320921b2961a39ce27514d7a7ca98d3c0d231ebe805e3e39e2 +size 169 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/models_300epochs/tvae_300epochs.pt b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..1752b6829c820f77c3d0ea9c8957057a2f852b32 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c65bf2130babaa595cac77f196169cec05a4515e4c26956f9ca34236180e11 +size 751980 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/normalized_schema_snapshot.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62de672c6242a8fe33594746bc19ea183e203ce7 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,169 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "columns": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/public_gate_report.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e4a7e5533d3434a96c463bb1367c9d25256e --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c6", + "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": "Type of Answer", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c6/c6-test.csv" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/staged_input_manifest.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..328cf8f46cc1fff8bd07f7a0d89d50bcf6252bb8 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/public_gate/staged_input_manifest.json @@ -0,0 +1,174 @@ +{ + "dataset_id": "c6", + "target_column": "Type of Answer", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ] +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/runtime_result.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..152036bd248b7176ac5cfa0d37f79e0fce6cf0b4 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c6", + "model": "tvae", + "run_id": "tvae-c6-20260419_191329", + "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/c6/tvae/tvae-c6-20260419_191329/tvae-c6-7636-20260419_191634.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/models_300epochs/tvae_300epochs.pt" + } +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/staged_features.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..5523fb7a16718db5c4122f8381d3cff51e337c45 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/staged_features.json @@ -0,0 +1,42 @@ +[ + { + "feature_name": "Student ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Student Country", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Question ID", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Type of Answer", + "data_type": "binary", + "is_target": true + }, + { + "feature_name": "Question Level", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Topic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Subtopic", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "Keywords", + "data_type": "categorical", + "is_target": false + } +] \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/test.csv b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..221052bae020346f46e1c71d36fce7eb347ed62d --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28b60b361526450f0c203ddf50498854cb66ad5c1978516a99c265f529f8e4f +size 107696 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/train.csv b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..28f63ae8128dbf03647f9cda7458db51d98581f5 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8f85a52de0e63e292778c26cb06223383b366c589d4226c3de68b111ba5272 +size 849500 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/val.csv b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..400c35bc93bd5a660ae20c7574c7bea7bc24035f --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ede9f1e2036e743d822e8ed8d7b5e1050159e8fc7b402b758a294f7a14528fe +size 108137 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/adapter_report.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..28202c12ad7086708196ee1872c58b0906fe251b --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/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/c6/tvae/tvae-c6-20260419_191329/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/adapter_transforms_applied.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/model_input_manifest.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fffa47cdb0ec3d4943bcefaad60631b895ba321d --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/staged/tvae/model_input_manifest.json @@ -0,0 +1,176 @@ +{ + "dataset_id": "c6", + "model": "tvae", + "target_column": "Type of Answer", + "task_type": "classification", + "column_schema": [ + { + "name": "Student ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 367, + "unique_ratio": 0.048062, + "example_values": [ + "473", + "351", + "967", + "1557", + "394" + ] + } + }, + { + "name": "Student Country", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.001048, + "example_values": [ + "Portugal", + "Italy", + "Lithuania", + "Slovenia", + "Ireland" + ] + } + }, + { + "name": "Question ID", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 796, + "unique_ratio": 0.104243, + "example_values": [ + "346", + "796", + "453", + "87", + "325" + ] + } + }, + { + "name": "Type of Answer", + "role": "target", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Question Level", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000262, + "example_values": [ + "Advanced", + "Basic" + ] + } + }, + { + "name": "Topic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14, + "unique_ratio": 0.001833, + "example_values": [ + "Complex Numbers", + "Fundamental Mathematics", + "Linear Algebra", + "Real Functions of a single variable", + "Analytic Geometry" + ] + } + }, + { + "name": "Subtopic", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 24, + "unique_ratio": 0.003143, + "example_values": [ + "Complex Numbers", + "Algebraic expressions, Equations, and Inequalities", + "Vector Spaces", + "Limits and Continuity", + "Linear Transformations" + ] + } + }, + { + "name": "Keywords", + "role": "feature", + "semantic_type": "text", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "keep_raw", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 360, + "unique_ratio": 0.047145, + "example_values": [ + "Imaginary part,Modulus of a complex number,Operations with complex numbers,Conjugate number,Real part", + "Logarithmic function,Exponential function,Simplify expressions", + "Linear independence,Span,Linear dependence", + "Indeterminate forms,Limits", + "Range,Kernel" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c6/tvae/tvae-c6-20260419_191329/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/tvae-c6-7636-20260419_191634.csv b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/tvae-c6-7636-20260419_191634.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c12c87915d40d7399e61e52daf391cc13cd2fe1 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/tvae-c6-7636-20260419_191634.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c632ba44442c72c16f0906e40f8e12021339072791c9f876557a0654d17ea11a +size 855182 diff --git a/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/tvae_metadata.json b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..fd44f1730c28205b8349695531f19bedb2470087 --- /dev/null +++ b/syntheticSuccess/c6/tvae/tvae-c6-20260419_191329/tvae_metadata.json @@ -0,0 +1,36 @@ +{ + "columns": [ + { + "name": "Student ID", + "type": "continuous" + }, + { + "name": "Student Country", + "type": "categorical" + }, + { + "name": "Question ID", + "type": "continuous" + }, + { + "name": "Type of Answer", + "type": "categorical" + }, + { + "name": "Question Level", + "type": "categorical" + }, + { + "name": "Topic", + "type": "categorical" + }, + { + "name": "Subtopic", + "type": "categorical" + }, + { + "name": "Keywords", + "type": "categorical" + } + ] +} \ No newline at end of file